Search found 32 matches

by asp
Sat Mar 21, 2009 2:14 pm
Forum: Announcements and Discoveries
Topic: wxIFM is back. Sort of.
Replies: 6
Views: 4920

I'm glad to hear that!

Could you provide a precompiled binary to see it in action?
by asp
Fri Dec 14, 2007 3:25 pm
Forum: General Development
Topic: i18n
Replies: 1
Views: 887

i18n

Hello,

Is it possible to have different translations for a single word? In spanish, depending on the context, "All" can mean "Toda" or "Todo".
by asp
Wed Apr 12, 2006 1:08 pm
Forum: C++ Development
Topic: drop shadow on wxPopupWindow
Replies: 2
Views: 1577

You can create a drop shadow, using the win32 api, by adding the CS_DROPSHADOW flag to the win32 class style. However, that only works in Windows XP.
by asp
Sun Dec 25, 2005 7:38 pm
Forum: Announcements and Discoveries
Topic: wxIFM Patches
Replies: 5
Views: 3144

I have found a new bug: if you undock a window and then you minimize the frame, when the frame is restored, the undocked window is not shown.

Regards
by asp
Sun Nov 20, 2005 8:45 pm
Forum: C++ Development
Topic: wxListCtrl woes
Replies: 10
Views: 2625

I think it's not possible to do that easily. What I do is to catch the size event and call SetColumnWidth. If there is a simpler way to achieve this, I am interested too.
by asp
Wed Nov 09, 2005 10:53 am
Forum: Announcements and Discoveries
Topic: wxIFM 1.0.5 - docking library for wxWidgets
Replies: 93
Views: 40228

Ok. Thanks! :)
by asp
Tue Nov 08, 2005 6:33 pm
Forum: Announcements and Discoveries
Topic: wxIFM 1.0.5 - docking library for wxWidgets
Replies: 93
Views: 40228

Thank you for this library. It looks great. I am considering using it in my application, but I have a question: Is it possible to load/save the layout? Also, I have found a bug. If you press Alt+Tab to switch to another application while you are dragging a window, then it makes strange things when y...
by asp
Fri Nov 04, 2005 9:39 pm
Forum: C++ Development
Topic: wxPanel from handle
Replies: 1
Views: 1210

I think that's not possible, because a panel is not a top level window.

Maybe something like this could work:

Code: Select all

void Dialog1::OnOpenDialog2(wxCommandEvent& e){
   ::DialogBox(::GetModuleHandle(0), ..., (HWND) GetHandle(), ...);
}
by asp
Sun Oct 30, 2005 1:23 pm
Forum: Platform Related Issues
Topic: Assert failure when making drag and drop
Replies: 2
Views: 1553

The only thing I have is a debug report with the call stack. All the calls in the stack are internal. The line which triggers the assert failure is this: wxDropSource dragSource(this); where this is a frame. He doesn't know how to reproduce the problem. He says that happens the first time he tries t...
by asp
Fri Oct 28, 2005 10:53 am
Forum: Platform Related Issues
Topic: Assert failure when making drag and drop
Replies: 2
Views: 1553

Assert failure when making drag and drop

Hello A user of my program has reported this assert failure when making drag and drop from a wxTreeCtrl to a wxListView. "../../src/msw/ole/dataobject.cpp (998):assert "wxAssertFailure" failed: wrong HDrop handle" I can't reproduce that behaviour. The application is compiled with...
by asp
Thu Sep 01, 2005 12:37 pm
Forum: Platform Related Issues
Topic: Assert failure in wxTimer (wxMSW)
Replies: 3
Views: 1476

Yes, the vars are initialized correctly and I stop the timers before destroying them. Normally, there are about 3-4 timers enabled. The problem is really hard to reproduce, in fact I can't, so I don't know which timer triggers the assert failure.
by asp
Thu Sep 01, 2005 10:55 am
Forum: Platform Related Issues
Topic: Assert failure in wxTimer (wxMSW)
Replies: 3
Views: 1476

Assert failure in wxTimer (wxMSW)

Hello

Some users of my application have reported this assert failure:
bogus timer id in wxTimerProc
I can't reproduce this problem, even running the program 24 hours a day during several weeks.

Does anyone know how this problem can be solved?

Thanks
by asp
Mon Jul 25, 2005 12:33 pm
Forum: General Development
Topic: icons for use in own applications (new file, open file etc.)
Replies: 7
Views: 2128

I use glyfx's icons (http://www.glyfx.com). They have a free set with the most used icons, which look like XP ones.
by asp
Thu Mar 31, 2005 8:52 am
Forum: Compiler / Linking / IDE Related
Topic: Choosing a compiler
Replies: 11
Views: 4338

Thanks krysa!
by asp
Wed Mar 30, 2005 10:38 am
Forum: Compiler / Linking / IDE Related
Topic: Choosing a compiler
Replies: 11
Views: 4338

Re: Choosing a compiler

Many questions are already answered in the wx/Wiki pages like this one: http://wiki.wxwidgets.org/wiki.pl?Installing_WxWin_For_MS_Free_Tools Hmm, that page has been updated since the last time I read it. I will try it. By the way, the link to cvtres seems to be a patch for Visual Studio. Is it ok t...