Selected Rows are Invisible in DataWindo - TechRepublic
General discussion
September 7, 2001 at 10:24 AM
sunney

Selected Rows are Invisible in DataWindo

by sunney . Updated 24 years, 9 months ago

I am using a DataWindow for a report and use the Preview mode of DW for a print preview. The problem is that when the preview is on the selected Row becomes invisible. Please forward your suggestions, The code is as follows:
if not ibPrintPreview then
dw_1.Modify(“datawindow.print.preview=Yes”)
dw_sort2.Modify(“datawindow.print.preview=Yes”)
cb_zoom.enabled = True
em_1.enabled = True
triggerevent(em_1,clicked!)
this.text = “&Print Preview Off”
ibPrintPreview = True
else
dw_1.Modify(“datawindow.print.preview=No”)
dw_sort2.Modify(“datawindow.print.preview=No”)
this.text = “&Print Preview On”
cb_zoom.enabled = False
em_1.enabled = False
ibPrintPreview = False
end if

This discussion is locked

All Comments