Link to home
Start Free TrialLog in
Avatar of howieh
howieh

asked on

Graphic interface like Quickbooks Pro Install

I want to create a user interface that looks like the Quick Books Pro installation program.  This installation program is similar to several others where the screen consists of images that highlight as you pass the mouse cursor over them and make a fancy clicking noise.  The mouse cursor also changes to a hand or something.  The user points the mouse until the option that they want is highlighted and then they click the left mouse button to access that portion of the program.
Avatar of lowlevel
lowlevel

this can be done with ordinary button controls, or image controls.
you change the bitmap of your control in the onMouseOver handler. If you want to change it when the mouse exists, you must subclass the control you want to use, and let it handle cm_mouse_out cm_mouse_exit. Because I don't think that regular win32 controls already have tOnNotify handlers for this.

The click handler could play the wav file, this is really all very simple. What do you really want? source-code to do these tasks?
Avatar of howieh

ASKER

I thought perhaps that there was some packaged example that I would be able to obtain.  I understand what you're saying...it's just that I don't want to reinvent the wheel.

Thanks,

howie
ASKER CERTIFIED SOLUTION
Avatar of AndersWP
AndersWP

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial