0
votes
1answer
27 views
wxWidgets and “Implement_App” causes _main duplicate symbol error
I'm compiling a trivial wxWidgets app on MacOS X 10.6 with XCode 3.2
The linker is return an error about the symbol _main being defined twice:
once in main.mm
once in the te …
0
votes
0answers
69 views
Embedded wxLua not displaying most controls (but still does layout correctly)
I am having trouble getting embedded wxLua to work with my application -- it works fine when I use the wxLua DLLs, but I'm trying to use the static libraries so I can distribute a …
1
vote
1answer
23 views
wxGraphicsContext dreadfully slow on Windows
I've implemented a plotter using wxGraphicsContext. The development was done using wxGTK, and the graphics was very fast.
Then I switched to Windows (XP) using wxWidgets 2.9.0. An …
0
votes
1answer
19 views
f.pos undefined?
simplified version of my problem
require 'wx'
Wx::App.run do
f = Wx::Frame.new nil
f.title= 'the potlee'
f.size= Wx::Size.new( 200 , 500)
f.pos= Wx::point.new(50,50)
…
0
votes
0answers
15 views
wxTextEntryDialog assertion problem
Hi guys! I am making a text entry dialog in wxWidgets, and I always get a assertion error. Code looks like this:
int CFrame::MenuSetAmbient(wxCommandEvent &event)
{
wxTextEn …
0
votes
0answers
37 views
How can I get a volume serial number using wxWidgets?
Hi, I'm looking for a function/class in wxWidgets which can give me a volume serial number (like win32 GetVolumeInformation function does).
I assume that the volume serial number …
2
votes
2answers
48 views
wxlua bindings does not work with my shaderobjects made using SWIG
Hi,
I made a class using wxwdigets
//wrapper over wxIPV4address
class IPV4addressLua : public wxIPV4address
{
public:
IPV4addressLua();
~IPV4addr …
0
votes
0answers
26 views
Downloading file with wxHTTP?
Im really stumped. Im using the wxHTTP class in wxWidgets to try and download two files. The first request succeeds but the second one fails when wxHTTP->GetInputStream is called. …
0
votes
1answer
53 views
Compile error in wxWidgets with VS2010 Beta 2
Hello,
i try to build wxWidgets straight from source using VS10 beta 2, but i get this error when i try to compile it:
Error 1 error MSB3073: The command "copy "" ..\..\lib\vc_ …
0
votes
2answers
48 views
GUI Toolkit for ASP.net
Do anybody know any free Ajax-based Windowing toolkit for asp.net like Coolite Toolkit (which is a .net port of Ext-JS), and of course with extensive documentation?
Coolite Toolki …
1
vote
1answer
39 views
What resources exist for WxRuby: documentation, tutorials, samples?
I found the RubyForge documentation, which is a little tricky to navigate.
There's a basic tutorial on the Ruby On Windows blog. But I've already moved on from that.
What other W …
0
votes
2answers
33 views
Proper way to get a wxWidgets pop-up window to dismis when the parent gets clicked?
Preface: wxWidgets 2.8.10 project on Windows.
I have a main application window (controls in a frame). If the user presses a hotkey, a pop-up window (implemented as a wxDialog) sho …
2
votes
1answer
68 views
How can I add a wxIcon to my frame app?
I've looked all over the net and can't seem to find a standard way of including a wxIcon in my wxWidgets app that actually works! I've tried converting the icon to an XPM and inclu …
0
votes
2answers
97 views
Rendering unicode characters correctly on textbox
I am working on a translation application in which users are allowed to give English input and I need to convert to a target language and display on a text box. I am facing problem …
2
votes
1answer
111 views
Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll
I'm trying to compile my python script into a single .exe using gui2exe (which uses py2exe to create a .exe). My program is using wxWidgets and everytime I try to compile it I get …
