Does the C# visual studio automatically generate database maintenance screens?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does visual studio (C#) automatically generate maintenance screen forms from a data set?
Or, do you need to manually create the TextBox and Label controls for the windows form
I want this data to be displayed one record at a time using TextBox controls.
I DO NOT want the data to be displayed in the DataGrid control
 
tc said:
Does visual studio (C#) automatically generate maintenance screen forms from a data set?
Or, do you need to manually create the TextBox and Label controls for the windows form?
I want this data to be displayed one record at a time using TextBox controls.
I DO NOT want the data to be displayed in the DataGrid control.

Use the Data Form Wizard. You can access it by adding a new item to the
project, and choosing the Data Form Wizard from the list of items to add.
The wizard has options for single record view as well as table view, so this
should do exactly what you need.
 
Back
Top