System Hanging during PRINT_INIT (OpenInsight)
At 14 NOV 2001 09:19:00AM Loren Henry wrote:
We have a user that is having a problem when she goes to print a report. The printer control screen is called using PRINT_INIT.
hwnd=GET_PROPERTY(@WINDOW,"HANDLE")
stat=PRINT_INIT(1,"Report",hwnd)
Whenever the printer control screen comes up, the number of copies selection arrows are missing. The user can go ahead and print one copy but the system hangs. She has to reboot to get out of it. Any ideas?
At 14 NOV 2001 03:02PM Mike Ruane wrote:
Loren-
Don't pass the handle. As you have discovered, it causes the system to hang.
Mike
At 14 NOV 2001 04:29PM Loren Henry wrote:
Does that mean I don't need the first command to get the handle either?
hwnd=GET_PROPERTY(@WINDOW,"HANDLE")
stat=PRINT_INIT(1,"Report",hwnd)