Discussion:
[MSW] Dialog not laid out correctly until it's resized
Nathan Ridge
2014-06-01 05:11:16 UTC
Permalink
Hello,

I'm experiencing a strange problem on MSW where, after adding some
controls to a dialog (specifically to a page inside a wxWizard),
the contents of the dialog are not laid out correctly until I
resize the dialog.

By "not laid out correctly", I mean that a panel is positioned
incorrectly and its contents are cut off.

By "resize" I mean either resizing it with the mouse as a user,
or calling SetSize() with a size different than the current size
(for example, one pixel greater). Calling SetSize() with the
current size does not fix the problem, even if I pass
wxSIZE_FORCE or wxSIZE_FORCE_EVENT.

It works perfectly with GTK - only MSW has this problem.

It does seem to be related to painting, as calling Refresh() and
Update() on the dialog does not help (nor does dragging the dialog
around on the screen, or dragging it off-screen and back on).

It does not seem to be related to sizer layout either, as
GetPosition() on the sizer item that is wrongly placed returns the
correct value (i.e. not what I see on the screen). I've also called
Layout() on all relevant sizers.

To try to understand why SetSize() makes the problem go away, I
looked its implementation on MSW. It seems to be doing two things:

   1) firing a wxSizeEvent
   2) calling the MoveWindow() API

I tried doing these things independent of each other, to see which
makes the problem go away, and it's the MoveWindow() call. Firing a
wxSizeEvent has no effect. The MoveWindow() call also has no effect
if I pass in the window's current size - I need to pass in a
different size.

I'm at a loss as to how to debug the problem further.

Has anyone seen behaviour like this before? Any ideas on how to
fix it (other than resizing the window to a slightly different size,
of course)?

Thanks,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Nathan Ridge
2014-06-01 05:14:17 UTC
Permalink
Post by Nathan Ridge
It does seem to be related to painting, as calling Refresh() and
Update() on the dialog does not help (nor does dragging the dialog
around on the screen, or dragging it off-screen and back on).
That should say, "It does NOT seem to be related to painting."

Also, a detail I forgot to mention is that I'm pretty sure this used
to work correctly with a previous version of wxWidgets - I don't
recall exactly which, possibly 2.9.4 or thereabouts. Currently I'm
testing with 3.0.0.

Thanks,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Eran Ifrah
2014-06-01 05:20:28 UTC
Permalink
Assuming you are referring to the problem that a dialog starts with a given
size and once you try to resize it (even a pixel) it "jumps" to its initial
size, then yes, I have seen this.

It often happened to me when I try to set a size to the dialog (or any TLW
for that matters)
If I set the size to -1,-1 and then call GetSizer()->Realize(this); at the
end of the constructor (after I placed all the controls)
it works.
If you want an initial size of your choice and not what the sizer decides
for you, set should set a size to one of the child control
Post by Nathan Ridge
Post by Nathan Ridge
It does seem to be related to painting, as calling Refresh() and
Update() on the dialog does not help (nor does dragging the dialog
around on the screen, or dragging it off-screen and back on).
That should say, "It does NOT seem to be related to painting."
Also, a detail I forgot to mention is that I'm pretty sure this used
to work correctly with a previous version of wxWidgets - I don't
recall exactly which, possibly 2.9.4 or thereabouts. Currently I'm
testing with 3.0.0.
Thanks,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.
or visit http://groups.google.com/group/wx-users
--
Eran Ifrah
Author of codelite, a cross platform open source C/C++ IDE:
http://www.codelite.org
wxCrafter, a wxWidgets RAD: http://wxcrafter.codelite.org
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Nathan Ridge
2014-06-01 06:11:20 UTC
Permalink
Post by Eran Ifrah
Assuming you are referring to the problem that a dialog starts with a
given size and once you try to resize it (even a pixel) it "jumps" to
its initial size, then yes, I have seen this.
No, this is not my problem.

In my case, the dialog's initial size is fine and resizing it is also
fine.

However, later, when I add more controls to it, it does not lay out
the added controls correctly until I resize the dialog.

