home *** CD-ROM | disk | FTP | other *** search
EPOC OPL Source | 2000-10-17 | 861 b | 28 lines |
-
-
- REM Macro OPLHelp version 1.00
- REM Display the usage of the selected command
- REM You need the "OPL Reference" database file
- REM Adapt the path of the database file
- REM By Pascal NICOLAS, to be used with Macro5
- REM Last edited on 6 May 1998
-
- Include "Macro.oph"
-
- PROC Macro:
- Local C$(255)
-
- REM Highlight the entire command/function automaticaly and copy it into C$
- C$=CopyWord$:("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_%&$")
-
- REM Foreground the Database
- If FgDoc%:("c:\Opl\OPL Reference")
- Pause 120 :REM If the Database is not in memory, wait for it to be loaded
- Endif
-
- REM Search for the command
- Paste:("."+C$+Chr$(6))
- ENDP
-
-
-