Has anyone experienced this? This morning, I loaded my form on which I am working into our test system and it worked perfectly. I tweaked the GUI, changed some code in my main function and saved it as a new version. When I imported it into centricity and rand the form, nothing happened. The trace says that the main function won't load. I then reimported the original version that worked this am, but the form STILL wont work.
Any suggestions?
Eli
You're now working with a NEW document and form, not a document that loaded with the old form on it? If on an old document (started before the old form was reinstalled) remove the form by right click and remove. Then add the new form back in.
I had a similar problem years ago when the formset table ran out of space. Get your DBA to check the database extents.
Symptom was that the form would import and open and looked OK but the XLT and XLW were empty. That's where all the functions and watchers live.
What did the trace say exactly? It is more useful to post what the trace said than what you *think* it said.
Here are some common mistakes that will prevent a function from executing:
-An apostrophe within a comment line, ex: //this won't execute
-A missing open or close parenthesis
-Use of an undeclared variable name, either from a typo or commonly from copy and pasting code and forgetting to declare the local variable.