....
> 
> Nothing is wrong. Only the built-in checks in PalmOSForm.c in the debug 
> TX sim (and all other debug OS5 sims) are a bit too aggressive when you
> minimize the DIA in landscape mode.
> The only way out would be to resize all your forms as soon as you receive 
> the notification, but that goes against PalmSource own sample code.
> To run Gremlins, you would need an other program watching the popups and 
> automatically pressing Ignore when you get the "Form must be full width" 
> error message. Does such a thing exist?
> 
> Ton van Overbeek 
> 

this resize directly on notification didn't helped

case sysNotifyDisplayResizedEvent:
        MemSet(&resizedEvent, sizeof(EventType), 0);
        //add winDisplayChangedEvent to the event queue
        resizedEvent.eType = (eventsEnum)winDisplayChangedEvent;

//i changed following line
//      EvtAddUniqueEventToQueue(&resizedEvent, 0, true);
//to                            
        frmP=FrmGetActiveForm();
        if(frmP)
                FrmHandleEvent(frmP,&resizedEvent);
        else    
                EvtAddUniqueEventToQueue(&resizedEvent, 0, true);
        break;


this should process resize immediately and not wait. but result is the same.


anyway, as it is not real issue i will have to live with it

-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/

Reply via email to