Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!think.com!sdd.hp.com!hp-pcd!hpcvra.cv.hp.com!rnews!hpcvbbs!akcs.joehorn From: akcs.joehorn@hpcvbbs.UUCP (Joseph K. Horn) Newsgroups: comp.sys.handhelds Subject: Re: Re: HP 48 Faster PGDIR/Scan for hidden variables Keywords: hp48, hidden Message-ID: <285314ec:3374.6comp.sys.handhelds;1@hpcvbbs.UUCP> Date: 10 Jun 91 06:40:05 GMT References: <284dca48:3374comp.sys.handhelds@hpcvbbs.UUCP> <22380@duke.cs.duke. Lines: 18 Dan Flatin asks if there is a way to scan for hidden variables. If all you want to do is see if there are any, you can use Rick Grevelle's HACKIT library to determine this easily: Put the name of the directory on the stack, then use this: DUP EVAL RCLDR ->DIR UPDIR SWAP RCL == If this yields 1, then there are no hidden variables; if this yields 0, then there ARE hidden variables. Once that's done, you can easily find out what they are by entering the directory, doing a VARS (that'll give the visible vars), then unhiding everything, and doing a VARS again, and taking the SUB of this list which shows just the newly obtained vars (they'd be the previously hidden ones). I hope that makes sense. -- Joe Horn --