Search the web
Sign In
New User? Sign Up
wxMS_developers · Development with wxWidgets on MSWindows
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 422 - 452 of 693   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
422
Hi! In case any DB users out there didn't notice, there's a new release, 4.16. The major feature of interest to me at least, is that you now can have multiple...
Dave Silvia
db_vs_dave
Offline Send Email
Oct 3, 2007
9:45 am
424
Hello, I'm new to wxWidgets. I'm trying to figure out how to listen for a specific MSW message, WM_DEVICECHANGE, and have my program act accordingly. Is this...
swampy2b
Offline Send Email
Oct 4, 2007
3:38 pm
425
... Hi, Marsh! It would appear that, excepting to print it's name in a debug log, wxWidgets does nothing itself with WM_DEVICECHANGE. It forwards any messages...
Dave Silvia
db_vs_dave
Offline Send Email
Oct 4, 2007
4:24 pm
426
Marsh, From the wxWidgets FAQ on Windows Messages (http://www.wxwidgets.org/docs/faqmsw.htm#handlewm) "To handle a Windows message you need to override a...
iamtiggerca
Offline Send Email
Oct 4, 2007
4:49 pm
427
Any one with experience in embedding IE (Internet Explore) in a wxWdget app? A Hello World example or pointer to up-todate documentation will be appreciated. ...
pmushubi
Offline Send Email
Oct 9, 2007
10:34 pm
428
I have a wxWidget program I wrote which was compiled under Linux on a 32-bit machine. I tried to run it on a 64-bit dual core system. It gets "Floating point...
jmbgtn
Offline Send Email
Oct 10, 2007
3:45 pm
429
... Hi! Well, are you building anywhere on a Windows platform? If so, there is a setting under Visual Studio to build 32 bit and flag any 64 bit issues. Sorry...
Dave Silvia
db_vs_dave
Offline Send Email
Oct 10, 2007
3:57 pm
430
Thanks Dave, I will have a look at doing that. Ivan ... Hi! Well, are you building anywhere on a Windows platform? If so, there is a setting under Visual...
Janet Sims
jmbgtn
Offline Send Email
Oct 10, 2007
5:08 pm
431
I have searched for example usage of wxHTTP with POST method as opposed to GET without success. Anyone either with experience using this class or knows where I...
pmushubi
Offline Send Email
Oct 19, 2007
12:30 am
432
I did the same search. From what I found, it can not be done. In addition, wxHTTP can not be used with an HTTPS url. I also ran into some other problem (can...
Paul Levin
plevintampabay
Offline Send Email
Oct 19, 2007
12:56 am
433
... Yes, unfortunately wxHTTP/wxHTML are a bit on the anemic side, functionality-wise......
Dave Silvia
db_vs_dave
Offline Send Email
Oct 19, 2007
11:05 am
434
Hi, On MSW, we have the option to use OpenGL or Direct3D to make 3D graphics for games and simulations. I'm somewhat new to wxWidgets, but I've noticed that...
john grant
johnkonradgrant
Offline Send Email
Oct 22, 2007
7:39 pm
435
... The library needs to be compiled with OpenGL enabled. In DB,there is a property in Configurations, Use OpenGL. It defaults to No, just change it to Yes and...
Dave Silvia
db_vs_dave
Offline Send Email
Oct 22, 2007
8:48 pm
436
Hello again Dave, I read about the preprocessor checks for enabling the gl canvas code, but I really meant, "what is wxWidgets doing differently when gl canvas...
john grant
johnkonradgrant
Offline Send Email
Oct 22, 2007
10:01 pm
437
John, A couple of links I had tucked away for when I had time... Note: - wxGLCanvas set up changes after version 2.7.0. ==> check date of article ==> some...
iamtiggerca
Offline Send Email
Oct 22, 2007
10:14 pm
438
... Hi, John! Don't mind me too much. I was just doing what I'm best at; Displaying my ignorance (as a matter of fact, no one does it better than me! Display...
Dave Silvia
db_vs_dave
Offline Send Email
Oct 23, 2007
5:24 am
439
Hello, does anyone here know a good profiler for MSVC 2005? I used to use gprof when I was still using the gnu-compiler, but I have changed my whole ...
Andreas Goebel
andreas_gbl
Offline Send Email
Oct 25, 2007
7:35 am
440
Purify by IBM - but it isn't cheap Paul...
Paul Levin
plevintampabay
Offline Send Email
Oct 25, 2007
12:32 pm
441
... Thank you Paul. On the IBM site it says that it´s mainly for memory-leak detection. With "profiling" I mean in my case especially generating a call graph...
Andreas Goebel
andreas_gbl
Offline Send Email
Oct 25, 2007
12:47 pm
442
Hi, now I found some more information. It´s purify plus that does the profiling, whereas purify detects memory leaks. Regards, Andreas...
Andreas Goebel
andreas_gbl
Offline Send Email
Oct 25, 2007
1:01 pm
443
Oh, and now I found the price for purify plus ... Well, that is really a bit expensive. (about 1700 €). Do you use it? Regards, Andreas...
Andreas Goebel
andreas_gbl
Offline Send Email
Oct 25, 2007
1:06 pm
444
Andreas, I started using Purify about 15 years ago. At that time the other features were handled by PureProfile and PureCoverage, all from a company called...
Paul Levin
plevintampabay
Offline Send Email
Oct 25, 2007
1:27 pm
445
The best list I've found so far is this at Wikipedia<http://en.wikipedia.org/wiki/List_of_performance_analysis_tool#C_and_C.2B.2B>. CompuWare's DevPartner...
Phillip Seaver
gorvas
Online Now Send Email
Oct 25, 2007
1:37 pm
446
Hello again, I have an extremely light-weight, win32 GUI application that has a child window which is created solely for GL or D3D graphics. It drawing nicely...
john grant
johnkonradgrant
Offline Send Email
Oct 25, 2007
9:27 pm
447
Hi, Does anyone know how to execute code in the main application loop rather than only in response to window events? I'm looking for a way to "hook" in a...
john grant
johnkonradgrant
Offline Send Email
Oct 26, 2007
1:59 am
448
I've found how wxApp ticks. Everything happens in a nice function named 'wxEventLoopManual::Run()'. As far as I can tell, it has an infinite loop, checking...
john grant
johnkonradgrant
Offline Send Email
Oct 27, 2007
12:56 am
449
... way ... Hi, John! I've not really done this with wxWidgets (other systems, yes...). But ... wxApp::MainLoop virtual int MainLoop() Called by wxWidgets on...
Dave Silvia
db_vs_dave
Offline Send Email
Oct 29, 2007
9:40 am
450
Hi Dave et al, Firstly a big thank you for the Forum, tutorials and the other many great benefits. I have adopted your sugestion of using DB to compile the...
ndivner
Offline Send Email
Nov 4, 2007
9:30 pm
451
Hi Dave, Hope everything is well. I have a question related to the wxgrid and its integration with other componets. I'm using a wxgrid to present a list of...
lupe_3d
Offline Send Email
Nov 26, 2007
9:20 am
452
Hello all: I am running on a Windows XP Pro SP2 machine using Visual Studio 2005. I have just updated to 2.8.7 and DB 4.20. I uninstalled and removed ...
Ralph Pass
rppassiii
Offline Send Email
Nov 30, 2007
7:19 pm
Messages 422 - 452 of 693   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help