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?
Loren-
Don't pass the handle. As you have discovered, it causes the system to hang.
Mike
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)