mfc >> Pls check the mail once VC++ Dialog Based appliaction for installation

by jagadeesh » Thu, 16 Mar 2006 18:25:51 GMT

Hai Guys,

When you will double click exe file then dialog
appeared, In that dialog progress bar, next cancel and back byutton are
also there. if we click next then again one more dialog appeared. (This
application is know as installation appliaction. in the same way
uninstall application is also there. In the control panel Add-Remove
programs in that one which application is installated on the system
that is updated.

How to do this application using VC++/MFC.


I Want this dialog based appliaction source code in V++/MFC


Thank you.

Ramesh



mfc >> Pls check the mail once VC++ Dialog Based appliaction for installation

by Tom Serface » Fri, 17 Mar 2006 00:11:48 GMT


We use InstallShield to build installations. It has a ton of stuff built in
that I wouldn't even want to reinvent.

However, to do what you're suggesting is simply a matter of creating a
dialog based application and putting the controls on where you want them.
You can use buttons for Next and Previous, progress controls, and even pop
up other dialogs. This is all standard MFC (and Windows) sort of behavior.

Take a look at some standard installation programs though and you might find
it easier to use one of those packages rather than recreating the
functionality in your own program.

Tom








Similar Threads

1. Fade-in/Fade-out of images in vc++ (Dialog based application)

2. Error intantiating ActiveX on VC++ dialog based application

Hello group,

I have written an ATL COM component (Composite control). The framework was
created by Visual Studio. I have added only custom functionality there. It
was successfully running for 6 years hosted on EI. Now I am trying to use
the same component on VC++ Dialog based application.

When embedding it into the C++ dialog, I've got an error message:

The ActiveX control cannot be instantiated.
MyCtrl Class is not a valid AcitveX control It is missing a required
interface.

I'd appreciate any ideas on this matters.

Thanks


3. package installation for explorer bar vc++

4. installation sdK for embedded vc++ built with PB

Hi,
I built a SDK with PB and I have the corresponding .msi 
file. When I try to install it, it fails with a Windows 
Script Host dialog box : Unable to find the 
script "VBscript" for the script "c:\winnt\system32
\platman_install.vbs" .
Thaks for your help

5. Have there any function to check the null and empty at once - CSharp/C#

6. Mailing follow-ups (was: VC++ 6.0 vs VC++ 8.0)

7. Probably an easy one for you but pls check

8. calling base class function only once

Hi,

Consider the following class hierarchy:

                A
          B     C     D

a has a fcuntion func() which needs to be called only once during
application lifetime.

B b;
b.func();


......



later

C c;
c.func(); //should nt get called or executed.

How can this be done?

One way is to use a mutex and initialize the first time func is called.

Is there any other way?Some design pattern?

Regards,
Furqan