Search results for query: *

  1. S

    Picture Box update issues!!!

    I am receiving a integer from a microcontroller through RS232 and everything on that seems to be working fine! However I have some case statements depending on the int received that "set picture boxes to visible". The problem is they are not becoming visible. However when I step through the code...
  2. S

    Insert Into Statement Errors!

    strSQL = "INSERT INTO Table1 (Scores, S_Index) VALUES ('" & Score.Text & "')" How do I alter this to accept a variable as well. index = 2.4 name = "string" H_index = 7.4 I have tried a few different parameter styles and keep getting errors??strSQL = "INSERT INTO Table1 (S_Index) VALUES...
  3. S

    Select Case ---- Case Else problem

    Resolved The problem was a sleep and then update were need to detect the changes!
  4. S

    Select Case ---- Case Else problem

    I have a Rs232 connection. Data Rx is working fine. However when I try to purposely send bad data the Case Else branch does not pick it up. The A, B,C branches work fine. If I send lets say an "F" it goes right through to past the Else????? moRS232.Read(Int32.Parse(txtBytes2Read.Text))...
Back
Top