Passing values between 2 Windows Forms (C#)

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

Guest

I am wanting to create a Lookup window that receives inputted text, searches a database, shows results, and then returns a key value when the user selects the correct record

What is the best way to communicate between 2 windows? For example, in Access, the OpenArgs parameter was available within the Open command

Thanks

Larry
 
Use properties. Maybe http://www.syncfusion.com/FAQ/WinForms/default.asp has a
FAQ item on this.

--
Justin Rogers
DigiTec Web Consultants, LLC.
Blog: http://weblogs.asp.net/justin_rogers

Larry said:
I am wanting to create a Lookup window that receives inputted text, searches a
database, shows results, and then returns a key value when the user selects the
correct record.
What is the best way to communicate between 2 windows? For example, in
Access, the OpenArgs parameter was available within the Open command.
 
Back
Top