0

This is my line of code to search the information from the database. I am trying to display the result obtained from the execution of this line. Should I just use a message box or use any object to display it? I do not want to use dataset.

 ACommanad.CommandText = "SELECT * FROM Students where StudentID =" & DeleteRecordTextBox.Text & ""
Carl Onager
  • 4,112
  • 2
  • 38
  • 66
duke
  • 15
  • 4

1 Answers1

1

Yes. A message box is perfectly acceptable way to display something to the user.

Rose
  • 641
  • 7
  • 17