Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

newobject (app_classname,app_classlib)

Status
Not open for further replies.

Joseph Hurt

Programmer
Oct 2, 2022
2
US
my progam stops at the point because app_classname and app_classlib are undefined
 
Nobody can tell what class of what classlib you want, so there's nothing to tell you but that these two parameters of NEWOBJECT are in fact not optional and have to be passed in. So the actual error in your application code is the call of that code.

If you start the debugger at that point, you can see which code called in the stack window, can navigate to it and see that code.

To debug this, set a breakpoint before that call and see why the call has no values for the class and classlib.

Chriss
 
You might not be the programmer but just a user. Then your installation became broken, some essential file or configarion is missing which usually tells the application its main application class and which classlib contains it. Without source code you'll not be able to guess what you need.

So the best advice I can give is reinstall and hope that fixes it without deleting your data or documents. A good idea is to make a backup, of course.

Chriss
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top