How to Open new static page useing button click in Bada -
i have put image in header button , click on button open new window.
you should construct new window (exactly form) in code attack event listener header button, listener code block use application frame this:
frame *pframe = application::getinstance()->getappframe()->getframe(); then use method make form active , visible:
result r; r = pframe->addcontrol(*pform1); //pform1 constructed new form pframe->setcurrentform(*pform1); pform1->requestredraw();
Comments
Post a Comment