At 08:23 PM 4/4/2009, John Engwer wrote:
Razzak - I had not tried changing the zoom percent. When I tried via the PRINT command options the zoom percent will not change. It always stays at 100%. Here is my print command: PRINT PatNotes + WHERE CUST# = .vCU_NO AND (dextract(PatientNoteDate)) between .vfrom_date and .vto_date + ORDER BY PatientNoteDate desc + OPTION SCREEN + |ZOOMPERCENT 120 + -- I have tried several percents here |WINDOW_STATE MAXIMIZED + |PREVIEW_CAPTION Patient Record
John, Did you follow my three suggested examples on how to use the ZOOMPERCENT option? Technically, ZOOMPERCENT nnn option must be preceded by ZOOM_TYPE PERCENTAGE. -- Example 01: CONNECT RRRBYW15 PRINT Invoice WHERE TransID = 1002 + OPTION SCREEN|WINDOW_STATE MAXIMIZED + |ZOOM_TYPE PERCENTAGE|ZOOMPERCENT 90 -- Example 02: CONNECT RRRBYW15 PRINT Invoice WHERE TransID = 1002 + OPTION SCREEN|WINDOW_STATE MAXIMIZED + |ZOOM_TYPE PERCENTAGE|ZOOMPERCENT 100 -- Example 03: CONNECT RRRBYW15 PRINT Invoice WHERE TransID = 1002 + OPTION SCREEN|WINDOW_STATE MAXIMIZED + |ZOOM_TYPE PERCENTAGE|ZOOMPERCENT 120 Very Best R:egards, Razzak.

