Search found 195 matches
- Sun Sep 10, 2006 1:00 am
- Forum: Open Discussion
- Topic: Selling my apps... How?
- Replies: 9
- Views: 2429
Thanks for your sugestions. Im not from Germany, i live in Mexico so i guess the service in share-it.de wont work for me. :( Its interesting what you said about the demo download/sales ratios, specially about the ratio for mac software being higher, i guess thats because there is a lot more software...
- Sun Sep 03, 2006 10:08 pm
- Forum: Open Discussion
- Topic: Selling my apps... How?
- Replies: 9
- Views: 2429
- Sat Sep 02, 2006 12:40 am
- Forum: Open Discussion
- Topic: Selling my apps... How?
- Replies: 9
- Views: 2429
Selling my apps... How?
Ibe been writting software for several years now. But ibe allways worked on "custom" made software, a company contacts me, tells me what it needs, and i design a solution and present it (along with a price tag of course), if they aprove it, i implement it, give it to them and they pay me. Now i want...
- Wed Aug 30, 2006 9:29 pm
- Forum: C++ Development
- Topic: wxApp::OnExit()
- Replies: 1
- Views: 730
wxApp::OnExit()
After writting several applications with wxWidgets, i cant belive i "missed" this: if i override wxApp::OnExit() on my own applications class (wich i allways do). Do i have to call the base class?? eg. int MyApp::OnExit() { // my own cleanup here... return wxApp::OnExit(); } or can i safely ommit th...
- Thu Aug 24, 2006 10:25 pm
- Forum: C++ Development
- Topic: More Problems with wxToolbar
- Replies: 4
- Views: 1215
Hi! wxIcon derives from wxBitmap (so wxToolBar will accept it), theres no need to copy it to a bitmap. so, instead of copying the icon to a wxBitmap, try passing it directly to the toolbar: wxToolBar *toolbar = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize,wxTB_FLAT|wxTB_HORIZONTAL)...
- Sat Aug 19, 2006 11:44 pm
- Forum: Compiler / Linking / IDE Related
- Topic: Errors in Visual Studio 2005
- Replies: 28
- Views: 7435
I sugest you try 2005Express again. here are complete instructions:
http://forums.wxwidgets.org/viewtopic.php?t=6261
Follow them exactly and you shouldnt have amy problems.
HTH
http://forums.wxwidgets.org/viewtopic.php?t=6261
Follow them exactly and you shouldnt have amy problems.
HTH
- Sat Aug 19, 2006 11:36 pm
- Forum: Compiler / Linking / IDE Related
- Topic: MSVC++ 2005 EE, relative path problems when compiling
- Replies: 6
- Views: 1828
maybe you still have a problem somewhere in your paths, im pasting mine (they work) so you can compare them with yours: library files: C:\Program Files\Microsoft Platform SDK\Lib $(WXWIN)\lib\vc_lib $(VCInstallDir)lib $(VCInstallDir)PlatformSDK\lib $(FrameworkSDKDir)lib $(VSInstallDir) $(VSInstallDi...
- Sat Aug 19, 2006 11:04 pm
- Forum: C++ Development
- Topic: problem with the size of PNG wxBitmap in wxToolBar
- Replies: 5
- Views: 1056
Hi! I had that problem once, try calling wxToolBar::SetToolBitmapSize() to specify the size of your images, before adding the buttons. make shure you pass the correct size of your images. eg. // create the toolbar toolbar = new wxToolBar(this, wxID_ANY , wxDefaultPosition, wxDefaultSize, wxTB_HORIZO...
- Sun Aug 13, 2006 12:39 am
- Forum: C++ Development
- Topic: How to set parent for my wxDialog to a non-wxWindow
- Replies: 4
- Views: 1744
I think he means to use a parent from another application, if so, im not shure if the Windows API Function CreateWindowsEx allows passing an HWND from another process. If it does, then the first thing you need is to get the HWND from the window you desire as parent, and somehow "assign it"to a wxWid...
- Fri Aug 11, 2006 9:27 pm
- Forum: C++ Development
- Topic: wxObjectList bug in wxWidgets 2.7
- Replies: 3
- Views: 790
thanks for your reply, I think 2.7 is the bleeding edge development release after trying it, it completely agree with you, what i dont understand is why does it say: "Please notice that this series is called "development" and not "stable" solely because compatibility is not assured among between dif...
- Thu Aug 10, 2006 11:38 pm
- Forum: C++ Development
- Topic: wxObjectList bug in wxWidgets 2.7
- Replies: 3
- Views: 790
mhh, "interesting"... i recompiled 2.7 with no wxUSE_STL, and now the program wont even start. i get an access violation in wxStringBase yep, im absolutely going back to 2.63 > Ive.exe!wxStringBase::Alloc(unsigned int nLen=1024) Line 359 + 0x3 bytes C++ Ive.exe!wxStringBase::reserve(unsigned int sz=...
- Thu Aug 10, 2006 11:08 pm
- Forum: C++ Development
- Topic: wxObjectList bug in wxWidgets 2.7
- Replies: 3
- Views: 790
wxObjectList bug in wxWidgets 2.7
i downloaded, configured & built the new ""stable"" 2.7 version of wxWidgets, and i went to recompile my latest app with it. It compiled fine, but when i tried to run it, right away i got an assert saying: "list iterators incompatible" coming from the wxDbTable destructor. (im pasting the call stack...
- Thu Aug 10, 2006 7:39 pm
- Forum: General Development
- Topic: 2.7 Docs???
- Replies: 5
- Views: 1201
- Thu Aug 10, 2006 2:44 am
- Forum: General Development
- Topic: 2.7 Docs???
- Replies: 5
- Views: 1201
- Wed Aug 09, 2006 1:35 am
- Forum: General Development
- Topic: 2.7 Docs???
- Replies: 5
- Views: 1201
2.7 Docs???
Hi! heres a silly question:
Where can i get the documentation for the latest wxWidgets 2.7 release???
in the downloads page all i see are the ones for 2.63
thanks!
Where can i get the documentation for the latest wxWidgets 2.7 release???
in the downloads page all i see are the ones for 2.63
thanks!