Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Multiple Return Values
Message
 
To
06/12/2001 17:11:20
Todd Wolfe
Certified Marketing Services
Kinderhook, New York, United States
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00590869
Message ID:
00593118
Views:
23
Hi Todd
I find the easiest way is to create a cursor with any fields you need in form 1, populate them before calling form 2, re-populate them in form 2 so that they are available when you get back to form 1.
CREATE CURSOR Myvals (Field1 C(10), Field2 N(14,2)) etc
APPEND BANK
This gives full flexibility without the normal restraints especially with large strings where you can use memo fields.
In the unload method of form1 you could do soething like this:
IF USED("Myvals")
SELECT Myvals
USE
ENDIF
Cheers
John
To move a mountain start with the smallest stone
Previous
Reply
Map
View

Click here to load this message in the networking platform