Regards,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Jan Engelhardt
2014-06-01 09:58:57 UTC
Permalink
Post by Nathan Ridge
Post by Eran Ifrah
Assuming you are referring to the problem that a dialog starts with a
given size and once you try to resize it (even a pixel) it "jumps" to
its initial size, then yes, I have seen this.
No, this is not my problem.
In my case, the dialog's initial size is fine and resizing it is also
fine.
However, later, when I add more controls to it, it does not lay out
the added controls correctly until I resize the dialog.
Did you call Layout() after adding the controls?
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Nathan Ridge
2014-06-01 20:10:54 UTC
Permalink
Post by Jan Engelhardt
Post by Nathan Ridge
In my case, the dialog's initial size is fine and resizing it is also
fine.
However, later, when I add more controls to it, it does not lay out
the added controls correctly until I resize the dialog.
Did you call Layout() after adding the controls?
Yes. I've called Layout() on every sizer from the one directly
containing the misplaced controls, to the wizard page's sizer,
and even on the wizard's sizer itself.

Also, as I've said, I don't see this problem on GTK. Presumably
if the problem was related to not calling Layout() on a sizer,
I'd see the problem on GTK as well.

Regards,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Rufus Smith
2014-06-02 16:21:24 UTC
Permalink
I just recently discovered the windows style parameter:

wxFULL_REPAINT_ON_RESIZE

I wonder if that would help here? I found my panel widgets would be chopped
up as I resized a frame, before I added this.

Rufus
Post by Nathan Ridge
By "not laid out correctly", I mean that a panel is positioned
incorrectly and its contents are cut off.
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Nathan Ridge
2014-06-02 16:35:42 UTC
Permalink
Post by Rufus Smith
wxFULL_REPAINT_ON_RESIZE
I wonder if that would help here? I found my panel widgets would be chopped
up as I resized a frame, before I added this.
I have tried this, but unfortunately it does not help.

Thanks,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
John Roberts
2014-06-03 01:00:09 UTC
Permalink
Have you tried wxWindow::InvalidateBestSize on the dialog or its main
sizer followed by a manufactured size event or another layout call.
Regards, John
Post by Nathan Ridge
Post by Rufus Smith
wxFULL_REPAINT_ON_RESIZE
I wonder if that would help here? I found my panel widgets would be chopped
up as I resized a frame, before I added this.
I have tried this, but unfortunately it does not help.
Thanks,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Nathan Ridge
2014-06-04 01:13:54 UTC
Permalink
Post by John Roberts
Have you tried wxWindow::InvalidateBestSize on the dialog or its main
sizer followed by a manufactured size event or another layout call.
Regards, John
Unfortunately, this did not work either.

Thanks,
Nate
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
John
2014-06-04 04:51:39 UTC
Permalink
Post by Nathan Ridge
Post by John Roberts
Have you tried wxWindow::InvalidateBestSize on the dialog or its main
sizer followed by a manufactured size event or another layout call.
Regards, John
Unfortunately, this did not work either.
Thanks,
Nate
Nathan I just re-read the thread and I see your dialog is a wxWizard.
Maybe you know this but the wizard will set the page size from the
wizard pages initially and will not alter the page size when you later
add extra controls to one of the pages/panels. I think accessing
wxWizard::GetPageAreaSizer() is necessary to make changes. At least it
is worth reading the documentation on GetPageAreaSizer.

Regards, John
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Marian 'VooDooMan' Meravy
2014-06-09 00:32:00 UTC
Permalink
Greetings,

sorry for the late response, but now I am facing the very same problem.

I have my frame derived from wxFrame, and inside of it there is panel
derived from wxPanel, with sizers of controls.

When I build up panel, with sizers and controls, in the panel
constructor, I just call at the end of panel's constructor:

m_frame->SetMinClientSize(sz_root->GetMinSize());

where:
1. m_frame is parent frame
2. sz_root is root size of all sizers in the panel.

I have no luck with Layout() and Fit[Inside]() calls, since I need to
adjust minimal width, to get more space for status bars columns.

Hope this helps.

best,
vdm
.
Marian 'VooDooMan' Meravy
2014-06-09 01:30:54 UTC
Permalink
Or even better, inside of frame, after panel inside frame is properly
constructed you can use:

wxSize sz=panel->GetSizer()->GetMinSize();
SetClientSize(ClientToWindowSize(sz));

best,
vdm
.
Post by Marian 'VooDooMan' Meravy
Greetings,
sorry for the late response, but now I am facing the very same problem.
I have my frame derived from wxFrame, and inside of it there is panel
derived from wxPanel, with sizers of controls.
When I build up panel, with sizers and controls, in the panel
m_frame->SetMinClientSize(sz_root->GetMinSize());
1. m_frame is parent frame
2. sz_root is root size of all sizers in the panel.
I have no luck with Layout() and Fit[Inside]() calls, since I need to
adjust minimal width, to get more space for status bars columns.
Hope this helps.
best,
vdm
.
Marian 'VooDooMan' Meravy
2014-06-09 02:14:25 UTC
Permalink
Oh, I must be overworked, of course it should be:

wxSize sz=panel->GetSizer()->GetMinSize();
SetClientSize(sz);

Of course, ideally is to use Layout(); and Fit(); as someone pointed
out, but sometimes, you just can't use them.

best,
vdm
.
Post by Marian 'VooDooMan' Meravy
Or even better, inside of frame, after panel inside frame is properly
wxSize sz=panel->GetSizer()->GetMinSize();
SetClientSize(ClientToWindowSize(sz));
best,
vdm
.
Jamiil
2014-06-09 05:13:12 UTC
Permalink
Is there a manual for using wxWidgets with Visual Studio 2013?

Thanks
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Jamiil
2014-06-09 06:44:09 UTC
Permalink
After installing wxMSW-3.0.0-Setup, do I still need to compile wxWidgets?
I intend to use it with vs2013, is there a pre-compiled version of wxWidgets
that I could use?

Thanks!
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Igor Korot
2014-06-09 07:08:05 UTC
Permalink
Hi, Jamill,
Post by Jamiil
After installing wxMSW-3.0.0-Setup, do I still need to compile wxWidgets?
yes, you still need to compile the library.
Compilation is very easy. Just open an appropriate solution file and
do "Build->Batch Build...".

Thank you.
Post by Jamiil
I intend to use it with vs2013, is there a pre-compiled version of wxWidgets
that I could use?
Thanks!
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.
or visit http://groups.google.com/group/wx-users
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
ArbolOne DotOrg
2014-06-12 00:48:53 UTC
Permalink
Thank so much for your help.
In regards to your statement "Just open an appropriate solution file and",
which of the below files would be the appropriate file if I am using Visual
Studio Express 2013. Thanks in advance.

Directory: D:\wxWidgets-3.0.0\build\msw


