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!
|
|
Application Object not created
Posted: 18 Mar 09 9:22 AM
|
I have one form (Account Tab) that all of sudden does not create the Application object. Any code that references Application.BasicFunctions ... etc doesn't work.
Any reason that Application object will be not available in a tab?
|
|
|
|
Re: Application Object not created
Posted: 18 Mar 09 1:17 PM
|
Problem Resolved......
There was a control (The form) that had a name property value of "Application" ... which was causing the Application object to not be the SLX Application but just the collection of controls on the form.
I didn't create it ...but changing the value of the name property to frmApplication FIXED the problem.
|
|
|
|
Re: Application Object not created
Posted: 19 Mar 09 8:13 AM
|
YEP!
Controls/forms are objects and there's nothing in the code editor that checks for duplicate naming... passes syntax check, etc. This is because of the "late binding" (runtime) of VBScripting engines.
This can happen w/ANY of the objects. -- RJLEdger - www.rjlSystems.net |
|
|
|