Search found 10 matches

by webmask
Sat Jun 03, 2006 9:36 am
Forum: C++ Development
Topic: wxMenuBar problem - Editing During Runtime
Replies: 13
Views: 2208

ooops sorry,

correction its ...
phoneFrame : public wxFrame{
.
.
.
}

thanks.
by webmask
Sat Jun 03, 2006 5:10 am
Forum: C++ Development
Topic: wxMenuBar problem - Editing During Runtime
Replies: 13
Views: 2208

//-- authentication.cpp authentication::LineState(){ if(!strcmp(UtlString(szEventDesc), " Not Logged In")){ wxMessageBox("Invalid Username or Password","Registration Failed"); setLineStatusFlag(false); } else if(!strcmp(UtlString(szEventDesc), " Logged In")){...
by webmask
Wed May 31, 2006 3:52 pm
Forum: C++ Development
Topic: wxMenuBar problem - Editing During Runtime
Replies: 13
Views: 2208

Code: Select all

myApp::myApp(...){ }

myApp::OnInit(){
myFrame* pFrame = new myFrame();
authenticationDlg* pDlg = new authenticationDlg();
pDlg->ShowModal();
}

still the same.. its pointing to NULL
by webmask
Wed May 31, 2006 1:05 pm
Forum: C++ Development
Topic: wxMenuBar problem - Editing During Runtime
Replies: 13
Views: 2208

Firstly, could you use the [ code ] tag around your piece of code, it makes it much more readable. Here is what I would do for the EVT_UPDATE_UI event: void sipXezPhoneFrame::OnUpdateMenuBar(wxUpdateUIEvent& event) { if (event.GetId() == ID_SignOut) event.Enable (false); else if ... // other ev...
by webmask
Wed May 31, 2006 9:56 am
Forum: C++ Development
Topic: wxMenuBar problem - Editing During Runtime
Replies: 13
Views: 2208

i tried viewing the menu sample... and i created my own EVT_UPDATE_UI i place a breakpoint in the method it seems that it doesnt go inside the EVT_UPDATE_UI method Or it doesnt poll itself. What do you think is the problem? i tried running the menu sample and debug the EVT_UPDATE_UI its working.. th...
by webmask
Tue May 30, 2006 4:16 pm
Forum: C++ Development
Topic: wxMenuBar problem - Editing During Runtime
Replies: 13
Views: 2208

benedicte can you give me a sample on how to use the EVT_UPDATE_UI you can use the code i post if you want.

thanks
by webmask
Tue May 30, 2006 11:40 am
Forum: C++ Development
Topic: wxMenuBar problem - Editing During Runtime
Replies: 13
Views: 2208

wxMenuBar problem - Editing During Runtime

hi all, im having problem with my menu bar. Heres the scenario i have a wxframe loaded on the start up, the menubar is also loaded with the constructor. after which a dialog box appears and asks for a username n password. after clicking the login button the authentication takes place if its an inval...
by webmask
Thu May 25, 2006 9:47 am
Forum: C++ Development
Topic: wxStatusBar updating statustext on listener
Replies: 2
Views: 826

Thanks cursor. it works now.. 8)
by webmask
Thu May 25, 2006 8:11 am
Forum: C++ Development
Topic: wxStatusBar updating statustext on listener
Replies: 2
Views: 826

wxStatusBar updating statustext on listener

hi all, how can i update a wxStatusBar statustext during an event listener? What im doing is i have a status box and i have a seperate class that listens to all the events on the socket. What i wana do is reflect the line connection state to the status box. what do you think is the best way? derive ...
by webmask
Thu May 18, 2006 11:04 am
Forum: C++ Development
Topic: how to launch IE explorer
Replies: 1
Views: 466

how to launch IE explorer

hello all,

i need help.. i want to open an IE explorer after the user clicks on the link on the panel.. as show below. can anybody help me how.. thanks

Image

webmask