good day guys, please help me with this code that i have. i'm having a "Syntax error in FROM clause" error. Here is my code, any help is much appreciated. Thank you in advance.
Code:
Dim strSQL As String = "Select * from " & Trim(cboID.Text) Dim rsData as ADODB.Recordset If rsData.State = ConnectionState.Open Then rsData.Close() rsData.Open(strSQL, DBConn, ADODB.CursorTypeEnum.adOpenKeyset, _ ADODB.LockTypeEnum.adLockPessimistic)
Comment