0

studentrecords テーブル.,.,IDNumber、LastName、Course、Firstname を含む

IDNumber を使用してシステムからログインし、メインフォームに移動して LASTname を表示し、IDNumber を主キーとして使用してメインフォームの 2 つのテキストボックスにコースを表示します.,.私のコードエラー

Dim con As New OleDbConnection Dim cmd As New OleDbCommand

  Dim da As New OleDbDataAdapter

  Dim dt As New DataTable

  Dim sSQL As String = String.Empty

  'get connection string declared in the Module1.vb and assing it to conn variable

  con = New OleDbConnection(Get_Constring)

  con.Open()

  cmd.Connection = con

  cmd.CommandType = CommandType.Text
  sSQL = "SELECT  LastName FROM studentsrecords where IDNumber like '%" & studentslogin.[txtIDNumber].Text & "%' order by ID desc"

  cmd.CommandText = sSQL

  da.SelectCommand = cmd

  da.Fill(dt)

  'evalutionrate.[lbllogin].Text = studentslogin.[txtIDNumber].Text

  evalutionrate.[lbllogin].Text = sSQL

  evalutionrate.Show()
4

1 に答える 1