First  |  Prev |  Next  |  Last
Pages: 14 15 16 17 18 19 20 21 22 23 24 25 26 27
from DLL events
Hello: I wish use wxWidgets from DLLs. I used this code: class wxNoneAppA : public wxApp { public: virtual bool OnInit() { return true; } }; IMPLEMENT_APP_NO_MAIN( wxNoneAppA ) Then call wxInitialize() when it loads. It works fine by itself (not used in a wxApp). However, when I load from a wxAp... 2 Sep 2006 06:13
wxAccelerator Control vs Command?
Hi Ryan thank you for pointing out this issue Today I was playing with wxAcceleratorTable. The wxBook(p.180) says: "Note that on OS X, a shortcut specification involving Ctrl will actually use the Command key" I tested this assertion out, and proved it false! no the sentence is correct, in ... 28 Aug 2006 11:12
Seperate Event Handler
Hi, I want to seperate event handling from gui. Thus I have, class FileEventHandler :public wxEvtHandler{ public: //ctor public: //My events DECLARE_EVENT_TABLE() }; Now I want to call this event in the FileMenu , which extends wxMenu also in FileToolBar So I bind them like, BEGIN_E... 28 Aug 2006 09:35
IEHtmlWindow
Per section 16.3.4 of the wxPython book, I tried the following modification of listing 16.3 import wx import wx.lib.iewin class MyHtmlFrame(wx.Frame): def __init__(self, parent, title): wx.Frame.__init__(self, parent, -1, title, size=(600,400)) html = wx.lib.iewin.IEHtmlWindow(self, paren... 4 Sep 2006 16:25
Re[2]: wxArt2D fails to compile with wxWidgets 2.7.0-1
On Fri, 18 Aug 2006 21:37:27 +0200 "klaas.holwerda" <kholwerd(a)xs4all.nl> wrote: k> > F:\cvs\private\wxArt2D\wxArt2D\modules\editor\src\fontdlg.cpp(63) : k> > error C2039: 'Node' : is not a member of 'wxPathList k> > k> Yes me to, somehow the wxWidgets developers changed the internals of k> wxPathList (list to ... 22 Aug 2006 08:13
ODBC
Hello I'm trying to connect to my PostgreSQL using the wxODBC interface. The "~/.odbc.ini" is very small see below: [mydbgusti] Description = PostgreSQL Driver = PostgreSQL Trace = No TraceFile = Database = m... 22 Aug 2006 14:41
Odd link error
In trying to compile one of my apps (vc++8, wxwidgets 2.6.3, static, wxMSW, winxp), I get a strange linking error apparently related to "DECLARE_CLASS( LangDialog )" LNK2001: unresolved external symbol "public: virtual class wxClassInfo * __thiscall LangDialog::GetClassInfo(void)const " (?GetClassInfo(a)LangDialog... 22 Aug 2006 14:41
wxSizer to expand a window
Hi, I have a wxBoxSizer for wxFrame. A wxSplitterWindow is attached to wxBoxSizer. I wan't to fill the wxFrame with the wxSplitterWindow when the frame is resizing. How to do it using wxSizerFlags ? ... 18 Aug 2006 11:14
Unresolved externals
Hi, I am using 2.7.0, MSW, dynamic, multilib, compiled with Visual Studio 2005. I have built both debug and release dlls. If I link to the debug libs my app links fine. If I link to the release libs I get the following unresolved externals: Page.obj : error LNK2001: unresolved external symbol "__declspec(d... 18 Aug 2006 06:52
Problems with Debug DLL Libraries - Unreachable Code Assertertion - wxDummyConsoleApp
I am having a problem that a few people here have had. Basically, There is an assertion failure at init.cpp at line 66. -------------------8<-------------------8<-------------------8<-------------------8<-------------------8< class wxDummyConsoleApp : public wxAppConsole { public: wxDummyConsoleApp() { } ... 10 Aug 2006 10:29
First  |  Prev |  Next  |  Last
Pages: 14 15 16 17 18 19 20 21 22 23 24 25 26 27