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

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -