It happens with slow computers that when we build a form it appears slowly. We can build the form in memory without see it on the screen and then see full display once built?
Announcement
Collapse
No announcement yet.
Built form without see it on the screen
Collapse
X
-
Sure, that's easy! {smile} Just use PAGE to set the active page to a different page than the visible page. Then, print to the active page (which is invisible), until you're done. Finally, use PCOPY to copy it the visible page, and use PAGE to set the active page back to the visible page.
Best regards,
Bob Zale
-
Thanks Bob for the excellent suggestion.
One other thing: when a program starts, before you run some command it opens a window. We can avoid that opens the window before you run some commands?mailto:[email protected]
From Italy.
Comment
-
#CONSOLE OFF at the beginning will stop the Console window from opening.Last edited by Jerry Fielden; 12 Sep 2009, 08:40 AM.
Comment
-
Originally posted by Jerry Fielden View Post#CONSOLE OFF at the beginning will stop the Console window from opening.mailto:[email protected]
From Italy.
Comment
-
Originally posted by Edwin Knoppert View PostMaybe you can use console off as suggested and then on demand use AllocConsole() and FreeConsole() API ??mailto:[email protected]
From Italy.
Comment
-
> Maybe you can use console off as suggested and then on demand use
> AllocConsole() and FreeConsole() API ??
Thanks, but it don't run...
I seriously doubt the PB/CC compiler was designed to handle any "CONSOLE..." commands for consoles it does not create itself, which is not unreasonable at all IMO.
MCMMichael Mattias
Tal Systems (retired)
Port Washington WI USA
[email protected]
http://www.talsystems.com
Comment
-
Originally posted by Edwin Knoppert View PostYou may be right but since we are talking about 3 std handles applied to the app i assumed no problem.
Anyway, "not run" does not help much..
sorry, I meant nothing happens, I applied the suggestion but the window is hidden and not displayed.mailto:[email protected]
From Italy.
Comment
-
You may be right but since we are talking about 3 std handles applied to the app i assumed no problem.
Redirect 'stderr' to a file with PB/CC November 2008
MCMMichael Mattias
Tal Systems (retired)
Port Washington WI USA
[email protected]
http://www.talsystems.com
Comment
Comment