Oop

absent

Regular
Joined
Sep 25, 2003
Messages
55
Location
UK
Right I know that I have been learning VB.net quite well over the past few months and OOP has popped up once in a while. I understand the principle of reusable code and objects. but now applying that knowledge is starting to get my head in a knot. I'm trying to create a class or module that would handle application wide datasets and connections etc... Could someone please point me in the right direction or explain if it can be done or not and why?

ta in advance
 
You would create a class such as Customer class with methods for adding , modifying and deleting the customer inside. In every screen that uses Customer information you raise an instance of this class and call the relevant methods. You would have other classes for Suppliers etc. The key to doing this is identifying your objects at the start of your design.

Hope this helps but pretty generic question...
 
Back
Top