Foxprosoldier
Programmer
This is faq184-4480
============================
If you are not happy with the toolbar that controls the report preview screen, why not build your own? This FAQ does not give step-by-step instructions for creating a toolbar, but it will give you an idea of what code to put in the Click events of some of the buttons.
The following code should go in the various page navigation buttons:
KEYBOARD "{PGDN}" && next page
KEYBOARD "{PGUP}" && previous page
KEYBOARD "{HOME}" && first page
KEYBOARD "{END}" && previous page
To open the "Go to page" dialogue:
KEYBOARD G
To jump to a particular page, add the page number and the Enter key to the above command, for example:
KEYBOARD "G9{ENTER}" && go to page 9
And finally, to toggle the zoom factor:
KEYBOARD "Z"
You can't mimic the full functionality of the built-in toolbar, but with the above code, you can get most of the way there.
====================
Anyone know the keyboard command to use for the print button (send the report to the printer) for such a toolbox?
============================
If you are not happy with the toolbar that controls the report preview screen, why not build your own? This FAQ does not give step-by-step instructions for creating a toolbar, but it will give you an idea of what code to put in the Click events of some of the buttons.
The following code should go in the various page navigation buttons:
KEYBOARD "{PGDN}" && next page
KEYBOARD "{PGUP}" && previous page
KEYBOARD "{HOME}" && first page
KEYBOARD "{END}" && previous page
To open the "Go to page" dialogue:
KEYBOARD G
To jump to a particular page, add the page number and the Enter key to the above command, for example:
KEYBOARD "G9{ENTER}" && go to page 9
And finally, to toggle the zoom factor:
KEYBOARD "Z"
You can't mimic the full functionality of the built-in toolbar, but with the above code, you can get most of the way there.
====================
Anyone know the keyboard command to use for the print button (send the report to the printer) for such a toolbox?