Search found 146 matches

by JSThePatriot
Mon Aug 18, 2008 6:56 pm
Forum: Platform Related Issues
Topic: wxWidgets on Android, Ubuntu Mobile, or OpenMoko?
Replies: 7
Views: 3148

Hi, I have a FreeRunner and just installed the included wxWidgets libraries (2.8.7). Not sure to directly try out a wx based application, because I don't know, if there is one included or one is based on this package. I will stay tuned, especially how to setup my development environment for crossco...
by JSThePatriot
Mon Jul 14, 2008 4:37 am
Forum: C++ Development
Topic: parsing a html
Replies: 6
Views: 1942

Not a problem really. However, I find it to be a great resource. Just recently I spent a couple days to go over the top 2000 projects on source forge. I made a tree of useful products that I found including links and such. I love open source!

JS
by JSThePatriot
Fri Jul 11, 2008 12:58 pm
Forum: C++ Development
Topic: parsing a html
Replies: 6
Views: 1942

Hey, I saw your other post about parsing HTML pages behind a login page. Then I saw this one asking about parsing HTML, I decided to do a quick search on SF.net to see what I could come up with by way of C++ HTML parsing libraries. http://sourceforge.net/search/?type_of_search=soft&type_of_searc...
by JSThePatriot
Mon Jul 07, 2008 3:44 am
Forum: C++ Development
Topic: How to handle zip file errors
Replies: 3
Views: 1531

Do you have the ability to get a checksum of the files before download? That would be a highly accurate way to be sure the files downloaded are exactly the same as the files still located on the server. This is what I would recommend. However, what has been mentioned above would also seem to work. H...
by JSThePatriot
Mon Jul 07, 2008 3:39 am
Forum: C++ Development
Topic: Link a data type with a wxWidgets Application
Replies: 3
Views: 988

Usually file associations are set during installation (Windows in the Registry). However, as noted by the above poster, you can also do it during run time of your program such as in an options dialog. I personally use Inno Setup or NSIS to create my installation packages (I have only created Windows...
by JSThePatriot
Thu Jul 03, 2008 5:16 pm
Forum: C++ Development
Topic: IsConnected() always returns true...
Replies: 8
Views: 1939

I have no idea if this will help with your problem but are you calling wxSocketBase::Initialize() anywhere? It's needed when using sockets from a secondary thread. I'm not using wxSocketBase::Initialize() just now, but wait a moment...I'm going fast to try it.... Edit: A few minutes later... No luc...
by JSThePatriot
Tue Jun 24, 2008 3:09 am
Forum: C++ Development
Topic: So i started a project, but since i'm a n00b...
Replies: 1
Views: 780

I don't know the exact code as I haven't written any wxWidgets code in a little while. However, what I would recommend is that you override your Cancel function and input some code that inserts the data directly into your original frame, or you can insert the values into temporary variables that you...
by JSThePatriot
Mon Feb 25, 2008 3:34 pm
Forum: Platform Related Issues
Topic: wxWidgets on Android, Ubuntu Mobile, or OpenMoko?
Replies: 7
Views: 3148

@tierra I appreciate your response. I saw that Android was Java based, and that unfortunately turned me off from it. (Saw it after I posted) Ubuntu Mobile is being made for MIDs. (Mobile Internet Devices) So basically items like the iPhone and souped up PDA's (I think). Also tablet PC's are mentione...
by JSThePatriot
Sat Feb 23, 2008 5:52 pm
Forum: Platform Related Issues
Topic: wxWidgets on Android, Ubuntu Mobile, or OpenMoko?
Replies: 7
Views: 3148

wxWidgets on Android, Ubuntu Mobile, or OpenMoko?

I am trying to follow the Linux Mobile Computing platforms and I love the wxWidgets framework. I am wondering if the wxCommunity is planning to join any of these groups, or try to compile on these platforms. I am new to the embedded environments and am highly interested in them. I am currently worki...
by JSThePatriot
Tue May 15, 2007 2:34 am
Forum: C++ Development
Topic: handling keyboard presses
Replies: 1
Views: 706

Code: Select all

EVT_KEY_DOWN(), EVT_KEY_UP(), EVT_CHAR()
Those should help you greatly.

Dont forget in your function to use "event.skip()" in an instance where you're not needing the specified key combo so you're not blocking all input.

JS
by JSThePatriot
Fri May 11, 2007 5:23 pm
Forum: C++ Development
Topic: keyboard event
Replies: 13
Views: 3296

I compiled you code. I have two borderless text controls in a frame without any caption and border, the controls have text cursors if to focus them using mouse, but the Tab does not work due to the wxTAB_TRAVERSAL flag missing. So I changed the frame creation line MyFrame *frame = new MyFrame( _T(&...
by JSThePatriot
Thu May 10, 2007 6:13 pm
Forum: C++ Development
Topic: wxWinCE, and Charting Capabilities
Replies: 3
Views: 1582

wxChart, and wxPlot/wxPlotCtrl is exactly what I am interested in.

Thanks to all!
JS
by JSThePatriot
Thu May 10, 2007 5:42 pm
Forum: C++ Development
Topic: wxWinCE, and Charting Capabilities
Replies: 3
Views: 1582

Excellent. I will check into that, and the compatability it has with wxWinCE. Thanks for the pointer. I thought I had seen something somewhere. If you come up with anything else that would be great. I thought about a DC, but then also I would have to work out the algorithms for resizing upon adding ...
by JSThePatriot
Thu May 10, 2007 4:30 pm
Forum: C++ Development
Topic: wxWinCE, and Charting Capabilities
Replies: 3
Views: 1582

wxWinCE, and Charting Capabilities

I am not positive this is the proper place to post this, but I am trying to convince my company that we can use wxWidgets for all of our applications, instead of 3 different languages each for its own platform/purpose. I have checked all the compatibility, and everything is looking good. The only th...
by JSThePatriot
Tue May 08, 2007 4:21 pm
Forum: C++ Development
Topic: Can a window be both active and hidden? Apparently so! Help
Replies: 6
Views: 1926

Excellent point ;).

I am still a novice with wxWidgets.

JS