Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Object MyForm is not found.
Message
 
 
To
19/04/2000 04:42:21
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00360757
Message ID:
00361184
Views:
21
>Otherwise i must use cyanide to stop my baby from crying.

I think what Jim trying to say is that you should have a similar program like this:
Procedure FormCollect
Lparam cformname
For i = 1 To _Screen.FormCount
   * check if the name of the form is equal to your reference form name 
   If Upper(_Screen.forms(i).name) = Upper(cformname)

      * do whatever you like to do in the form here
      _Screen.forms(i).Activate 
      Exit
   Endif
Endfor
Call the form anywhere in your application without declaring it public.
Do FormCollect With 'MyForm'
Another way is that Invoke the form specifying the name in the do form command:
Do Form Myform Name MyformName
so that you can call the form by its name anywhere in the application:

MyFormName.Activate
MyformName.Refresh

etc.
etc.

jb
JESS S. BANAGA
Project Leader - SDD division
...shifting from VFP to C#.Net

CHARISMA simply means: "Be more concerned about making others feel good about themselves than you are in making them feel good about you."
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform