Search found 398 matches

by Avi
Wed Dec 13, 2006 5:05 pm
Forum: Announcements and Discoveries
Topic: wxWidgets 2.8.0 released
Replies: 12
Views: 5437

Great release! Thanks! :)
by Avi
Sun Jul 16, 2006 4:45 am
Forum: Compiler / Linking / IDE Related
Topic: wxMSW, what to build? And some help with special chars
Replies: 4
Views: 2118

wxUniversal means it it won't be using native Windows controls (like wxMSW), but rather a set of wxWidgets-drawn controls. I suggest sticking to the native Windows controls (for better looks and speed). wxUniversal, like wxMSW, work both in Unicode and ANSI modes. About your "characters not sho...
by Avi
Sat Jul 15, 2006 10:13 am
Forum: C++ Development
Topic: wxTextEntryDialog and wxApp::OnExit
Replies: 3
Views: 1552

Where is the delete dlg; to properly delete the dialog pointer? Can't you also set the parent window? To the main frame for example? He should NOT delete it! He should call Destroy() on the wxTextEntryDialog object... @Game_Ender: Your problem is that you need to turn off your wxTimer! I'm sure you...
by Avi
Sat Jul 15, 2006 10:03 am
Forum: C++ Development
Topic: What does wxFFile.Open expect as parameter?
Replies: 6
Views: 2266

You seem to be using a Unicoded wxWidgets build... So simply do what doublemax said... The docs have a wrong char*s everywhere... They need to update the docs to wxChar*s... ;)
by Avi
Sun Jun 18, 2006 12:08 pm
Forum: C++ Development
Topic: Pipe printf to modeless window
Replies: 10
Views: 3509

Did you already look at wxLog?
by Avi
Fri Jun 16, 2006 7:06 pm
Forum: Announcements and Discoveries
Topic: DialogBlocks 3.0 released
Replies: 1
Views: 1514

Nice changelog! good work.
by Avi
Fri Jun 16, 2006 6:58 pm
Forum: C++ Development
Topic: wxNotebook::GetPageCount()
Replies: 10
Views: 3803

by Avi
Fri Jun 16, 2006 6:41 pm
Forum: Platform Related Issues
Topic: Win98 style dialogs in Modern WinXP style environment
Replies: 14
Views: 5434

What is your compiler environment? You probably need to use resources and include <wx/msw/wx.rc>... (so that the "common controls" manifest will be included)
by Avi
Fri May 19, 2006 2:59 pm
Forum: C++ Development
Topic: Align the "Window" right (Not the layout)
Replies: 3
Views: 2378

Doublemax, I tested it here and it works. yytg, you can use it to solve your problem.
by Avi
Sat May 13, 2006 5:36 pm
Forum: Compiler / Linking / IDE Related
Topic: Help with VC++ Express
Replies: 31
Views: 7409

Question, did you set the environment variable WXWIN to your wxWidgets directory? :?:
by Avi
Sat Apr 29, 2006 2:56 am
Forum: C++ Development
Topic: file icons
Replies: 10
Views: 3285

Oh, and if you want the icons associated w/ a specific file type (e.g. .txt), you can use wxMimeTypesManager... Look at the first line of the class description...
by Avi
Sat Apr 22, 2006 3:46 pm
Forum: Platform Related Issues
Topic: wxMac 2.6.3 strange behavior
Replies: 8
Views: 3201

Looking further into this issue, I have a question for you? Are you using wxMac (carbon/classic) or wxCocoa? Because looking at /include/wx/cocoa/taskbar.h, it says: //type of taskbar item to create (currently only DOCK is implemented) enum wxTaskBarIconType { DOCK , CUSTOM_STATUSITEM // , STATUSITE...
by Avi
Sat Apr 22, 2006 3:31 pm
Forum: Platform Related Issues
Topic: wxMac 2.6.3 strange behavior
Replies: 8
Views: 3201

Check out the wxTaskBarIcon sample (under /samples/taskbar)... It seems to contain specific code for wxCocoa... :roll: Check if it works, and if it does, check why yours doesn't... ;)

EDIT: notice the part where they use wxTaskBarIcon::DOCK...
by Avi
Fri Apr 21, 2006 6:39 pm
Forum: Compiler / Linking / IDE Related
Topic: Anyone using libunicows w/ opencow.dll successfully?
Replies: 3
Views: 1598

From what I read, opencow.dll does not use unicows.dll! It is a replacement for it. NOT a complete replacement... (which can be interpreted from "Opencow does not currently support the complete API that MSLU supports")

libunicows can use either unicows.dll OR opencow.dll. :!:
by Avi
Thu Apr 13, 2006 7:11 am
Forum: C++ Development
Topic: Another way to put PNG icons in app
Replies: 2
Views: 1613

Could one use embedded XRC?