Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
modal form ,SqldataAdapter
Name: Rainbow Date: August 9, 2005 at 23:13:40 Pacific OS: xp/redhat CPU/Ram: 1.7/256
Comment:
Hello I am building my first database project. I have a problem. I use visualStudio 2003 and code in c#.My database is in sqlserver2000. I make sqlDataAdapter and datasets and fill the data set. But that is only valid in that Form:( I mean I can not see them in the peroperties->data binding of other forms. (I use modal forms). thank you alot. -Rainbow
Summary: Hi, I'm facing a problem Everytime i try to show a messagebox on top of a modal form i get an error 401(can't show non modal form on top of a modal form) Is there anyone with a solution? Thanks ...
Summary: Make a new form and make it Modal. Put three buttons on it named Print File, Delete File, and Add Files to Queue. Put a label on the form with some dialogue instructing the user. Do what is necessary...
Summary: You create a new instance of the Form2 class, then call its 'Show' method. Dim form as New Form2() form.Show 'or form.ShowDialog() for Modal forms Good luck, -SN ...