Search found 15 matches

by Sirius
Tue Feb 15, 2005 3:18 am
Forum: Platform Related Issues
Topic: [WinCE] Can I install eVC4 without Embedded Visual Tools?
Replies: 2
Views: 1853

Thank you very much, I will try it :-)
by Sirius
Mon Feb 14, 2005 9:00 am
Forum: Platform Related Issues
Topic: [WinCE] Can I install eVC4 without Embedded Visual Tools?
Replies: 2
Views: 1853

[WinCE] Can I install eVC4 without Embedded Visual Tools?

Hello, I would like to test to build wxWinCE in my WinXP machine , below are the link i can found which related to wxWinCE: http://wiki.wxwidgets.org/wiki.pl?Developers_Notebook/WxWinCECompiling http://www.koansoftware.com/en/prd_svil_wxwince.htm I feel a bit confuse, what should I do in order to bu...
by Sirius
Fri Feb 11, 2005 7:44 pm
Forum: C++ Development
Topic: What is the different with and without c_str() ?
Replies: 1
Views: 840

What is the different with and without c_str() ?

Hello, I got an application which I tried to compile with wxMSW (2.5.2) and wxGTK (2.4.2). I found that one of the different between them is the need of c_str() for wxGTK. Example, the code below is valid for wxMSW but invalid for wxGTK. wxString myStr = wxString::Format(wxT("My text: %s")...
by Sirius
Mon Jan 10, 2005 9:32 am
Forum: Compiler / Linking / IDE Related
Topic: syntax error before 'bool' ??
Replies: 1
Views: 1925

Re: syntax error before 'bool' ??

Code: Select all

wxTutFrame( const wxString& title, const wxPoint& pos, const wxSize& pos2 );
I tried with MSVC, it is working fine for me unless a small bug, at line 12 of wxtut.h. You use pos twice :-)
by Sirius
Wed Dec 29, 2004 2:53 pm
Forum: Platform Related Issues
Topic: Different between wxMSW242 and wxGTK242?
Replies: 4
Views: 2442

Code: Select all

void myDialog::ShowErr(const wxString& strErr);
I add a 'const' for the member method, and everything is fine now :)

Thank you
by Sirius
Wed Dec 22, 2004 9:57 am
Forum: Platform Related Issues
Topic: Version tab for Win32 exe
Replies: 2
Views: 2385

ABX, Thank you for reply, inside my RC file i include an icon and manifest, and they appear correctly in both VC and BCC, just version tab is gone with VC++ :( my RC file: wxMSW ICON "wxMSW.ico" ////////////////////////////////////////////////////////////////////////////// // // Manifest f...
by Sirius
Wed Dec 22, 2004 7:50 am
Forum: Platform Related Issues
Topic: Version tab for Win32 exe
Replies: 2
Views: 2385

Version tab for Win32 exe

Hello, I would like to include the version tab for my wxMSW application. After some reading online and my previous project (which build with MFC/WTL) I addon this portion of text into my rc file. The version tab didn't appear when I compile it with VC 6. But it did appear if I compile it with BC++ 5...
by Sirius
Tue Dec 14, 2004 3:55 am
Forum: Platform Related Issues
Topic: Different between wxMSW242 and wxGTK242?
Replies: 4
Views: 2442

Different between wxMSW242 and wxGTK242?

Recently I tried to compile a program in Linux enviroment-wxGTK 242, which I created with ans tested with wxMSW 2.4.2. I found that there are some different between these 2 Port: My code: ShowErr(wxString("Price or Deposit is invalid")); ... ... void myDialog::ShowErr(wxString& strErr)...
by Sirius
Sat Nov 13, 2004 3:06 pm
Forum: Compiler / Linking / IDE Related
Topic: DialogBlocks and Kdevelop 3.0
Replies: 2
Views: 1971

Oh yes, I had missed this step, I just copy those files into '/src' directory and can't see any Setting/Option for add existing files into project. Do some search in www.kdevelop.org and found the solution. For those who use KDevelop 3.0.x and faced this problem, this is the solution: http://www.kde...
by Sirius
Sun Nov 07, 2004 7:07 pm
Forum: C++ Development
Topic: File size of wxGTK in Linux
Replies: 0
Views: 920

File size of wxGTK in Linux

I have wxMSW 2.5.2 installed in my WinXP and now I plan to install wxGTK 2.5.3 into my Linux (Debian sarge) too. But currently there is just 439MB space available with my Linux partition, is that enough for me to compile and test wxGTK?

PS: I had awxGTK 2.4.2 installed and running well.


Thank you
by Sirius
Sun Nov 07, 2004 6:52 pm
Forum: Compiler / Linking / IDE Related
Topic: DialogBlocks and Kdevelop 3.0
Replies: 2
Views: 1971

DialogBlocks and Kdevelop 3.0

I use Kdevelop 3.0 create a wxWidgets project named 'dbs_kde'-'Simple Hello wxWidgets Application' which is the only choice. After that I create a simple Frame (wxFrame) with DialogBlocks 1.76 and copy 'myFrame.h' and 'myFrame.cpp' into kdevelop project's src directory. in dbs_kde.cpp (the main cpp ...
by Sirius
Mon Sep 27, 2004 5:46 pm
Forum: C++ Development
Topic: How to resume/pause and reset wxThread?
Replies: 5
Views: 3412

Hi Lall,

Thanks for your reply, it is work now. I thought I did something wrong with the thread, cant believe I had miss up this thing :shock:


Thank you
:)
by Sirius
Mon Sep 27, 2004 8:20 am
Forum: C++ Development
Topic: How to resume/pause and reset wxThread?
Replies: 5
Views: 3412

Yes, cause i am not sure how do make a reset/start thread, so my code might not correct in this part, and this is the case i am asking here :-)

thank you
by Sirius
Mon Sep 27, 2004 5:16 am
Forum: General Development
Topic: names of classes and methods in wxWidgets
Replies: 14
Views: 5824

My own learning curve is VB -> Win32 API -> Java -> MFC -> PHP -> Qt (not much) -> wxWidgets. Personally, I like the style of JAVA also but I dont think this is a problem of chosing wxWidgets. What i did for my own project is ... use upper case for those event (OnBtnClick, OnMenuClick..) and use low...
by Sirius
Mon Sep 27, 2004 4:14 am
Forum: C++ Development
Topic: How to resume/pause and reset wxThread?
Replies: 5
Views: 3412

How to resume/pause and reset wxThread?

I am developing an application which contain a wxFrame and wxThread. The thread is going to do a loop from 1 to 10 and display this number on a TextCtrl in Frame. User can : -Play: start the counter/resume the counter -Pause: pause the counter -Reset: Set counter to 0 Now I can start the thread, pau...