Search found 246 matches
- Wed Jul 20, 2005 12:06 am
- Forum: C++ Development
- Topic: How to lower the disk space taken by my programs!
- Replies: 26
- Views: 5414
Inno Setup was great for me, for a while, but you get the same nice compression options with a much better look-and-feel from NSIS: http://nsis.sourceforge.net/ Don't get me wrong, I love Inno Setup, but as the OS has become more aesthetic, Inno has not progressed in this regard and is still creatin...
- Thu Jul 14, 2005 8:34 pm
- Forum: C++ Development
- Topic: Text Highlight on wxTextCtrl->SetValue()
- Replies: 6
- Views: 1912
Re: Text Highlight on wxTextCtrl->SetValue()
what wxWidgets port and version are you using (where the problem exists)? Ahh I should have quoted that, sorry. I am running wxMSW 2.6.1 on Win XP Pro with MSVC++. Maybe problem shows up becouse Your wxTextCtrl is one or first and then it is focused when program start? Good thinking. I'm not sure w...
- Wed Jul 13, 2005 4:44 am
- Forum: General Forum Issues
- Topic: Feature Request - Answered Post
- Replies: 29
- Views: 9660
Nice work upCASE! I was just thinking about this the other day but you beat me to the punch and did a really nice job on the graphics. I'm looking forward to seeing it implimented, and as Jorg mentions, posted as a mod. 8) The only way it could be any cooler is if marking someone's answer as accepte...
- Mon Jul 11, 2005 8:59 pm
- Forum: Forum Announcements
- Topic: Finally a new RSS!
- Replies: 3
- Views: 5374
- Mon Jul 11, 2005 1:34 pm
- Forum: Forum Announcements
- Topic: My company blocked me !
- Replies: 9
- Views: 8206
- Mon Jul 11, 2005 1:32 pm
- Forum: C++ Development
- Topic: How to lower the disk space taken by my programs!
- Replies: 26
- Views: 5414
Same as upper, I don't know how to do this...The only time I saw the word "release" was when I was entering the version information in the project options. Build > Set Active Configuration > Release Now compile. This will strip all of the debugging information out of your executable (which your use...
- Mon Jul 11, 2005 12:58 am
- Forum: C++ Development
- Topic: Text Highlight on wxTextCtrl->SetValue()
- Replies: 6
- Views: 1912
Re: Text Highlight on wxTextCtrl->SetValue()
What do you mean by "highlight"? It'd be the equivalent of if you right clicked in a text box and chose "Select All". Basically I have a frame and on it is a wxTextCtrl. In the constructor for my frame I call wxTextCtrl::SetValue() and it sets the value in the text box and then "Selects all" of the...
- Thu Jul 07, 2005 8:43 pm
- Forum: C++ Development
- Topic: Changing Cursor
- Replies: 5
- Views: 2447
Thanks guys. Looks like a combination of what you all were saying worked. I upgraded to the latest wx release, and included the wx.rc file in my project and it worked. The wx.rc file isn't editable with MSVC so I just created my own and then included the cursor into my resource file. It works great ...
- Thu Jul 07, 2005 5:59 pm
- Forum: C++ Development
- Topic: Delete multiple dynamic created windows
- Replies: 5
- Views: 1167
the memory will be free automatically with the Close(true) command? Nah, if you want to clean it up you should: dia->Destroy(); FTA: As reinforced in the next section, calling Close does not guarantee that the window will be destroyed. Call wxWindow::Destroy if you want to be certain that the windo...
- Thu Jul 07, 2005 5:14 pm
- Forum: C++ Development
- Topic: Delete multiple dynamic created windows
- Replies: 5
- Views: 1167
Hey Morfio,
I think you may be looking for this: http://www.wxwidgets.org/manuals/2.6.0/ ... onoverview
I think you may be looking for this: http://www.wxwidgets.org/manuals/2.6.0/ ... onoverview
- Thu Jul 07, 2005 2:59 pm
- Forum: C++ Development
- Topic: [SOLVED] How to force frame to react on key event?
- Replies: 2
- Views: 832
I didn't mean to think about it too much, but I have found: http://www.wxwidgets.org/manuals/2.6.0/ ... ratortable helpful in the past (embedding the accelerator table in the frame).
- Tue Jul 05, 2005 9:00 pm
- Forum: C++ Development
- Topic: Changing Cursor
- Replies: 5
- Views: 2447
hmm.. this didn't work either. Which cursor settings work on your machine? I also tried: wxSetCursor(wxCursor(*wxCROSS_CURSOR)); thinking it may be the cursor I was choosing, but that didn't work either. Thanks for your help, -Tyler EDIT: It looks like no cursors are working on my computer. Hmm.. ti...
- Mon Jul 04, 2005 11:48 am
- Forum: Open Discussion
- Topic: RSS stuff
- Replies: 47
- Views: 9024
Maybe it would be a good idea to debate on "how would the most intelligent versioning system work"? One is lead to think, RSS is quite an unexplored technology... There are zillions of applications besides news reading just waiting to be discovered. Very true. Actually, I like your XML approach, th...
- Sun Jul 03, 2005 4:09 pm
- Forum: C++ Development
- Topic: Changing Cursor
- Replies: 5
- Views: 2447
Changing Cursor
I have a pretty basic question. How do I change the cursor to a "hand" cursor for my wxFrame like when you have the mouse over a link? I've tried (within my wxFrame constructor):
but this doesn't change the cursor at all. Any ideas?
Code: Select all
wxCursor cur(wxCURSOR_HAND);
SetCursor(cur);
- Thu Jun 30, 2005 9:23 pm
- Forum: Platform Related Issues
- Topic: log in the system as another user
- Replies: 4
- Views: 1495