The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
| |
|
Re: Accessing legacy form components in VB script
Posted: 16 Jun 06 8:02 AM
|
fiogf49gjkf0d I legacy forms are called views. You can access then using the application.basicfunctions.doinvoke function. Here is the syntax...
application.basicfunctions.DoInvoke("View", "Family:name") |
|
|
|
Re: Accessing legacy form components in VB script
Posted: 16 Jun 06 8:49 AM
|
fiogf49gjkf0d thankx for the update
application.basicfunctions.DoInvoke("View", "Family:name")
this systex is to invoke the "View" and it open me the view , but i need to get the object referance for the view so as to access the component value or manupalate the same.
like using the --application.forms("Family:name")-- which gives the form referance in VB script and i can access the components with it. |
|
|
|
Re: Accessing legacy form components in VB script
Posted: 16 Jun 06 10:03 AM
|
how much is it to get an abortion abortion cost without insurance fiogf49gjkf0d I am not sure what you are trying to do, however, you can attach Legacy Scripts to the Legacy View Events that will allow you to communicate with the Legacy View. If you need to pass things from the Active Script to the Legacy View, or get something back from the Legacy View you could use Application.BasicFunctions.GlobalInfoSet and Application.BasicFunctions.GlobalInfoFor. |
|
|
|