faqts : Computers : Programming : Languages : Tse : Macro

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

0 of 1 people (0%) answered Yes
Recently 0 of 1 people (0%) answered Yes

Entry

TSE: Error: Compile: Error 125 (0,0) Undefined Fixup Origin 2829 Destination: -14

Dec 16th, 2001 07:41
Knud van Eeden,


------------------------------------------------------------------------
--- Knud van Eeden - 16 December 2001 - 06:52 pm -----------------------

Cause:

The function MainMenu() was not defined.
It was defined in my .ui file (=qeditknu.ui)
(by accident I had removed the // in front of this line, and put in file
 knudmenu.s)

before:

 "&Select all: Windows Clipboard", PROCMacroRunPurge( "selemafi" ) // 
[kn, zoe, di, 18-01-2000 18:48:05]
 "", , divide
 "goto: &Main menu", MainMenu() // [kn, zoe, ma, 10-01-2000 12:23:29]

---

Solution:

Check, e.g. via searching or listing all PROCs, in the file you have
to compile, with your current .ui file, which procedures or functions
are common for both files and could have been called and are not 
defined.

If found, then e.g.

REMark or delete the line containing that procedure or function

e.g. put REMs in front of 'MainMenu()':

after:

 "&Select all: Windows Clipboard", PROCMacroRunPurge( "selemafi" ) // 
[kn, zoe, di, 18-01-2000 18:48:05]
 "", , divide
 // "goto: &Main menu", MainMenu() // [kn, zoe, ma, 10-01-2000 12:23:29]

------------------------------------------------------------------------