Search found 22 matches

by jsheets
Wed Dec 21, 2005 5:14 pm
Forum: C++ Development
Topic: help wxTextCtrl with very large files
Replies: 5
Views: 1726

Thanks for the reply, I'm open to using a different editor, such as wxStyledTextControl or wxScintilla but unless I've missed something in the documentation (which is entirely possible) I don't see anything in those editors that would enable it to handle the larger file differently than wxTextCtrl. ...
by jsheets
Wed Dec 21, 2005 5:04 pm
Forum: C++ Development
Topic: help wxTextCtrl with very large files
Replies: 5
Views: 1726

help wxTextCtrl with very large files

Hello everyone, We are working on a project that translates very large log files into more human readable form, these log files range from 15 MB to over 1 GB depending on who created it and what information is logged. We have two wxTextCtrls, one that has raw log file output and another that has tra...
by jsheets
Mon Oct 31, 2005 6:05 am
Forum: Open Discussion
Topic: SQLite does not cut it .. other small solutions?
Replies: 20
Views: 6759

I really shouldn't open my mouth here, but I'll do that regardless :twisted: I can't understand what's the hype about MySQL. There is PostgreSQL - it has had stored procedures and triggers for a long time. It outperforms MySQL in every proper benchmark I have read. It is comparable to Oracle regard...
by jsheets
Sat Oct 29, 2005 3:38 am
Forum: Forum Announcements
Topic: BACK IN BUSINESS!
Replies: 14
Views: 23277

wxforum.shadonet.com will be valid indefinitely, even if Jorg decided to move the site I'd update DNS to point to the new IP address.

Jason
by jsheets
Fri Oct 28, 2005 5:31 pm
Forum: Forum Announcements
Topic: BACK IN BUSINESS!
Replies: 14
Views: 23277

Hi All,

wxforum.org is listed as an alias in the VirtualHost directive so if wxforum.org were made to resolve to 69.57.130.149 it could be used reliably as the address.

Jason
by jsheets
Wed Oct 19, 2005 1:29 pm
Forum: C++ Development
Topic: Toggling stay on top
Replies: 2
Views: 992

Thanks, that ability is exactly what I was looking for, for some reason I was looking for SetStyle :).
by jsheets
Wed Oct 19, 2005 1:24 pm
Forum: C++ Development
Topic: Toggling stay on top
Replies: 2
Views: 992

Toggling stay on top

Hello, I need to enable "stay on top" functionality in response to a user pressing a toggle button in a frame. I've found the wxFrame style wxSTAY_ON_TOP but it appears that needs to be set when the frame instance is created, is there a way to enable wxSTAY_ON_TOP dynamically in response t...