home *** CD-ROM | disk | FTP | other *** search
EPOC OPL Source | 2000-10-13 | 1.5 KB | 44 lines |
-
-
- REM Macro ListView v1.02
- REM To be used with Macro5
- REM Written for the US/UK Serie 5
-
- REM by S.Alisi - sergioalisi@geocities.com
- REM http://www.geocities.com/siliconvalley/bridge/1492
-
- REM Starts Agenda and lists all the entries "from today"
- REM in chronological order (same as the "List View" of
- REM the glorous S3x)
-
- REM Change path$ as you need for your Agenda file
-
- REM Adapt the Pause 100 at the bottom, depending on how
- REM deep in the future you want to look; delete the last two
- REM lines if you want a complete search of your Agenda file
-
- Const path$="C:\Documents\Agenda"
-
- PROC Macro:
- If FgApp%:(path$)
- Pause 90
- Endif
- Pause 20
- SendKey:("Ctrl+f") rem select "FIND"
- SendKey:("Del") rem empty search string
- SendKey:("Down") rem move down one row
- SendKey:("f") rem choose "FROM TODAY" in find range
- SendKey:("Down") rem move down one row
- SendKey:("Down") rem move down one row
- SendKey:("Down") rem move down one row
- SendKey:("a") rem choose "ALL" for repeated entries
- SendKey:("n") rem choose "NONE" for repeated entries
- SendKey:("n") rem choose "NEXT ONLY" for repeated entries
- SendKey:("Ctrl+r") rem reset find options
- SendKey:("Enter") rem start the search
- Pause 100 rem let the search go on for a while...
- SendKey:("Esc") rem stop searching
- ENDP
-
-
-