Search found 31 matches

by caseyodonnell
Tue Apr 03, 2012 2:20 pm
Forum: wxCode
Topic: wxCurl compilation problems
Replies: 1
Views: 2462

Re: wxCurl compilation problems

Did you grab wxCurl from subversion or the download? I think we need to tag an update and get that on the site. What's in the subversion repository shouldn't have any of those issues.
by caseyodonnell
Tue Apr 03, 2012 2:18 pm
Forum: wxCode
Topic: wxCurl: sending requests.
Replies: 1
Views: 3070

Re: wxCurl: sending requests.

Hey there... I'm not sure what specifically you're doing, and I've been away from wxCurl for a while now, but take a look at the WebDAV sub class as an example of doing some of what you're trying to do. It may be that for one reason or another the opts/headers you're trying to send aren't getting ma...
by caseyodonnell
Thu Mar 29, 2012 6:17 pm
Forum: wxCode
Topic: wxCurl linker problems
Replies: 4
Views: 5968

Re: wxCurl linker problems

Well... :) I guess as the original wxCurl person I should look into this, right? From what I can tell, the solution is that we need to shift the mingw32-make to do the following, right? mingw32-make -f makefile.gcc WX_SHARED=1 LDFLAGS=-lwldap32 I'm not a MingGW person, so I'll take your word for thi...
by caseyodonnell
Sat Apr 09, 2005 2:58 am
Forum: Compiler / Linking / IDE Related
Topic: How to Start?
Replies: 13
Views: 6020

Re: Project Wizards Rule...

He (and I haven't either) probably hasn't updated it for the latest version of wxWidgets...or maybe it's too up to date. The differences between 2.4.2 and 2.5.X are hard to keep track of. Good luck. You might want look at: http://www.koansoftware.com/en/prd_svil_wxdownload.htm wxWinWizard 0.8.1 I to...
by caseyodonnell
Fri Apr 08, 2005 1:13 am
Forum: Compiler / Linking / IDE Related
Topic: How to Start?
Replies: 13
Views: 6020

Project Wizards Rule...

You might want look at: http://www.koansoftware.com/en/prd_svil_wxdownload.htm wxWinWizard 0.8.1 If you're a VC++ .NET person... homepage.mac.com/codonnell/DL/wxAppWiz_2003.zip homepage.mac.com/codonnell/DL/wxAppWiz_2002.zip Depending on your version of VS.NET. I really recommend using the wizards.
by caseyodonnell
Mon Feb 21, 2005 6:52 am
Forum: C++ Development
Topic: KNowing if a file changes
Replies: 6
Views: 2288

Another MD5 Implementation

here's a link for the implementation of MD5 in C++ http://www.codeproject.com/cpp/cmd5.asp Here is a wxVersion of an MD5 class...you'll still need md5c.c, md5.h and global.h as a part of the standard MD5 distrobution. The .H file: ////////////////////////////////////////////////////////////////////...
by caseyodonnell
Fri Oct 15, 2004 2:19 am
Forum: C++ Development
Topic: Realtime input and drawing.
Replies: 16
Views: 6116

OpenAL is quite good for most things. However...if your app is going to be free, I highly recommend [url=htttp://www.fmod.org/]FMOD[/url]. FMOD is cross platform, fast, cool, good C API, and is pretty trivial to wrap in C++. You shouldn't have trouble using either in your app. I've used both for pro...
by caseyodonnell
Thu Oct 14, 2004 2:40 pm
Forum: C++ Development
Topic: wxURL does not work in wxThread?
Replies: 7
Views: 3531

Hehehe...sorry...I'm being flakey this morning. In the forum, components area...there is a wxCurl topic that I pay attention to. I did check in updated VC6 project files this morning...updated to reflect changes in curl that were causing MSW users to get winsock2.h includes and freaky warnings/linke...
by caseyodonnell
Thu Oct 14, 2004 1:00 pm
Forum: C++ Development
Topic: wxURL does not work in wxThread?
Replies: 7
Views: 3531

This is a known kinda thing...

Try reading: A thread on groups.google.com . Another possibly useful google.groups.com thread. That might offer some insight. A little shameless self-promotion...wxCurl should work just fine how you've done it already. wxSocket based classes need the event loop. wxCurl does not. (There is a wxCurl t...
by caseyodonnell
Wed Oct 13, 2004 4:58 pm
Forum: C++ Development
Topic: Realtime input and drawing.
Replies: 16
Views: 6116

Re: well...

SDL not GLUT. GLUT is good for demos, or proof-of-concept.

Networking: http://www.libsdl.org/projects/SDL_net/
soks wrote:Well yes I realize SDL and even GLUT would be good choices, however due to the network options that wxWidgets provides it seemed much more integrated and developed.
by caseyodonnell
Mon Oct 11, 2004 2:43 pm
Forum: C++ Development
Topic: Weird behaviour of wxHtmlWindow
Replies: 2
Views: 1700

Re: Weird behaviour of wxHtmlWindow

That's an interesting approach to using images on your toolbar. I assume you partially want the images to 'grow' as you resize the window? Why that particular choice? What I suspect is happening is that whatever code is re-sizing the image is guessing wrong and making it one pixel too big in one dir...
by caseyodonnell
Mon Oct 11, 2004 5:59 am
Forum: Component Writing
Topic: wxCURL
Replies: 15
Views: 9116

The current version of curl that I include is not compiled with SSL. If you want SSL, all you need to do is follow the directions included with Libcurl to compile a DLL with SSL. Because we haven't explicitly added SSL methods to wxCurl, I haven't built it this way. There are a ton of compile option...
by caseyodonnell
Fri Sep 17, 2004 6:47 pm
Forum: Component Writing
Topic: wxCURL
Replies: 15
Views: 9116

Don't know quite what you're up to...you shouldn't need to load the DLL up. You just compile libcurl as a DLL. The compile wxCurl as a static library (the only way it builds). Then you link your application against wxCurl and libcurl. Make sure you have the libcurl DLL in the directory with your app...
by caseyodonnell
Fri Sep 17, 2004 6:45 pm
Forum: General Development
Topic: Selling apps using wxWindows
Replies: 12
Views: 5614

Exactly. This is one of many cool aspects of wxWidgets. QT windows windows licencing scheme is precisely what drew me to wxWidgets. "The wxWidgets 2 licence is essentially the L-GPL (Library General Public Licence), with an exception stating that derived works in binary form may be distributed ...
by caseyodonnell
Fri Sep 17, 2004 2:04 pm
Forum: Component Writing
Topic: wxCURL
Replies: 15
Views: 9116

You both rule. :) working myself into wxCURL right now, and without any warranty, I can offer my results as a kind of predocumentation, so maybe you need not to write down everthing... I'd be interesting in seeing them. Maybe we could use that as a springboard to a GettingStarted bit of documentatio...