Search found 398 matches

by Avi
Fri Nov 04, 2005 4:49 pm
Forum: Compiler / Linking / IDE Related
Topic: CMakeLists.txt for Cmake
Replies: 13
Views: 2895

Well, the solution is to simply open "minimal.dsp" (only the minimal project) instead of "minimal.dsw" (the whole minimal workspace, which includes the "needed" wxWidgets projects as well...). This way, it creates a new VS.NET solution with only that project file. ;) ED...
by Avi
Tue Oct 11, 2005 9:39 pm
Forum: Platform Related Issues
Topic: wxStaticText and CreateWindowEx
Replies: 4
Views: 2208

The real problem is you creating a wxWindow-derived object (wxDialog derives from wxWindow) on the stack instead of the heap. The only correct way to use controls in wxWidgets (any class derived from wxWindow), is to allocate them on the heap... (using the 'new' C++ keyword)
by Avi
Wed Oct 05, 2005 11:21 am
Forum: C++ Development
Topic: Usage of wxInt16 and int
Replies: 7
Views: 2345

Actually LPCTSTR is typedef'ed to const TCHAR*...
So you should use const wxChar* instead...

Also UINT is 32 bits as far as I know (modern compilers treat 'int' as 32bits), so you should use wxUint32.

Hope this clarifies stuff...
by Avi
Tue Oct 04, 2005 8:18 am
Forum: Compiler / Linking / IDE Related
Topic: Missing "aygshell.h" = Projects-never up-to-date
Replies: 3
Views: 1553

I was wondering about the exact same issue yesterday. I'll be glad if somebody could point out the reason for this... The file seems to be needed because of wx/msw/wx.rc...
by Avi
Tue Oct 04, 2005 8:00 am
Forum: C++ Development
Topic: 2.4.2 vs 2.6.2 combobox documentation differences
Replies: 7
Views: 1822

I agree, having an "inherited members" list would be great...
by Avi
Mon Oct 03, 2005 8:16 pm
Forum: C++ Development
Topic: 2.4.2 vs 2.6.2 combobox documentation differences
Replies: 7
Views: 1822

wxComboBox is derived from wxControlWithItems, which has the functions you need documented... So it's safe to say you can use them...

Tip: always check the documentation of the "base" (not sure how to call it in English :)) classes...
by Avi
Sun Jul 17, 2005 7:49 am
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 2.6.1 + MSVC 2005b2 problem too
Replies: 8
Views: 2368

Maybe you should ask the bakefile developers to add a nice "Microsoft Visual Studio 2002/3/5" targets...? :)
by Avi
Sun Jul 17, 2005 7:46 am
Forum: General Development
Topic: How about bitmaps in menus?
Replies: 13
Views: 3752

wxMenuItem::SetBitmap ;) (Only in Windows and GTK currently)

EDIT: or did I misunderstand you? What do you mean by "attached"? On the left? On the right? In the middle of the text?
by Avi
Sat Jul 16, 2005 10:39 pm
Forum: General Development
Topic: Wrong default GUI font?
Replies: 8
Views: 3465

Something that clears some stuff up:
http://blogs.msdn.com/oldnewthing/archi ... 36435.aspx

Read the last 2-3 comments as well... they help! :roll:

Bottom line, it seems Microsoft has misleading documentation.... :roll:
by Avi
Sat Jul 16, 2005 9:40 am
Forum: C++ Development
Topic: How umlaut (
Replies: 4
Views: 1734

Can't you use Unicode for the job? Does wxWidgets support Unicoded strings when loading XRC files? :?
by Avi
Sat Jul 16, 2005 9:39 am
Forum: C++ Development
Topic: RTL support in wxWidgets
Replies: 3
Views: 1213

I support this idea. Would be great if wxWidgets supported Right-To-Left!
by Avi
Thu Jul 07, 2005 11:39 pm
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 2.6.1 + MSVC 2005b2????
Replies: 8
Views: 3461

Instead of openning .\samples\minimal\minimal.dsw... try .\samples\minimal\minimal.dsp... You don't need to convert the whole VC6 workspace... the single VC6 project should be enough... (then, you will have a solution w/ only one project...) It works this way for me on VS2003
by Avi
Thu Jul 07, 2005 1:40 pm
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 2.6.1 + MSVC 2005b2????
Replies: 8
Views: 3461

I think Ryan Norton already compiled wxWidgets w/ the new Visual Studio 2005 Beta 2... He contributed the following patch: http://sourceforge.net/tracker/index.php?func=detail&aid=1230012&group_id=9863&atid=309863 You might want to try and contact him... (he's registered and VERY active ...
by Avi
Thu Jul 07, 2005 1:32 pm
Forum: Announcements and Discoveries
Topic: UPX GUI Frontend
Replies: 22
Views: 7081

lowjoel wrote:just a question... should i inform the upx developers?
Of course. I say, open a sourceforge.net project... call it upxgui or something... then, contact the official UPX developers and tell them about your project.. :)
by Avi
Wed Jul 06, 2005 6:25 pm
Forum: Announcements and Discoveries
Topic: wxMediaCtrl upgrade (WITH SCREENSHOTS!)
Replies: 4
Views: 1622

Very nice! Just wondering... Did you test it when Quicktime 7 Preview is installed? :)