Search found 123 matches
- Mon Oct 30, 2006 4:32 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxAUI and Linux
- Replies: 15
- Views: 3786
- Mon Oct 30, 2006 9:17 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxAUI and Linux
- Replies: 15
- Views: 3786
- Fri Oct 27, 2006 6:34 am
- Forum: C++ Development
- Topic: Button styles
- Replies: 2
- Views: 2307
if you add a resource file to your project, which includes wx/msw/wx.rc
e.g. wxApp.rc
then the manifest info will be included in the resource by default.
(can be switched off by some preprocesser macro if you don't like it)
brgds
e.g. wxApp.rc
Code: Select all
aaaaaaaa ICON "myAppIcon.ico"
#include "wx/msw/wx.rc"
(can be switched off by some preprocesser macro if you don't like it)
brgds
- Fri Oct 27, 2006 6:20 am
- Forum: C++ Development
- Topic: No console window.
- Replies: 2
- Views: 1334
- Mon Oct 23, 2006 11:19 am
- Forum: wxCode
- Topic: wxPlotCtrl compile trouble
- Replies: 2
- Views: 1686
Re: wxPlotCtrl compile trouble
you need also to build wxThings in order to build wxPlotCtrl ... but ... MathPlot which seems outdated and doesn't compile here you can dl a project (using CodeBlocks) which builds wxMathPlot fine http://tiwag.googlecode.com/svn/binaries/wxMathPlot_TestPlot.tgz see also there http://forums.wxwidgets...
- Fri Oct 20, 2006 2:20 pm
- Forum: wxDev-C++
- Topic: Future of wxDev-c++?
- Replies: 11
- Views: 3087
Actually, we have the hooks in for Digital Mars, but it's not yet officially supported. ... We really haven't taken the time to thoroughly play with DMars to make it as easy to use as the rest of the IDE. It will make it into 6.11. (And my initial tests show it to be REALLY fast. I'd prefer it to M...
- Fri Oct 20, 2006 11:03 am
- Forum: Compiler / Linking / IDE Related
- Topic: SOLVED : wxMathPlot compiling on Linux
- Replies: 3
- Views: 2259
here you can download a project
which builds wxMathPlot as static library
and Testplot which uses it
http://tiwag.googlecode.com/svn/binarie ... stPlot.tgz
builds and runs fine in linux and windows (when using wx-config-win)
http://code.google.com/p/wx-config-win/
brgds
which builds wxMathPlot as static library
and Testplot which uses it
http://tiwag.googlecode.com/svn/binarie ... stPlot.tgz
builds and runs fine in linux and windows (when using wx-config-win)
http://code.google.com/p/wx-config-win/
brgds
- Thu Oct 19, 2006 6:07 pm
- Forum: C++ Development
- Topic: Problem compiling a WXwidgets application
- Replies: 3
- Views: 1011
this works, //headers & declarations #include <wx/wx.h> #include <stdio.h> //"console" like main int xxmain(int argc, char** argv) { printf(" %3d : %s \n", argc, argv[0]); wxMessageBox(argv[0]); return argc+20; } //wxapp class MyApp: public wxApp { virtual int OnRun(); }; IMPLEMENT_APP(MyApp) int My...
- Thu Oct 19, 2006 7:13 am
- Forum: wxDev-C++
- Topic: Sugestions to improve compiling/linking time
- Replies: 9
- Views: 2075
- Thu Oct 19, 2006 6:55 am
- Forum: Compiler / Linking / IDE Related
- Topic: c:\wxWidgets-2.6.3\include\wx\longlong.h(169) : warning C424
- Replies: 14
- Views: 4400
hi dave it's good, that you found your solution, I consider this issue a "slight bug" in wx 2.6.3. your compiler is right with this warning, it depends on the warning-level. check your documentation of VC6 about all the switches and i'm shure, that there is one, which controls the behaviour. since i...
- Thu Oct 19, 2006 6:45 am
- Forum: wxDev-C++
- Topic: A question or two regarding wxCTB
- Replies: 5
- Views: 1642
... This line is better written as receivedBytes[rd] = '0'; this is not a good advice, and will obviously not work. because code 0 (0x00) is necessary for zero terminated strings as expected in a char* buffer... and code of '0' is never defined as 0x00 ( e.g. 0x30 in ANSI char set) assuming the buf...
- Thu Oct 19, 2006 12:11 am
- Forum: wxDev-C++
- Topic: Sugestions to improve compiling/linking time
- Replies: 9
- Views: 2075
- Thu Oct 19, 2006 12:10 am
- Forum: Compiler / Linking / IDE Related
- Topic: c:\wxWidgets-2.6.3\include\wx\longlong.h(169) : warning C424
- Replies: 14
- Views: 4400
- Wed Oct 18, 2006 10:05 pm
- Forum: Compiler / Linking / IDE Related
- Topic: c:\wxWidgets-2.6.3\include\wx\longlong.h(169) : warning C424
- Replies: 14
- Views: 4400
dave, can you run the program and post the output here something like wxABI_VERSION = 20699 wxVERSION_STRING = wxWidgets 2.6.3 also i don't know where VC6 stores all the commandline flags ands options, this would be needed also in order to find the reason. VS2003 produces some html file, where the e...
- Tue Oct 17, 2006 11:21 am
- Forum: The Code Dump
- Topic: wxFlatMenu & wxFlatMenuBar
- Replies: 117
- Views: 48358
Does the menu always appear on primary monitor (in my implementation, menu is a child of the desktop)? YES If the answer is yes, does the following is a valid solution: - Query a system about number of monitors - Query the main window on which monitor it is shown (is this feasible??) - if appliocat...