G
Guest
What is the best way to handle global application data in a windows forms?
How about a VB module?
How about a VB module?
Brendon Bezuidenhout said:Arne,
Personally I don't like modules - can't think off hand why but it does bring
back cold sweats and shivers from pre OO days
There is a resources secion of the project where you can store all the
global application now and be accessed with My.Application if you are using
VB (c# there is another way to access it as there is no My namespace in c#).
Click show all files in your project and you will see it... Or you can have
a look at:
http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=45 or
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx
HTH
Brendon