computergeek
Programmer
Hi,
I have been tasked with taking a look at one our our legacy systems that still uses PB 5.0, on XP. Script now hangs after upgrading to XP:
int li_Job
window lw_Sheet
/* Print active sheet */
lw_Sheet = w_mdi_main.GetActiveSheet ()
if IsValid (lw_Sheet) then
w_mdi_main.SetMicroHelp ("Printing active sheet...")
li_Job = PrintOpen ()
lw_Sheet.Print (li_Job, 1, 1)
PrintClose (li_Job)
w_mdi_main.SetMicroHelp ("")
end if
Any ideas as to why? (Other than this application SHOULD be upgraded to a newer version of PB)
Thanks in advance for the information.
Computergeek
I have been tasked with taking a look at one our our legacy systems that still uses PB 5.0, on XP. Script now hangs after upgrading to XP:
int li_Job
window lw_Sheet
/* Print active sheet */
lw_Sheet = w_mdi_main.GetActiveSheet ()
if IsValid (lw_Sheet) then
w_mdi_main.SetMicroHelp ("Printing active sheet...")
li_Job = PrintOpen ()
lw_Sheet.Print (li_Job, 1, 1)
PrintClose (li_Job)
w_mdi_main.SetMicroHelp ("")
end if
Any ideas as to why? (Other than this application SHOULD be upgraded to a newer version of PB)
Thanks in advance for the information.
Computergeek