Search found 195 matches

by cpp
Sun Sep 10, 2006 1:00 am
Forum: Open Discussion
Topic: Selling my apps... How?
Replies: 9
Views: 3358

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...
by cpp
Sun Sep 03, 2006 10:08 pm
Forum: Open Discussion
Topic: Selling my apps... How?
Replies: 9
Views: 3358

Thank you for you rsugestions guys.
Ill start by getting my company online (build a web site), then ill do some research on paypal, then i will add my app to download.com, and such sites.
Thanks
by cpp
Sat Sep 02, 2006 12:40 am
Forum: Open Discussion
Topic: Selling my apps... How?
Replies: 9
Views: 3358

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. ...
by cpp
Wed Aug 30, 2006 9:29 pm
Forum: C++ Development
Topic: wxApp::OnExit()
Replies: 1
Views: 1018

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 safel...
by cpp
Thu Aug 24, 2006 10:25 pm
Forum: C++ Development
Topic: More Problems with wxToolbar
Replies: 4
Views: 1575

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)...
by cpp
Sat Aug 19, 2006 11:44 pm
Forum: Compiler / Linking / IDE Related
Topic: Errors in Visual Studio 2005
Replies: 28
Views: 8927

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
by cpp
Sat Aug 19, 2006 11:36 pm
Forum: Compiler / Linking / IDE Related
Topic: MSVC++ 2005 EE, relative path problems when compiling
Replies: 6
Views: 2734

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...
by cpp
Sat Aug 19, 2006 11:04 pm
Forum: C++ Development
Topic: problem with the size of PNG wxBitmap in wxToolBar
Replies: 5
Views: 1369

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...
by cpp
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: 2453

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"...
by cpp
Fri Aug 11, 2006 9:27 pm
Forum: C++ Development
Topic: wxObjectList bug in wxWidgets 2.7
Replies: 3
Views: 1183

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 ...
by cpp
Thu Aug 10, 2006 11:38 pm
Forum: C++ Development
Topic: wxObjectList bug in wxWidgets 2.7
Replies: 3
Views: 1183

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(unsign...
by cpp
Thu Aug 10, 2006 11:08 pm
Forum: C++ Development
Topic: wxObjectList bug in wxWidgets 2.7
Replies: 3
Views: 1183

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 dest...
by cpp
Thu Aug 10, 2006 7:39 pm
Forum: General Development
Topic: 2.7 Docs???
Replies: 5
Views: 1690

Thanks, diggin a little in the link provided by upCASE i found also an html version.
by cpp
Thu Aug 10, 2006 2:44 am
Forum: General Development
Topic: 2.7 Docs???
Replies: 5
Views: 1690

Thanks guys. Any idea when will they be available as html docs?
by cpp
Wed Aug 09, 2006 1:35 am
Forum: General Development
Topic: 2.7 Docs???
Replies: 5
Views: 1690

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!