Search found 54 matches

by okurtsev
Thu Sep 08, 2011 8:57 am
Forum: C++ Development
Topic: wxGrid::GetSelectedRows
Replies: 1
Views: 1402

Re: wxGrid::GetSelectedRows

Probably there is some bug. I also had strange problem or misunderstanding with wxGrid. The mode was whole row selection, not separated cells. And if I selected rows with the ribbon, the number of selected rows was always zero. If rows were selected with ribbon on the row header then everything was ...
by okurtsev
Mon Sep 05, 2011 3:45 pm
Forum: C++ Development
Topic: UAC: how to manage?
Replies: 5
Views: 3263

Re: UAC: how to manage?

I think it is a question about Inno Setup, not wxWidgets. I don't know how Inno Setup works with UAC, but NullSoft Installer which I use works with UAC beautifully. And actually Windows 7 doesn't have any problems with UAC, maybe Vista does, but I don't remember complains from Vista users of my soft...
by okurtsev
Fri Jun 24, 2011 4:20 pm
Forum: C++ Development
Topic: wxIntegerValidator< T > how to use it?
Replies: 10
Views: 3499

Re: wxIntegerValidator< T > how to use it?

tierra wrote:It is, maybe I should change out the icon though. It's the tiny green checkbox icon in the top-right of the post to the left of the profile info.
OK, but the tiny green checkbox icon is absent in Chrome browser I always use. Had to run IE to mark it solved.
by okurtsev
Fri Jun 24, 2011 7:39 am
Forum: C++ Development
Topic: wxIntegerValidator< T > how to use it?
Replies: 10
Views: 3499

Re: wxIntegerValidator< T > how to use it?

wxIntegerValidator seems to be very new, maybe the authors just didn't think about this use case :) if no one here knows, you can ask on the mailing list where you can reach the devs Thank you for the help, seems it is really a little bit useless. I would like to mark it "Solved" but don'...
by okurtsev
Mon Jun 20, 2011 3:12 pm
Forum: C++ Development
Topic: wxIntegerValidator< T > how to use it?
Replies: 10
Views: 3499

Re: wxIntegerValidator< T > how to use it?

Validators might not be appropriate to do the entire verification in this case; as far as I know validators are more used to limit the characters that can be entered than to validate the final value. Thank you for answer. It is a little bit strange, why the validators have such functionality like s...
by okurtsev
Mon Jun 20, 2011 9:55 am
Forum: C++ Development
Topic: wxIntegerValidator< T > how to use it?
Replies: 10
Views: 3499

wxIntegerValidator< T > how to use it?

I've tried wxIntegerValidator and have a problem with it. My edits box should let the user input integer values 4..20, but for example if I want to enter the value 20, I have to enter firstly the digit 2, which is impossible in the case, because the validator appears working on every char input. Ple...
by okurtsev
Mon Mar 07, 2011 9:42 am
Forum: C++ Development
Topic: upgrading to wx-2.9.1: non-gui (wxbase) thread not running.
Replies: 3
Views: 1262

Probably it is because wxLogMessage behaviour was changed in 2.9.1 http://docs.wxwidgets.org/2.9/overview_log.html - "Starting with wxWidgets 2.9.1, logging functions can be safely called from any thread. Messages logged from threads other than the main one will be buffered until wxLog::Flush()...
by okurtsev
Tue Mar 01, 2011 1:21 pm
Forum: C++ Development
Topic: Crashes in "Window" menu, wxWidgets 2.9.1
Replies: 4
Views: 1718

Thanks, I know. http://trac.wxwidgets.org/ticket/12525 is reported by me. About stability of wxWidgets 2.9.1 - unfortunatelly it is impossible in my case to use 2.8.11 in production code because of some critical bugs which are not going to be fixed. So I had to migrate on branch 2.9 and have had sev...
by okurtsev
Fri Feb 25, 2011 9:48 am
Forum: C++ Development
Topic: XRC defined GUI elements have text that is too big
Replies: 5
Views: 1232

http://trac.wxwidgets.org/ticket/12733 - it is a confirmed bug in 2.9.x. I had to give up using XRC because of it. Seems it is not going to be fixed.
by okurtsev
Thu Feb 24, 2011 3:03 pm
Forum: C++ Development
Topic: Looking for special list type
Replies: 4
Views: 1365

Re: Looking for special list type

Maybe you mean vertical bar of "buttons"? In my VS I can see two "buttons" - "Dialog Editor" and "General". When I click "Dialog Editor" I can see all available controls. I suspect it is Tree View control or wxTreeCtrl in wxWidgets.
by okurtsev
Fri Dec 03, 2010 1:59 pm
Forum: C++ Development
Topic: FindFocus() returns NULL pointer wxWidgets 2.9.2 trunk
Replies: 8
Views: 9394

I was asking you why did you choose to manage the EVT_UPDATE_UI of the ID_FRAME_EDIT_CONTROL, if you don't really want to. You could manage it for the control you really need. Sorry, don't understand what is it about. Off course I want to manage it, and off course I really need it. Probably it woul...
by okurtsev
Thu Nov 25, 2010 11:21 am
Forum: C++ Development
Topic: FindFocus() returns NULL pointer wxWidgets 2.9.2 trunk
Replies: 8
Views: 9394

Pardon me?
by okurtsev
Wed Nov 24, 2010 7:57 pm
Forum: C++ Development
Topic: FindFocus() returns NULL pointer wxWidgets 2.9.2 trunk
Replies: 8
Views: 9394

There is EVT_UPDATE_UI(ID_FRAME_EDIT_CONTROL, CMainFrame::OnUpdateFrameNumber) Unfortunately i_event.GetId() is always equal ID_FRAME_EDIT_CONTROL. I need this update almost always - then document is changed, frame of video is changed, but I do not need it if the user edit the value manually. Probab...
by okurtsev
Wed Nov 24, 2010 12:17 pm
Forum: C++ Development
Topic: FindFocus() returns NULL pointer wxWidgets 2.9.2 trunk
Replies: 8
Views: 9394

FindFocus() returns NULL pointer wxWidgets 2.9.2 trunk

Because of the problem I described here - http://forums.wxwidgets.org/viewtopic.php?p=124275 I've tried to migrate to 2.9.2 where it was fixed, but here is also one more big problem. I have an edit control in AUI panel. Using EVT_UPDATE_UI I update it, but of course only when it is not in focus. voi...
by okurtsev
Mon Sep 27, 2010 12:37 pm
Forum: C++ Development
Topic: Crashes in "Window" menu, wxWidgets 2.9.1
Replies: 4
Views: 1718

Crashes in "Window" menu, wxWidgets 2.9.1

I've tried migration to 2.9.1, but with no luck yet because of crashes while pressing on any of automatically added by wxDocParentFrame "Window" menu items - "Cascade", "Tile Horizontally", etc. I've checked \samples\docview as well, it also crashes there. I've been try...