Search found 149 matches

by jmason1182
Mon Apr 20, 2009 2:07 pm
Forum: wxCode
Topic: Trouble with wxReportWriter
Replies: 4
Views: 2704

Trouble with wxReportWriter

I am still asking myself why wxReportWriter isn't a part of wxCode.... but anyway, it uses databaselayer so I figured this would be a place to start. I am doing a UNICODE project and boy am I finding a lot of non-unicode ...er... code. So No big deal, just go through and change all constant strings ...
by jmason1182
Fri Apr 17, 2009 6:30 pm
Forum: Compiler / Linking / IDE Related
Topic: missing references for core, ...
Replies: 6
Views: 2755

When I started learning Linux, I was so happy to see the yum application (or apt-get depending on linux distro) Why can't someone come up with a manner of building libraries that actually has a list of "include before me.... include after me" type stuff so that the compiler can figure out ...
by jmason1182
Fri Apr 17, 2009 6:25 pm
Forum: Compiler / Linking / IDE Related
Topic: Static build, asking for ...gcc_custom.dll
Replies: 1
Views: 1072

What an idiot. That guy is a moron. DOesn't he know that he has to check to make sure that he isn't linking against the libraries in the gcc_dll directory when he does a static build! Amateur. :oops: Yeah.... so I checked my build settings and realized my include directories for libraries and header...
by jmason1182
Fri Apr 17, 2009 6:21 pm
Forum: Open Discussion
Topic: The end of desktop applications?
Replies: 16
Views: 11678

Hey I want to post on this.... from experience. A buddy of mine named Mike were talking back in 2002 at Texas A&M about an idea of how we could implement the first OS that was strictly on the web. It would consist of basically the BIOS firing off a loader (can we say, BOOTP) that would work over...
by jmason1182
Fri Apr 17, 2009 3:59 pm
Forum: Compiler / Linking / IDE Related
Topic: Static build, asking for ...gcc_custom.dll
Replies: 1
Views: 1072

Static build, asking for ...gcc_custom.dll

I hate when my brain freezes up. I'll blame it on the stress. :wink: I use mingw and code blocks on winXP. Never had any problems before. My development machine tanked, so I'm on a fresh install, updated wxWidgets (2.8.10), THE SAME code::blocks version I was using (8.02) and the same code I had bef...
by jmason1182
Fri Apr 17, 2009 3:27 pm
Forum: Platform Related Issues
Topic: _vc_custom in name - How to remove?
Replies: 2
Views: 1328

Also, in your builds, you can set OFFICIAL_BUILD=1 to make it an "official build".
by jmason1182
Wed Apr 15, 2009 9:06 pm
Forum: wxDev-C++
Topic: xrc and wxXmlResource
Replies: 1
Views: 840

I know it has been a while since the post, but just FYI what you have is valid if you cast the NULL AND you can't overwrite 'this'.... so use the alternate version and do the following as part of the constructor. wxFrame(wxXmlResource::Get()->LoadFrame((wxWindow *)NULL, wxT("Simple") )); I...
by jmason1182
Tue Mar 24, 2009 4:16 pm
Forum: C++ Development
Topic: unresolved reference to wxThread::TestDestroy.....
Replies: 18
Views: 4661

I'm marking this as solved because we're now at a new codeblocks version as well as a new wxwidgets version. So we'll see how it goes now.
by jmason1182
Mon Mar 23, 2009 1:04 pm
Forum: C++ Development
Topic: [printing] wrong page size calculation in printing-sample?
Replies: 24
Views: 5169

If you do decide to move it to a new thread, then send me a message with a link to the thread. I'm still not convinced that you have any issues. You said one thing that you noticed was things weren't appearing back in their original place after a zoom. That tells me that your coordinates for each ob...
by jmason1182
Fri Mar 20, 2009 9:58 pm
Forum: C++ Development
Topic: [printing] wrong page size calculation in printing-sample?
Replies: 24
Views: 5169

Wow I'm rusty. (when talking to me, keep in mind I think aloud... and actually I type what I think aloud...) Are you zooming in each rect? You are doing a while loop through all the wxWindowListNodes... so I'm assuming you are getting all the resizable controls and resizing each of them. Remember th...
by jmason1182
Wed Mar 18, 2009 2:41 pm
Forum: C++ Development
Topic: [printing] wrong page size calculation in printing-sample?
Replies: 24
Views: 5169

I don't have a lot of time, but I'll do my best to give you a hand.
by jmason1182
Thu Oct 16, 2008 2:18 pm
Forum: C++ Development
Topic: how to implement self-update application?
Replies: 7
Views: 3334

I just ran into something new: shadow copy. http://www.codeproject.com/KB/install/ShadowCopy.aspx I believe that it literally moves all your assembly into an execution cache... that way you can write over your own application on the hard drive. Then, when it's done and you "restart the applicat...
by jmason1182
Mon Oct 13, 2008 2:57 pm
Forum: C++ Development
Topic: "The application failed to initialize properly(0xc00000
Replies: 3
Views: 1272

Hey I forgot I posted to this question.

To fix my errors, I had to remove a few pieces of code... primarily some Thread code. (I was using a few Mutexes that weren't necessary) and so for whatever reason, after that it worked.

So maybe I removed the need for the "missing" dll file?
by jmason1182
Mon Oct 13, 2008 2:49 pm
Forum: wxDev-C++
Topic: MYSQL++
Replies: 4
Views: 1774

Your welcome... even though I didn't make it all. (Someone did the majority of it... and sorry to that author as to I don't have the source in front of me to give him credit.) Later on I'll post an update to it because I've added some more escaping functions, some date translation things, etc. Also,...
by jmason1182
Mon Oct 13, 2008 2:45 pm
Forum: C++ Development
Topic: unresolved reference to wxThread::TestDestroy.....
Replies: 18
Views: 4661

Actually I did. I also tried doing shared vs not, and each time I would do a full clean to ensure no... "cross-contamination". =) Heck, I even renovated my own project directories to see if it was a linking issue with my libMysql library, or something like that... but to no avail. Sooner o...