home *** CD-ROM | disk | FTP | other *** search
EPOC OPL Source | 2001-10-19 | 1.0 KB | 49 lines |
-
-
- REM ##############################
- REM MenuPlus ©2001 Wolfgang Golder
- REM Notes
- REM ##############################
-
- PROC newNote:
- LOCAL text$(255), DataFile$(255)
-
-
- REM the first field is a memo field
- REM entered text is pasted here
- REM here you can adjust your DataFile
-
- REM !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- DataFile$= "D:\Dokumente\Daten\Memo"
- REM !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-
- REM you must create this file by yourself
- REM with the built in Data application
-
- MPlogon:
-
- dINIT "Memo"
- dEDIT text$,"",25
- IF DIALOG
- MPFgDoc:(DataFile$)
-
- REM new entry
- SendRscMenu:("z:\System\Apps\Data\Data.rsc",4,&D)
-
- REM wait and paste text
- PAUSE 3
- Paste:(text$)
-
- REM save
- SendRscMenu:("z:\System\Apps\Data\Data.rsc",4,&16)
- PAUSE 3
- SendKey:("ESC")
-
- REM send Data to background
- MPToptoBack:
- ENDIF
- ENDP
-
-
-
-