Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to Display Records in Dialog form?
Message
From
07/09/2006 11:27:33
 
 
To
06/09/2006 23:20:32
Czarina Joyce Villanueva
Innovision Systems International
Manila, Philippines
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01151580
Message ID:
01151873
Views:
23
Either pass the DataSet into your DialogForm when you instantiate it, or set a property after you instantiate it.
MyDialogForm oForm = new MyDialogForm(this.MyDataSet);
or
MyDialogForm oForm = new MyDialogForm();
oForm.MyDataSet = this.MyDataSet;
oForm.ShowDialog();
~~Bonnie



>Hey folks!
>
>I'm just wondering what's the equivalent of VFP Form Datasession property in .NET Win Forms coz I can't display the information of the record I retrieved from the calling form in a Dialog form?
>
>In VFP, I used to display minimal info of records retrieved in a list mode using grids in a form then call a dialog form to display the complete info. Is this possible in .NET Win forms?
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Reply
Map
View

Click here to load this message in the networking platform