Post Reply 
Delete a global user variable
12-15-2013, 01:50 AM (This post was last modified: 12-15-2013 04:38 AM by Han.)
Post: #6
RE: Delete a global user variable
If the issue is to reduce clutter in the memory browser, just delete EXPORT and they will no longer appear and yet are still kept around. That is, change:

Code:

EXPORT MYVAR1, MYVAR2;

EXPORT PROG1()
BEGIN
  // code here
END;

to

Code:

MYVAR1, MYVAR2;

EXPORT PROG1()
BEGIN
  // code here
END;

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Delete a global user variable - Bob Frazee - 12-14-2013, 04:26 PM
RE: Delete a global user variable - Han - 12-14-2013, 09:17 PM
RE: Delete a global user variable - Han - 12-15-2013 01:50 AM



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