Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Still cannot evaluate form data from outside form
Message
From
09/09/1997 11:46:16
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00049151
Message ID:
00049157
Views:
55
>Is there a way to grab the value of a textbox from a form called form1 in myform.scx form a prg? I keep getting 'object form1 is not found'
>In the prg I say :
>do form myform name form1 linked
>?form1.text1.value
>I could be missing something simple but have no idea.

Folowing is not the best, but 100% proof method:
For nLoop=1 to _screen.FormCount
If _screen.Forms(nLoop).Name="Form1" && I hope you use unique form names
=messagebox("Found: "+_screen.Forms(nLoop).Text1.Value)
Endif
Endfor
Edward Pikman
Independent Consultant
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform