Search found 39 matches

by ConnorMacLeod
Thu Sep 01, 2005 6:56 am
Forum: General Development
Topic: IMDb connection through a program (How-to?)
Replies: 9
Views: 2683

vdell wrote:Btw. I solved the problem with Win32 API for now.
I very much interested in your solution because i'm facing the same problems. Can you post your code here?

Thank you
Connor
by ConnorMacLeod
Mon Jul 25, 2005 10:10 am
Forum: Open Discussion
Topic: music ? when programming?
Replies: 12
Views: 4264

Salsa all time :).
by ConnorMacLeod
Wed Jul 06, 2005 5:54 pm
Forum: C++ Development
Topic: wxHTTP how to use
Replies: 4
Views: 1421

I'm trying the same but won't get it right. Please post the code here.

Thanks
Connor
by ConnorMacLeod
Thu May 26, 2005 1:42 pm
Forum: C++ Development
Topic: [2.6.0] Functionality of wxGLCanvas::SetViewport
Replies: 4
Views: 1490

I think it's more a standard OpenGL function. (Sets the size of the OGL area. Normally used after resizing a window. Maybe this is done automatically in wxOGLCanvas.)
by ConnorMacLeod
Wed Apr 20, 2005 10:31 am
Forum: C++ Development
Topic: wxBitmap Constructor does not work
Replies: 13
Views: 3123

^ the above doesn't work, because you still need to create a wxbitmap from the wximage in order to draw it. You have not carefully read what i was saying: "I've done this in my App with success ." If you need a wxBitmap just do: [syntax="c"] wxBitmap( my_wxImage )[/syntax] and y...
by ConnorMacLeod
Tue Apr 19, 2005 9:00 am
Forum: C++ Development
Topic: How to create validators
Replies: 1
Views: 802

There comes one with wxWidgets:

look in the sample directory under "validate"
by ConnorMacLeod
Tue Apr 19, 2005 8:58 am
Forum: C++ Development
Topic: wxBitmap Constructor does not work
Replies: 13
Views: 3123

Another way to do it:

- Make a wxImage with the exact values (depth, width, height ...)
- Then use SetData to give it the char* pointer.

If done this in my App with success.

Cheers
Connor
by ConnorMacLeod
Fri Apr 01, 2005 2:03 pm
Forum: C++ Development
Topic: How to use wxLogWindow?
Replies: 7
Views: 3726

I always use wxLogDebug which places debug output in my IDE/console outputwindow.
by ConnorMacLeod
Fri Apr 01, 2005 10:34 am
Forum: C++ Development
Topic: How to emulate a button click ?
Replies: 6
Views: 2092

Just put a call of the button function (OnButtonClick()) in the event handling method of the key.
by ConnorMacLeod
Fri Apr 01, 2005 9:56 am
Forum: C++ Development
Topic: wxKeyEvent and frame focus
Replies: 2
Views: 1309

The events are consumed by the controls so that your frame/dialog doesn't get any.
A fast solution is to put a menubar into your frame and define your ESC button there.
But there is another way without menubar (Don't ask me details though ;-) ).
by ConnorMacLeod
Tue Mar 22, 2005 10:13 am
Forum: General Development
Topic: Any wxSOAP implementation?
Replies: 7
Views: 2564

Thanks for all the answers.
I decided to use gSOAP.

Cheers
Connor
by ConnorMacLeod
Mon Mar 21, 2005 4:23 pm
Forum: General Development
Topic: Any wxSOAP implementation?
Replies: 7
Views: 2564

Any wxSOAP implementation?

I need SOAP for my next project.
Has some allready programmed a wxSOAP?
If not what library should i use (EasySOAP, gSOAP, ...)?

Thanks
Connor
by ConnorMacLeod
Wed Mar 16, 2005 2:52 pm
Forum: Platform Related Issues
Topic: Problem running on Win 98
Replies: 4
Views: 2082

T-Rex wrote:3. Try to rebuild the application under Win98
You cannot run VC 7.1 on Win98 (VC 6 is possible.).
by ConnorMacLeod
Thu Mar 03, 2005 10:46 am
Forum: Platform Related Issues
Topic: wxCursor from .rc [Win]
Replies: 2
Views: 1807

wxCursor from .rc [Win]

Hello there, i cannot get wxCursor loading from a .rc file. I have some experience in MFC and .rc cursors. Can someone give an example on how to do it in wx? Thanks a lot. Connor What i have done so far: .rc file: 1 CURSOR "pan.cur" in c++ i tried all kind of options: a) new wxCursor( &quo...