Search found 71 matches

by krysa
Mon Oct 10, 2005 7:26 am
Forum: Open Discussion
Topic: wxWidgets Article!
Replies: 23
Views: 8029

Re: \\

I think this is outstanding, one thing I wonder about: You have a screenshot showing how to set WXWIN to C:\wxWidgets\ from the GUI (note trailing slash) Later when setting include paths you say to use "$(WXWIN)\include";"$(WXWIN)\contrib\include";"$(WXWIN)\lib\mswd" S...
by krysa
Wed Jun 22, 2005 7:42 pm
Forum: C++ Development
Topic: Newbie that hates sizers philosophy
Replies: 13
Views: 4080

Jorg wrote:wxDev-Cpp is a ported version from Dev-Cpp which is a Delphi programmed C++ IDE ..
And THAT is the bigest problem about it, because C++ developers can not improve it. And who else would add new features to this ide if not its users?
by krysa
Thu Jun 16, 2005 9:56 pm
Forum: Forum Announcements
Topic: Problems importing database!
Replies: 8
Views: 20693

If nothing works - try to use some simple php script to import the data. You can write a php script, that takes .sql file as input, splits the file into single queries, and executes those queries on the mysql server. this way, you can upload any .sql file of any size (ftp or something) and then use ...
by krysa
Sat Jun 04, 2005 9:20 am
Forum: General Forum Issues
Topic: Thoughts about the Code Dump
Replies: 19
Views: 8080

I was actually suggesting the filename be cast to the unix timestamp. So for instance if they uploaded wxCool.zip, it would get changed to unixTimeStamp.zip, but now that I read your idea, I think it is better letting them retain their own file name. if they retain their own names - it will be easi...
by krysa
Sat Jun 04, 2005 9:06 am
Forum: General Forum Issues
Topic: Off-Topic Computing Forum
Replies: 17
Views: 7636

What do you think krysa? Uhm, just to clear things out: 1) user can select any number of forums and at least one must be selected; 2) user can choose any number of messages (i think we shouldn't allow to put anything bellow 10 or above 50); 3) user hits "Go" and then he goes to another pa...
by krysa
Fri Jun 03, 2005 10:27 pm
Forum: Announcements and Discoveries
Topic: wxRapid - A GUI editor
Replies: 43
Views: 13769

I'm not going to name a lot of bugs (that, i'm sure, you already know about). Instead, i must say, this realy annoys me a lot - ICON! You realy need an icon for wxRapid! I created shortcut on my desktop an it looks realy crapy! You should realy think about starting a contest like "who will make...
by krysa
Fri Jun 03, 2005 10:12 pm
Forum: General Forum Issues
Topic: Thoughts about the Code Dump
Replies: 19
Views: 8080

@Tyler: Your solution is good, storing real file names in db table and generating unique names for actual files on server. But! Overwrite/Update mechanism wouldn't work, because most of the time people ends up uploading files like wxCoolCode.v0.1.zip, wxCodeCool.v0.2.zip, wxCC.v0.3.zip, wxCoCo.v0.4...
by krysa
Fri Jun 03, 2005 9:48 pm
Forum: General Forum Issues
Topic: Off-Topic Computing Forum
Replies: 17
Views: 7636

I would like to take a look at it. I will contact you at the e-mail on your website. While I am adept at PHP, I make no garuntees, but I can certainly take a swing. My day job is to code in PHP, and i'm working with PHP for (at least) 4 years now. I guess that makes me adept too. So if you need any...
by krysa
Fri Jun 03, 2005 9:39 pm
Forum: Announcements and Discoveries
Topic: wxPHP has Risen
Replies: 10
Views: 10792

Re: wxPHP has Risen

Yeah. This is realy interesting.

although i'd be more interested in phpWX (or what ever you would call a library that would allow you to embed PHP scripting engine into wx application). ;)
by krysa
Fri Jun 03, 2005 6:58 am
Forum: Compiler / Linking / IDE Related
Topic: Makefile Syntax Terror
Replies: 2
Views: 1198

Re: Makefile Syntax Terror

2) What do you guys use to write code in, with code completion if possible? I use Notepad++: http://notepad-plus.sf.net/ It is very simple text editor, and it has code completion, but it isn't usable (at least for me). But, it has a lot of other features that i can't live without. Just check it out...
by krysa
Thu Jun 02, 2005 9:22 pm
Forum: C++ Development
Topic: what is wxUSE_STD_STRING?
Replies: 7
Views: 2432

The reason is that to the best of my knowledge, the Standard C++ string class cannot be used as a base class because it doesn't have virtual destructor (unless the derived class has no data members at all). is the virtual destructor realy needed? i mean... how often do you see (or how often would y...
by krysa
Tue May 31, 2005 9:14 pm
Forum: General Development
Topic: Manual Editor
Replies: 2
Views: 1292

Re: Manual Editor

Tyler wrote:Does anyone know a good piece of software for facilitating the creation of a user manual? I was wondering what others use to write their manuals?

Thanks for the help,

-Tyler
You might want to take a look at HelpMaker: http://sourceforge.net/projects/helpmaker/
by krysa
Tue May 24, 2005 7:59 am
Forum: C++ Development
Topic: GetSymbol() from wxDynamicLibrary doesn't work well?
Replies: 9
Views: 3210

It returns a FARPROC, even in WIN16 - typedef INT_PTR (FAR WINAPI *FARPROC)(); AFAIK casting from and to from a pointer to function to a void* is technically illegal - see the c++ faq - http://www.parashift.com/c++-faq-lite/pointers-to-members.html#faq-33.8 I was wrong. I always thought FARPROC is ...
by krysa
Mon May 23, 2005 11:16 pm
Forum: C++ Development
Topic: GetSymbol() from wxDynamicLibrary doesn't work well?
Replies: 9
Views: 3210

Maybe in therms of C language is OK, but the matter is, that i need C++ here. So, when you have one class with pure virtual methods and second one which inherits from it and overwrites virtual methods there is a problem. Object is created, but virtual methods table is lost (because of casting to vo...
by krysa
Thu May 19, 2005 10:50 pm
Forum: C++ Development
Topic: GetSymbol() from wxDynamicLibrary doesn't work well?
Replies: 9
Views: 3210

Re: GetSymbol() from wxDynamicLibrary doesn't work well?

#elif defined(__WINDOWS__) symbol = (void*) ::GetProcAddress( m_handle, name.mb_str() ); #else and i'm wondering about cast to void* loaded symbol - is it right? GetProcAddress returns address of the exported symbol, in the terms of C language - that would be a pointer. So casting this to void* is ...