Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How Use Data section ?

Status
Not open for further replies.

nvduan

Programmer
May 9, 2002
9
VN
How Use Data section ?
You can write a source code to it.
Thanks !
 
HI
To my knowledge there is no DATA SECTION

If you are meaning DATASESSION..
All the forms for example have a DATAENVIRONMENT.
YOu can make the DATASESSION of your form.. private or default.

A default datasession takes the existing datasession as its datasession. A private DATASESSION will have its own and the DATAENVIRONMENT opens the tables in this private DATASESSION.

:) ramani :)
(Subramanian.G),FoxAcc, ramani_g@yahoo.com
 
nvduan

You can write a source code to it.

As Ramani points out, its not clear what you need. But you can create a dataenvironment on-the-fly and add properties:
Code:
PUBLIC oSession
oSession = CREATEOBJECT("mySession")
DEFINE CLASS mySession as DataEnvironment
myProperty =""
ENDDEFINE

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top