home *** CD-ROM | disk | FTP | other *** search
EPOC OPL Source | 2000-10-17 | 854 b | 21 lines |
-
-
- REM Macro DataLink version 1.00
- REM Display the address of the selected person
- REM Replace "...\Address Book" by the path of your database
- REM By Pascal NICOLAS, to be used with Macro5
- REM Last edited on 6 May 1998
-
- Include "Macro.oph"
-
- PROC Macro:
- SendKey:("Ctrl+c") :REM Send Ctrl+C to copy the selected text
- Pause 5 :REM Wait for EPOC to copy the text in the clipboard
- If FgDoc%:("c:\My Documents\Address Book") :REM Foreground the Database
- Pause 99 :REM If the Database is not in memory, wait for it to be loaded
- Endif
- SendKey:("Ctrl+v,Enter") :REM Send Ctrl+V to paste the text and Enter to start the search
- ENDP
-
-
-