Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Smallest object in VFP 7
Message
 
To
09/12/2001 19:37:51
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Miscellaneous
Thread ID:
00590364
Message ID:
00591978
Views:
26
David,

I forgot to show you Utilities.prg;
* Utilities.prg
* Defines various utility classes

DEFINE CLASS Addr AS Session

PROCEDURE Init
This.Datasession = 2
IF NOT USED("Addresses")
   USE Addresses ALIAS Addresses AGAIN SHARED
ENDIF

ENDPROC

PROCEDURE Exists(tcAddrNum)

RETURN IndexSeek(m.nAddrNum, 'Address', 'Addrnum')
ENDPROC

* Other possible Mehotds
PROCEDURE AddAddr( ... )

ENDPROC

PROCEDURE DelAddr( ... )

ENDPROC

ENDDEFINE

* Other utility class definitions would be added here
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform