Maybe this question sounds like i'm a lazy programmer anyway i'll just ask
Is there any c# form generator based on database tables
It's kind of cumbersome when we begin a new project, we starting design user interface such as textboxes, checkboxes, for data representation.
After we generate the form, we will change the UI a little bit so it can match our demand.
after that, we will start coding.

c# form generator
btsdev
there is no dataadapter in the data tab
and you only get grid or detail to drop on a form after you created a dataset.
can you be more specific
Ron Barrett
Read about databinding!
there are good walkthrughs out there to learn from.
example http://www.codeproject.com
John5656
Hai,
Is you want to dynamically generate the form for the data avilable in the database, with connection If yes follow this step.
In Visual studio IDE Open -- Server Explorer -> Data Connections Node-> Connect to the database server -> and go to the tool box, -> select Data tab->then select dataadapter ( what ever you want )
it will open wizard and ask you to specify the controls like Data grid or text box etc with the table, connection etc... it will do automatic data binding also ... while finishing the wizard it will generate the form with required controls for that table..