Search found 28 matches

by guarib
Mon Aug 04, 2014 12:21 pm
Forum: Compiler / Linking / IDE Related
Topic: VS2010+Nuget Template: LNK1104 error when compiling sample
Replies: 1
Views: 1285

Re: VS2010+Nuget Template: LNK1104 error when compiling samp

Just abandoned the Nuget package and used the instructions of installation docs and all is fine.
by guarib
Sun Aug 03, 2014 3:48 pm
Forum: Compiler / Linking / IDE Related
Topic: VS2010+Nuget Template: LNK1104 error when compiling sample
Replies: 1
Views: 1285

VS2010+Nuget Template: LNK1104 error when compiling sample

I get the error when try to compile minimal sample using Nuget wxWindowsTemplate with DLL Release option: LNK1104: cannot open file 'wxmsw30u_core.lib' The installation path: C:\wxWidgets-3.0.1 The file exists at C:\wxWidgets-3.0.1\lib\vc_dll If compiled with DLL Debug no error but when try to run i...
by guarib
Thu Feb 02, 2012 12:30 pm
Forum: Compiler / Linking / IDE Related
Topic: Win7 always shows cmd window behind the GUI, XP works fine
Replies: 0
Views: 1173

Win7 always shows cmd window behind the GUI, XP works fine

I have an app that are running on XP for several years without any problem. But, when I try to run in Windows7 always open de command prompt behind the gui. This not happen on XP. I use cygwin with -mwindows compiler option.

wxWidgets 2.8.0

Any ideas?
by guarib
Tue Apr 06, 2010 3:46 pm
Forum: C++ Development
Topic: Control Event Table Clone
Replies: 3
Views: 1042

Tks a lot guys for the answers. I have been playing a lot with Connect. The point is: I am using wxDevCpp and making some forms. In that I am creating a table like row of controls and delegating the behaviour of that controls to a class derived from wxEvtHandler whose responsability include creating...
by guarib
Mon Apr 05, 2010 2:21 pm
Forum: C++ Development
Topic: Control Event Table Clone
Replies: 3
Views: 1042

Control Event Table Clone

I am creating dynamic controls and need clone the event table from a control to a new one. Is it possible?
by guarib
Mon Feb 22, 2010 1:45 pm
Forum: wxDev-C++
Topic: wxMemo - Set focus on creation
Replies: 1
Views: 1143

wxMemo - Set focus on creation

Err.. sorry if its a stupid question, but why wxMemo set focus at control creation?
by guarib
Mon Feb 22, 2010 1:29 pm
Forum: wxDev-C++
Topic: Control creation order changes when insert a wxNoteBook!
Replies: 1
Views: 1014

Control creation order changes when insert a wxNoteBook!

Try:

1) Add a new wxDialog.
2) Add a wxTextCtrl.
3) Add another wxTextCtrl.
4) Look at the generated code. The controls are created in reverse order (as stated on this forum).
5) Add a wxNotebook.
6) Look the generated code. The controls are created in correct order!!!!

Build 7.3.0.7
by guarib
Fri Jan 22, 2010 3:02 pm
Forum: C++ Development
Topic: How to use wxImage in console app?
Replies: 1
Views: 860

Just return false from OnInit.
by guarib
Wed Oct 29, 2008 12:27 pm
Forum: General Forum Issues
Topic: International Forum - Portuguese
Replies: 2
Views: 4323

International Forum - Portuguese

Could you create an International Forum por Portuguese?
Tks!
by guarib
Wed May 21, 2008 5:29 pm
Forum: C++ Development
Topic: manually insert (inject?) an event?
Replies: 3
Views: 1451

Just add a pending event to your window:

Code: Select all

wxCommandEvent ce(wxEVT_COMMAND_BUTTON_CLICKED, wxID_MYBUTTON);
AddPendingEvent(ce);
http://docs.wxwidgets.org/stable/wx_wxe ... ndingevent
by guarib
Wed May 21, 2008 5:04 pm
Forum: C++ Development
Topic: wxCalendarCtrl don´t show days of october 2008
Replies: 3
Views: 1256

This problem arises first on my application and to remove doubts if really was a bug I try on sample. Same problem. wxWidgets 2.8.0, Windows XP SP2, Cygwin gcc version 3.4.4. I suspect there is a relation with http://lists.wxwidgets.org/pipermail/wx-dev/2008-January/097465.html Im from Brazil and ma...
by guarib
Fri May 16, 2008 2:53 pm
Forum: C++ Development
Topic: wxCalendarCtrl don´t show days of october 2008
Replies: 3
Views: 1256

wxCalendarCtrl don´t show days of october 2008

Running the sample, when I selected October/2008 control shows only days from 1 to 11!!!

Image
by guarib
Tue Mar 06, 2007 1:37 pm
Forum: C++ Development
Topic: wx terminate my program? core dump after calling SetMenuBar
Replies: 16
Views: 3370

From SetMenuBar docs:
Under Windows, a size event is generated, so be sure to initialize data members properly before calling SetMenuBar.
by guarib
Fri Feb 23, 2007 9:58 am
Forum: C++ Development
Topic: MDI and Dialogs
Replies: 2
Views: 953

MDI and Dialogs

When a child frame shows a dialog the entiry application blocks or just the child frame blocks?