
Search found 15 matches
- Tue Feb 15, 2005 3:18 am
- Forum: Platform Related Issues
- Topic: [WinCE] Can I install eVC4 without Embedded Visual Tools?
- Replies: 2
- Views: 1576
- Mon Feb 14, 2005 9:00 am
- Forum: Platform Related Issues
- Topic: [WinCE] Can I install eVC4 without Embedded Visual Tools?
- Replies: 2
- Views: 1576
[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...
- Fri Feb 11, 2005 7:44 pm
- Forum: C++ Development
- Topic: What is the different with and without c_str() ?
- Replies: 1
- Views: 682
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"), myText->...
- Mon Jan 10, 2005 9:32 am
- Forum: Compiler / Linking / IDE Related
- Topic: syntax error before 'bool' ??
- Replies: 1
- Views: 1544
Re: syntax error before 'bool' ??
Code: Select all
wxTutFrame( const wxString& title, const wxPoint& pos, const wxSize& pos2 );

- Wed Dec 29, 2004 2:53 pm
- Forum: Platform Related Issues
- Topic: Different between wxMSW242 and wxGTK242?
- Replies: 4
- Views: 1792
Code: Select all
void myDialog::ShowErr(const wxString& strErr);

Thank you
- Wed Dec 22, 2004 9:57 am
- Forum: Platform Related Issues
- Topic: Version tab for Win32 exe
- Replies: 2
- Views: 1667
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 file for Wi...
- Wed Dec 22, 2004 7:50 am
- Forum: Platform Related Issues
- Topic: Version tab for Win32 exe
- Replies: 2
- Views: 1667
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...
- Tue Dec 14, 2004 3:55 am
- Forum: Platform Related Issues
- Topic: Different between wxMSW242 and wxGTK242?
- Replies: 4
- Views: 1792
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) { wxMessageDi...
- Sat Nov 13, 2004 3:06 pm
- Forum: Compiler / Linking / IDE Related
- Topic: DialogBlocks and Kdevelop 3.0
- Replies: 2
- Views: 1498
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...
- Sun Nov 07, 2004 7:07 pm
- Forum: C++ Development
- Topic: File size of wxGTK in Linux
- Replies: 0
- Views: 739
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
PS: I had awxGTK 2.4.2 installed and running well.
Thank you
- Sun Nov 07, 2004 6:52 pm
- Forum: Compiler / Linking / IDE Related
- Topic: DialogBlocks and Kdevelop 3.0
- Replies: 2
- Views: 1498
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 ...
- Mon Sep 27, 2004 5:46 pm
- Forum: C++ Development
- Topic: How to resume/pause and reset wxThread?
- Replies: 5
- Views: 2717
- Mon Sep 27, 2004 8:20 am
- Forum: C++ Development
- Topic: How to resume/pause and reset wxThread?
- Replies: 5
- Views: 2717
- Mon Sep 27, 2004 5:16 am
- Forum: General Development
- Topic: names of classes and methods in wxWidgets
- Replies: 14
- Views: 3901
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...
- Mon Sep 27, 2004 4:14 am
- Forum: C++ Development
- Topic: How to resume/pause and reset wxThread?
- Replies: 5
- Views: 2717
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...