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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FPD26 : Program too large !!!

Status
Not open for further replies.

PankX

Programmer
May 10, 2002
29
ID
When compiling a project, until building the menu, compiler show error "PROGRAM TOO LARGE", but if I generate the menu, using generate from "Program Menu", it's ok. any idea ?

Thank's
Pram
 
Look at thread184-720490 which indicates that program files cannot be larger than 64K. Is that your problem here?
 
I'd guess that it's not the Menu, but the screen that's just "after" it in the project file. Remember that the project itself doesn't display them in the order that the files were added to the project, but sorted by the appropriate file type.

You could open the Project (carefully) as a table and find the "bad" file. Something like this should work:
Code:
set deleted on
USE myProj.PJX alias junkpjx noupdate
locate for Type="M"
browse last
Now open the memo field NAME in the next record (that's not deleted!) - it should be the file that's giving you the real problem.

Note: This does assume you only have one menu. If you have more, use CONTINUE to get to the "right" menu.

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top