Passing Data

  • Thread starter Thread starter Vinay
  • Start date Start date
V

Vinay

Hi

I am fairly new to Win Forms as i am a web developer.

My Q is

How to hold DATA between the page navigation ??

I am talking about something like Session in Web developement.

How to HOLD the data ??

Thanks
Vinay
 
You will generally have a main application that contains the application
data. Any forms that you use as dialogs etc will require data to be passed
to the form either by value or reference when the form is created.

Windows Forms Tips and Tricks has an article on just that subject.

Sorry for the spurious reply earlier. I mis-read your post.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top