Problem in form display [message #306193] |
Thu, 13 March 2008 04:23 |
dillango
Messages: 145 Registered: January 2008
|
Senior Member |
|
|
Hi experts,
Recently I deployed menu module developed in forms 6i.
I am calling each form from the menu as,
CALL_FORM('FORMNAME',NO_HIDE,DO_REPLACE,NO_QUERY_ONLY);
However, while displaying there is some blink in the screen which the user don't prefer this. They expecting the form must display immediately. (They are familiar in using other products developed in Visual basic)
I have tried with substituting as HIDE,NO_REPLACE etc. but no improvement in the display. I am using latest configured system.
Any idea?
Ilango
|
|
|
Re: Problem in form display [message #306202 is a reply to message #306193] |
Thu, 13 March 2008 05:01 |
*munnabhai*
Messages: 157 Registered: March 2008 Location: Riyadh
|
Senior Member |
|
|
CALL_FORM('FORMNAME',NO_HIDE,DO_REPLACE,NO_QUERY_ONLY);
The Above code should be like this on When Button Pressed tirgger
Call_form('Form_path'No_hide,No_replace);
|
|
|
|
|
Re: Problem in form display [message #307452 is a reply to message #306242] |
Tue, 18 March 2008 23:00 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Do you have a 'synchronize' in your form? Is the form simple (only one block) or complex (multiple blocks, lots of code in when-new-form-instance)?
David
|
|
|