Search found 1269 matches

by Ryan Norton
Sun Dec 03, 2006 5:18 am
Forum: C++ Development
Topic: wxSocketBase SetOption method documentation.
Replies: 6
Views: 2147

I don't see any docs for the SetOption method - are you sure you don't mean the SetFlags method (there is a bit of a tutorial here
http://forums.wxwidgets.org/viewtopic.php?t=2736
)? A little elaboration would be appreciated :D.
by Ryan Norton
Sun Dec 03, 2006 5:11 am
Forum: C++ Development
Topic: Manually 'updating' the message pump.
Replies: 1
Views: 826

This is actually an interesting topic. Later versions (I.E. all current ones AFAIK) use a global instance of a wxEventLoop (in include/evtloop.h - not documented). Its been awhile but I believe you can get this loop from a method in wxApp. Supposively you could just do this, call Dispatch() on the w...
by Ryan Norton
Wed Nov 29, 2006 5:55 am
Forum: C++ Development
Topic: wxMediaCtrl backend for flash.ocx?
Replies: 5
Views: 3482

Hi, the other backends are at the wxMediaCtrl project at wxCode, or from http://wxcode.cvs.sourceforge.net/wxcode/wxCode/components/wxmediactrl/src/msw/ Anyway, the flash one would probably be very similar to the PDF one I gave an example of - just use the same code and change the CallMethods since ...
by Ryan Norton
Fri Nov 17, 2006 5:28 am
Forum: Announcements and Discoveries
Topic: wxSkin - release 0.9 alpha
Replies: 29
Views: 14152

looks good - couple notes

1) Artifacts from window left behind
2) Pure virtual function call in sample when closing after playing
(maybe an old wxMediaCtrl bug)


VERY NEAT :D!
by Ryan Norton
Mon Oct 16, 2006 4:26 am
Forum: Platform Related Issues
Topic: wxIE and IE 7
Replies: 3
Views: 1718

If the wxIE access method is too slow for IE7 it may help to delve one level deeper and automate IE7 using the IDispatch interface and late binding from C. Whichever approach you take, IE exposes a method call GetHWND() that gives you the raw IE window handle. MS have an article on low-level COM au...
by Ryan Norton
Mon Oct 16, 2006 4:22 am
Forum: C++ Development
Topic: wxSocketBase::Initialize() in 2.6.3
Replies: 1
Views: 924

The documentation appears to be wrong... AFAIK it is required in all wx versions for using it in secondary threads
by Ryan Norton
Mon Oct 16, 2006 4:14 am
Forum: C++ Development
Topic: MediaCtrl not resizing properly
Replies: 2
Views: 1025

Re: MediaCtrl not resizing properly

Well this problem has me stumped. I'm trying to display a video using wxMediaCtrl. The problem is is that when I use wxMEDIABACKEND_DIRECTSHOW as the backend, the video does not resize to the given size. The only way it does resize is if I show the controls and then click on the video. If I use the...
by Ryan Norton
Mon Oct 16, 2006 4:10 am
Forum: C++ Development
Topic: wxWebKitCtrl Query
Replies: 3
Views: 1295

Is there is no help available on wxWebKitCtrl or it is not still designed. ? ? It is mostly like wxHtmlWindow only OSX 10.2+ specific; but you're right there doesn't appear to be documentation for it. The developer for it is still very active so I would probably just file a bug on sourceforge for i...
by Ryan Norton
Mon Oct 16, 2006 4:01 am
Forum: C++ Development
Topic: wxTreeCtrl::Create (Double free error)
Replies: 4
Views: 1379

Sorry, MainFrameRightNotebook and MainFrameLeftNotebook are the Notebook not the pages in notebook. LeftNoteBookRebuild is a page in MainFrameLeftNotebok. Eran is mostly correct - there appears to be no need to free those notebooks. You generally do not even need to free TLWs (Top Level Windows suc...
by Ryan Norton
Tue Oct 10, 2006 12:32 am
Forum: Announcements and Discoveries
Topic: wxSkin - first preview
Replies: 9
Views: 6985

Wow! Amazing work - it really works, even in Vista :D!

The see-through part of the first example skin is neat as well!
by Ryan Norton
Sun Oct 08, 2006 10:46 pm
Forum: Announcements and Discoveries
Topic: wxBlog started
Replies: 4
Views: 1728

Jorg wrote:Nice!
Is there an RSS link somewhere? I could not find one..

- Jorgen
Yeah sorry, it is now on the page
and available at

http://wxwidgets.blogspot.com/atom.xml

subscribe now :D!
by Ryan Norton
Sun Oct 08, 2006 8:30 am
Forum: Announcements and Discoveries
Topic: wxBlog started
Replies: 4
Views: 1728

wxBlog started

I've started a "wxBlog" based on some
ideas off of the developer's list at

http://wxwidgets.blogspot.com/

This aims to be a blog about development
about wxWidgets. There is currently a
post about 2.8, and a bit more :D.
by Ryan Norton
Sat Oct 07, 2006 8:14 am
Forum: C++ Development
Topic: Getting file size and modification date
Replies: 6
Views: 5308

Well, if it was just [2] I believe wxFileModificationTime would do the trick
by Ryan Norton
Sat Oct 07, 2006 7:58 am
Forum: Platform Related Issues
Topic: Mac OSX - what is your minimum requirement?
Replies: 6
Views: 1607

And the outlay to move to an Intel box is quite high for some people. Has nothing to do with what version of the OS you're running. "I don't like these new 65 mile an hour highways, I can't afford a new car" Well, perhaps the poster means that all intels come with at least 10.4 (IIRC). Ba...
by Ryan Norton
Sat Sep 16, 2006 9:28 pm
Forum: C++ Development
Topic: running wxThread adds ~10Mb to program
Replies: 1
Views: 713

What dynamic libraries does your program load after it calls wxThread?