home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 12 / Macro5SIS.sis / M5Macros.sis / DataLink.opl (.txt) < prev    next >
Encoding:
EPOC OPL Source  |  2000-10-17  |  854 b   |  21 lines

  1.  
  2.  
  3. REM Macro DataLink version 1.00
  4. REM Display the address of the selected person
  5. REM Replace "...\Address Book" by the path of your database
  6. REM By Pascal NICOLAS, to be used with Macro5
  7. REM Last edited on 6 May 1998
  8.  
  9. Include "Macro.oph"
  10.  
  11. PROC Macro:
  12.     SendKey:("Ctrl+c") :REM Send Ctrl+C to copy the selected text
  13.     Pause 5 :REM Wait for EPOC to copy the text in the clipboard
  14.     If FgDoc%:("c:\My Documents\Address Book") :REM Foreground the Database
  15.         Pause 99 :REM If the Database is not in memory, wait for it to be loaded
  16.     Endif
  17.     SendKey:("Ctrl+v,Enter") :REM Send Ctrl+V to paste the text and Enter to start the search
  18. ENDP
  19.  
  20.  
  21.