Mode LastWriteTime Length Name
---- ------------- ------ ----
-a--- 11/11/2013 8:10 AM 4873 config.bcc
-a--- 11/11/2013 8:10 AM 4375 config.gcc
-a--- 11/11/2013 8:10 AM 4461 config.vc
-a--- 11/11/2013 8:10 AM 3843 config.wat
-a--- 6/11/2014 8:30 PM 0 dir.txt
-a--- 11/11/2013 8:10 AM 684256 makefile.bcc
-a--- 11/11/2013 8:10 AM 583537 makefile.gcc
-a--- 11/11/2013 8:10 AM 724740 makefile.vc
-a--- 11/11/2013 8:10 AM 640222 makefile.wat
-a--- 11/11/2013 8:10 AM 4562 wx.dsw
-a--- 11/11/2013 8:10 AM 24474 wx_adv.dsp
-a--- 11/11/2013 8:10 AM 16965 wx_aui.dsp
-a--- 11/11/2013 8:10 AM 38622 wx_base.dsp
-a--- 11/11/2013 8:10 AM 82144 wx_core.dsp
-a--- 11/11/2013 8:10 AM 10887 wx_dll.dsw
-a--- 11/11/2013 8:10 AM 15588 wx_gl.dsp
-a--- 11/11/2013 8:10 AM 19291 wx_html.dsp
-a--- 11/11/2013 8:10 AM 15994 wx_media.dsp
-a--- 11/11/2013 8:10 AM 17201 wx_net.dsp
-a--- 11/11/2013 8:10 AM 17522 wx_propgrid.dsp
-a--- 11/11/2013 8:10 AM 15772 wx_qa.dsp
-a--- 11/11/2013 8:10 AM 17582 wx_ribbon.dsp
-a--- 11/11/2013 8:10 AM 19497 wx_richtext.dsp
-a--- 11/11/2013 8:10 AM 17892 wx_stc.dsp
-a--- 11/11/2013 8:10 AM 37131 wx_vc10.sln
-a--- 11/11/2013 8:10 AM 50958 wx_vc10_adv.vcxproj
-a--- 11/11/2013 8:10 AM 14348 wx_vc10_adv.vcxproj.filters
-a--- 11/11/2013 8:10 AM 45324 wx_vc10_aui.vcxproj
-a--- 11/11/2013 8:10 AM 3330 wx_vc10_aui.vcxproj.filters
-a--- 11/11/2013 8:10 AM 62075 wx_vc10_base.vcxproj
-a--- 11/11/2013 8:10 AM 34637 wx_vc10_base.vcxproj.filters
-a--- 11/11/2013 8:10 AM 132575 wx_vc10_core.vcxproj
-a--- 11/11/2013 8:10 AM 96349 wx_vc10_core.vcxproj.filters
-a--- 11/11/2013 8:10 AM 44530 wx_vc10_gl.vcxproj
-a--- 11/11/2013 8:10 AM 1885 wx_vc10_gl.vcxproj.filters
-a--- 11/11/2013 8:10 AM 47048 wx_vc10_html.vcxproj
-a--- 11/11/2013 8:10 AM 6953 wx_vc10_html.vcxproj.filters
-a--- 11/11/2013 8:10 AM 44791 wx_vc10_media.vcxproj
-a--- 11/11/2013 8:10 AM 2011 wx_vc10_media.vcxproj.filters
-a--- 11/11/2013 8:10 AM 45748 wx_vc10_net.vcxproj
-a--- 11/11/2013 8:10 AM 4019 wx_vc10_net.vcxproj.filters
-a--- 11/11/2013 8:10 AM 45904 wx_vc10_propgrid.vcxproj
-a--- 11/11/2013 8:10 AM 3673
wx_vc10_propgrid.vcxproj.filters
-a--- 11/11/2013 8:10 AM 44565 wx_vc10_qa.vcxproj
-a--- 11/11/2013 8:10 AM 1920 wx_vc10_qa.vcxproj.filters
-a--- 11/11/2013 8:10 AM 45801 wx_vc10_ribbon.vcxproj
-a--- 11/11/2013 8:10 AM 3814 wx_vc10_ribbon.vcxproj.filters
-a--- 11/11/2013 8:10 AM 47261 wx_vc10_richtext.vcxproj
-a--- 11/11/2013 8:10 AM 5576
wx_vc10_richtext.vcxproj.filters
-a--- 11/11/2013 8:10 AM 47799 wx_vc10_stc.vcxproj
-a--- 11/11/2013 8:10 AM 2084 wx_vc10_stc.vcxproj.filters
-a--- 11/11/2013 8:10 AM 45175 wx_vc10_webview.vcxproj
-a--- 11/11/2013 8:10 AM 2510 wx_vc10_webview.vcxproj.filters
-a--- 11/11/2013 8:10 AM 25441 wx_vc10_wxexpat.vcxproj
-a--- 11/11/2013 8:10 AM 750 wx_vc10_wxexpat.vcxproj.filters
-a--- 11/11/2013 8:10 AM 27414 wx_vc10_wxjpeg.vcxproj
-a--- 11/11/2013 8:10 AM 5359 wx_vc10_wxjpeg.vcxproj.filters
-a--- 11/11/2013 8:10 AM 25680 wx_vc10_wxpng.vcxproj
-a--- 11/11/2013 8:10 AM 2003 wx_vc10_wxpng.vcxproj.filters
-a--- 11/11/2013 8:10 AM 34290 wx_vc10_wxregex.vcxproj
-a--- 11/11/2013 8:10 AM 1306 wx_vc10_wxregex.vcxproj.filters
-a--- 11/11/2013 8:10 AM 45443 wx_vc10_wxscintilla.vcxproj
-a--- 11/11/2013 8:10 AM 15856
wx_vc10_wxscintilla.vcxproj.filters
-a--- 11/11/2013 8:10 AM 28753 wx_vc10_wxtiff.vcxproj
-a--- 11/11/2013 8:10 AM 4644 wx_vc10_wxtiff.vcxproj.filters
-a--- 11/11/2013 8:10 AM 25950 wx_vc10_wxzlib.vcxproj
-a--- 11/11/2013 8:10 AM 2014 wx_vc10_wxzlib.vcxproj.filters
-a--- 11/11/2013 8:10 AM 44649 wx_vc10_xml.vcxproj
-a--- 11/11/2013 8:10 AM 2087 wx_vc10_xml.vcxproj.filters
-a--- 11/11/2013 8:10 AM 52338 wx_vc10_xrc.vcxproj
-a--- 11/11/2013 8:10 AM 16277 wx_vc10_xrc.vcxproj.filters
-a--- 11/11/2013 8:10 AM 19083 wx_vc7.sln
-a--- 11/11/2013 8:10 AM 24432 wx_vc7_adv.vcproj
-a--- 11/11/2013 8:10 AM 17520 wx_vc7_aui.vcproj
-a--- 11/11/2013 8:10 AM 38033 wx_vc7_base.vcproj
-a--- 11/11/2013 8:10 AM 77153 wx_vc7_core.vcproj
-a--- 11/11/2013 8:10 AM 16288 wx_vc7_gl.vcproj
-a--- 11/11/2013 8:10 AM 19688 wx_vc7_html.vcproj
-a--- 11/11/2013 8:10 AM 16495 wx_vc7_media.vcproj
-a--- 11/11/2013 8:10 AM 17712 wx_vc7_net.vcproj
-a--- 11/11/2013 8:10 AM 17797 wx_vc7_propgrid.vcproj
-a--- 11/11/2013 8:10 AM 16424 wx_vc7_qa.vcproj
-a--- 11/11/2013 8:10 AM 17941 wx_vc7_ribbon.vcproj
-a--- 11/11/2013 8:10 AM 19511 wx_vc7_richtext.vcproj
-a--- 11/11/2013 8:10 AM 18004 wx_vc7_stc.vcproj
-a--- 11/11/2013 8:10 AM 16978 wx_vc7_webview.vcproj
-a--- 11/11/2013 8:10 AM 7913 wx_vc7_wxexpat.vcproj
-a--- 11/11/2013 8:10 AM 10678 wx_vc7_wxjpeg.vcproj
-a--- 11/11/2013 8:10 AM 8424 wx_vc7_wxpng.vcproj
-a--- 11/11/2013 8:10 AM 11945 wx_vc7_wxregex.vcproj
-a--- 11/11/2013 8:10 AM 23576 wx_vc7_wxscintilla.vcproj
-a--- 11/11/2013 8:10 AM 11253 wx_vc7_wxtiff.vcproj
-a--- 11/11/2013 8:10 AM 8582 wx_vc7_wxzlib.vcproj
-a--- 11/11/2013 8:10 AM 16512 wx_vc7_xml.vcproj
-a--- 11/11/2013 8:10 AM 25900 wx_vc7_xrc.vcproj
-a--- 11/11/2013 8:10 AM 19105 wx_vc8.sln
-a--- 11/11/2013 8:10 AM 27463 wx_vc8_adv.vcproj
-a--- 11/11/2013 8:10 AM 19988 wx_vc8_aui.vcproj
-a--- 11/11/2013 8:10 AM 42245 wx_vc8_base.vcproj
-a--- 11/11/2013 8:10 AM 84476 wx_vc8_core.vcproj
-a--- 11/11/2013 8:10 AM 18669 wx_vc8_gl.vcproj
-a--- 11/11/2013 8:10 AM 22338 wx_vc8_html.vcproj
-a--- 11/11/2013 8:10 AM 18894 wx_vc8_media.vcproj
-a--- 11/11/2013 8:10 AM 20211 wx_vc8_net.vcproj
-a--- 11/11/2013 8:10 AM 20285 wx_vc8_propgrid.vcproj
-a--- 11/11/2013 8:10 AM 18804 wx_vc8_qa.vcproj
-a--- 11/11/2013 8:10 AM 20445 wx_vc8_ribbon.vcproj
-a--- 11/11/2013 8:10 AM 22101 wx_vc8_richtext.vcproj
-a--- 11/11/2013 8:10 AM 20394 wx_vc8_stc.vcproj
-a--- 11/11/2013 8:10 AM 19415 wx_vc8_webview.vcproj
-a--- 11/11/2013 8:10 AM 9996 wx_vc8_wxexpat.vcproj
-a--- 11/11/2013 8:10 AM 13015 wx_vc8_wxjpeg.vcproj
-a--- 11/11/2013 8:10 AM 10571 wx_vc8_wxpng.vcproj
-a--- 11/11/2013 8:10 AM 14193 wx_vc8_wxregex.vcproj
-a--- 11/11/2013 8:10 AM 26530 wx_vc8_wxscintilla.vcproj
-a--- 11/11/2013 8:10 AM 13548 wx_vc8_wxtiff.vcproj
-a--- 11/11/2013 8:10 AM 10733 wx_vc8_wxzlib.vcproj
-a--- 11/11/2013 8:10 AM 18902 wx_vc8_xml.vcproj
-a--- 11/11/2013 8:10 AM 29040 wx_vc8_xrc.vcproj
-a--- 11/11/2013 8:10 AM 19106 wx_vc9.sln
-a--- 11/11/2013 8:10 AM 27353 wx_vc9_adv.vcproj
-a--- 11/11/2013 8:10 AM 19878 wx_vc9_aui.vcproj
-a--- 11/11/2013 8:10 AM 42135 wx_vc9_base.vcproj
-a--- 11/11/2013 8:10 AM 84366 wx_vc9_core.vcproj
-a--- 11/11/2013 8:10 AM 18559 wx_vc9_gl.vcproj
-a--- 11/11/2013 8:10 AM 22228 wx_vc9_html.vcproj
-a--- 11/11/2013 8:10 AM 18784 wx_vc9_media.vcproj
-a--- 11/11/2013 8:10 AM 20101 wx_vc9_net.vcproj
-a--- 11/11/2013 8:10 AM 20175 wx_vc9_propgrid.vcproj
-a--- 11/11/2013 8:10 AM 18694 wx_vc9_qa.vcproj
-a--- 11/11/2013 8:10 AM 20335 wx_vc9_ribbon.vcproj
-a--- 11/11/2013 8:10 AM 21991 wx_vc9_richtext.vcproj
-a--- 11/11/2013 8:10 AM 20284 wx_vc9_stc.vcproj
-a--- 11/11/2013 8:10 AM 19305 wx_vc9_webview.vcproj
-a--- 11/11/2013 8:10 AM 9886 wx_vc9_wxexpat.vcproj
-a--- 11/11/2013 8:10 AM 12905 wx_vc9_wxjpeg.vcproj
-a--- 11/11/2013 8:10 AM 10461 wx_vc9_wxpng.vcproj
-a--- 11/11/2013 8:10 AM 14083 wx_vc9_wxregex.vcproj
-a--- 11/11/2013 8:10 AM 26420 wx_vc9_wxscintilla.vcproj
-a--- 11/11/2013 8:10 AM 13438 wx_vc9_wxtiff.vcproj
-a--- 11/11/2013 8:10 AM 10623 wx_vc9_wxzlib.vcproj
-a--- 11/11/2013 8:10 AM 18792 wx_vc9_xml.vcproj
-a--- 11/11/2013 8:10 AM 28930 wx_vc9_xrc.vcproj
-a--- 11/11/2013 8:10 AM 16624 wx_webview.dsp
-a--- 11/11/2013 8:10 AM 5909 wx_wxexpat.dsp
-a--- 11/11/2013 8:10 AM 8961 wx_wxjpeg.dsp
-a--- 11/11/2013 8:10 AM 6496 wx_wxpng.dsp
-a--- 11/11/2013 8:10 AM 9633 wx_wxregex.dsp
-a--- 11/11/2013 8:10 AM 21963 wx_wxscintilla.dsp
-a--- 11/11/2013 8:10 AM 9385 wx_wxtiff.dsp
-a--- 11/11/2013 8:10 AM 6626 wx_wxzlib.dsp
-a--- 11/11/2013 8:10 AM 15773 wx_xml.dsp
-a--- 11/11/2013 8:10 AM 26271 wx_xrc.dsp
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Continue reading on narkive:
Loading...