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

Check box makes "Make error" 1

Status
Not open for further replies.

DtrS

Programmer
Jun 27, 2006
6
SI
Hi,

I have a huge problem. I am trying to create an application for a hotel - recepcion. I created 12 tabs and in each one of those check boxes - buttons so that user can click on them and saves a rezervation through a global data into dictionary. That means 12 tabs and more than 350 check buttons! Here is the problem: as soon as i create more than 150 check buttons (some where here) i get "Make errors" such as:

Make Error: Unknown command VW6
Make Error: Unknown command |

Etc.

The problem seems to be in temporary files (win/temp), because there is where the error is pointing to. I am running Clarion 5.5 on Windows XP.
I am really on tight scheudle and I would appriciate any help.


Thanks in advance, Denis (sorry for "broken" english).
 
I am adding what i see when i press edit errors:

-- Generator
#noedit
#system win32
#model clarion dll
#pragma debug(vid=>full)
#pragma define(_ABCDllMode_=>0)
#pragma define(_ABCLinkMode_=>1)
#compile "KOL2BC0.CLW" -- GENERATED
#compile "KOL2BC.CLW" -- GENERATED
#compile "kol2.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2001.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2002.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2003.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2004.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2005.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2006.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2007.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2008.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2009.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2010.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2011.clw" /define(GENERATED=>on) -- GENERATED
#compile "kol2012.clw" /define(GENERATED=>on) -- GENERATED
#pragma link("C%V%ASC%X%%L%.LIB") -- GENERATED
#pragma link("C%V%TPS%X%%L%.LIB") -- GENERATED
#link "kol2.EXE"

As you can see it ends at linking to exe. In this case problem was C55TMMWH.$$$ in windows/temp, but at every run or make problem is different file.


Thanks for help in advance; Best regards Denis.
 
Hi Denis,

The errors could be probably memory related b'cos the Clarion IDE is a 16-bit application and that seems to cause some problem in XP especially after the new security updates from MS. Try cleaning up the TEMP folder, delete the *.OBJ & *.RSC files in the \<clarion home dir>\obj32 and \<clarion home dir>\obj32\release directories, delete the generated *.CLW & *.INC and try. If that does not work, you could try running the Clarion IDE in Win2K compatible mode or in a different memory space. These changes are done on the Desktop Icon properties.

Regards
 
Hi ShankarJ,

I have tried to delete related tmp files and it still didn't work. I haven't tried the second solution you wrote, because i have found the problem. It was in the blank icon - if I put to many blank icons on buttons in the same window it didn't work. Probably a bug in clarion 5.5. Now i just use the prop:flat to change the check box into a button.

Thanks for your effort,

Best regards, Denis.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top