Post Reply 
Bug: One of my procedures is missing
06-25-2016, 08:48 PM (This post was last modified: 06-25-2016 08:59 PM by StephenG1CMZ.)
Post: #5
RE: Bug: One of my procedures is missing
Here is a simpler version. The procedure missing is runnable from the main procedure.

Code:

 // StephenG1CMZ 2016

 EXPORT Z_L()
 BEGIN
  MSGBOX("NOT MISSING");
 END;

 EXPORT Z_WHY()
 BEGIN
  MSGBOX("MISSING");
 END;

 EXPORT Z_LST_WHY()
 BEGIN
  Z_WHY(); //RUNS MISSING PROC OK
 END;

If it is relevant, both the first item and the last item on the Run list seem the same: they both seem to run the main procedure in the file.

Stephen Lewkowicz (G1CMZ)
https://my.numworks.com/python/steveg1cmz
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Bug: One of my procedures is missing - StephenG1CMZ - 06-25-2016 08:48 PM



User(s) browsing this thread: 1 Guest(s)