Search found 15 matches

by GopiR
Thu Jul 02, 2009 5:03 am
Forum: C++ Development
Topic: wxStatusBar size
Replies: 5
Views: 1596

What is IMO?
I tried to enable scrollbar on panel for that i used WxScrolledWindow and but the scroll bar was never visible on the window panel.

On the other hand i want to know,On windows platform cant the size of statusbar size be changed.
by GopiR
Wed Jul 01, 2009 9:12 am
Forum: C++ Development
Topic: wxStatusBar size
Replies: 5
Views: 1596

Platform i am working on is windows.
I checked putting up a panel and a label on it.........its not a good solution for me as i keep adding control to the frame dynamically and at one stage it overlap the status bar panel and becomes invisble.
by GopiR
Wed Jul 01, 2009 4:22 am
Forum: General Forum Issues
Topic: How to add tag's
Replies: 2
Views: 8116

Code: Select all

Thank u 
Hee that was really nice of you.
Thanks a lot
by GopiR
Tue Jun 30, 2009 12:40 pm
Forum: General Forum Issues
Topic: How to add tag's
Replies: 2
Views: 8116

How to add tag's

I want to add code in tags when i post my query.
How do i do this?
:(
It might be simple but i m not getting it!
by GopiR
Tue Jun 30, 2009 12:38 pm
Forum: C++ Development
Topic: wxStatusBar size
Replies: 5
Views: 1596

wxStatusBar size

I have a frame whose layout is Generated in wxFormBuilder.(.fbp attached). I have set the font on frame of point 20,So the text in StatusBar is not visible correctly. The below part of text in status bar is not visible Clearly. I want to increase the statusbar size as Font cannot be reduced. I have ...
by GopiR
Tue Jun 30, 2009 7:33 am
Forum: General Development
Topic: Keyboard events on Html Window
Replies: 7
Views: 2758

Is CPRSDiamuxFrame a wxFrame? If so, then it's not guaranteed at all that keyboard events will propagate up to the parent wxFrame; actually, according to the documentation, they should not - it's a wxMSW "bug" that they do. Check the wiki article 'catching key events globally' (or just Co...
by GopiR
Tue Jun 30, 2009 7:14 am
Forum: General Development
Topic: Keyboard events on Html Window
Replies: 7
Views: 2758

int CPRSDiamuxApp::FilterEvent(wxEvent& event) { if ( event.GetEventType()== wxEVT_KEY_UP && m_frame ) { m_frame->OnKeyUp( (wxKeyEvent&)event ); return true; } return -1; } void CPRSDiamuxFrame::OnKeyUp(wxKeyEvent& event) { wxCommandEvent eventEmpty; int nCode = event.GetKeyCode...
by GopiR
Tue Jun 30, 2009 7:03 am
Forum: General Development
Topic: Keyboard events on Html Window
Replies: 7
Views: 2758

In CPRSDiamuxApp which is derived from wxApp I override virtual int FilterEvent(wxEvent& event); Then in CPRSDiamuxApp::OnInit() I create frame which has function to handle OnKeyUpEvent. When m_frame = new CPRSDiamuxFrame() is executed FilterEvent()is called in CPRSDiamuxApp but m_frame is alway...
by GopiR
Tue Jun 30, 2009 6:55 am
Forum: Open Discussion
Topic: Need Help
Replies: 8
Views: 34890

vdell wrote:Moved to Open Discussion since this doesn't seem to have anything to do with wxWidgets.
by GopiR
Tue Jun 30, 2009 4:46 am
Forum: General Development
Topic: Keyboard events on Html Window
Replies: 7
Views: 2758

I checked on the link which u suggested. http://wiki.wxwidgets.org/Catching_key_events_globally make me understand a bit of catching events for entire application. Yes DiaMuxFrame is derived from wxFrame. If Changed to panel or dialog from frame can this issue be solved. I think Override wxApp::Filt...
by GopiR
Mon Jun 29, 2009 5:08 am
Forum: General Development
Topic: Keyboard events on Html Window
Replies: 7
Views: 2758

There is this frame Class in which OnInit we call void CPRSDiamuxFrame::InitEvents() { wxTheApp->Connect(wxID_ANY, wxEVT_KEY_UP, wxKeyEventHandler(CPRSDiamuxFrame::OnKeyUp), (wxObject*)0, this); } and we have void CPRSDiamuxFrame::OnKeyUp(wxKeyEvent& event) { wxCommandEvent eventEmpty; int nCode...
by GopiR
Fri Jun 26, 2009 10:10 am
Forum: General Development
Topic: Keyboard events on Html Window
Replies: 7
Views: 2758

Keyboard events on Html Window

I need a response to this issue ASAP as i have A release. I have application Which have lot of panels .We click on tool bar to navigate to different panels and all tools ave keyboard short-cut and they work very well on panels. So from any panel if i use short cut key to go to any other panel. The i...
by GopiR
Wed Feb 18, 2009 4:13 am
Forum: C++ Development
Topic: Menu from resource
Replies: 2
Views: 1349

Menu from resource

Hi,

Your resource file looks like it is a generated code file of some development tool. May be you could use the same tool to add the required menu items and sub menu items and load the resource file into your project.

Thanks.
by GopiR
Mon Feb 16, 2009 5:34 am
Forum: C++ Development
Topic: Console application Displaying wxProgressDialog...
Replies: 1
Views: 1009

Console application Displaying wxProgressDialog...

Hello Experts,

Is it possible to display a wxProgressDialog from an console application?

If yes can any one suggest an example code?

Thanks & Regards
by GopiR
Sat Jan 31, 2009 1:59 pm
Forum: Open Discussion
Topic: Need Help
Replies: 8
Views: 34890

Need Help

Hi Team,

I am new to wxWidgets and i am asked to implement PING function and reading .csv file. I could not find much help on the same in the manual.
Can any one give me a sample code for PING and to PARSE a .csv file? This will be of a great help.

Thanks for your time.

Regards,
Gopi