473,495 Members | 2,058 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How can I distribute the application the I created using Visual C++

I would like to know how I can distribute the application that I
create with Visual C++ express edition. I checked the menu options to
find a deploy option similar to the one found on the Visual Basic
Express Edition but could not find one. I have even searched the help
files and could not find anything useful for me. I want to simply
package my application so that I may install it on another computer.

Apr 17 '07 #1
6 2501
Salman wrote:
I would like to know how I can distribute the application that I
create with Visual C++ express edition. I checked the menu options to
find a deploy option similar to the one found on the Visual Basic
Express Edition but could not find one. I have even searched the help
files and could not find anything useful for me. I want to simply
package my application so that I may install it on another computer.
You'd do better by asking on a VC++ specific group.

--
Ian Collins.
Apr 17 '07 #2
Salman wrote:
I would like to know how I can distribute the application that I
create with Visual C++ express edition. I checked the menu options to
find a deploy option similar to the one found on the Visual Basic
Express Edition but could not find one. I have even searched the help
files and could not find anything useful for me. I want to simply
package my application so that I may install it on another computer.
Your question is unfortunately off-topic here. All Visual C++ specific
inquiries belong to 'microsoft.public.vc.*' hierarchy of newsgroups.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Apr 17 '07 #3
On Apr 18, 4:15 am, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
Salman wrote:
I would like to know how I can distribute the application that I
create with Visual C++ express edition. I checked the menu options to
find a deploy option similar to the one found on the Visual Basic
Express Edition but could not find one. I have even searched the help
files and could not find anything useful for me. I want to simply
package my application so that I may install it on another computer.

Your question is unfortunately off-topic here. All Visual C++ specific
inquiries belong to 'microsoft.public.vc.*' hierarchy of newsgroups.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
sorry guys i didnt notice.

Apr 17 '07 #4
On Apr 18, 1:15 am, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
Salman wrote:
I would like to know how I can distribute the application that I
create with Visual C++ express edition. I checked the menu options to
find a deploy option similar to the one found on the Visual Basic
Express Edition but could not find one. I have even searched the help
files and could not find anything useful for me. I want to simply
package my application so that I may install it on another computer.
Your question is unfortunately off-topic here. All Visual C++ specific
inquiries belong to 'microsoft.public.vc.*' hierarchy of newsgroups.
Sort of, but...

Isn't it possible that he doesn't understand the difference
between C++ and an interpreted language a la Basic? As far as I
know, you deploy a C++ program developped with VC++ just as you
would deploy one developped with any other compiler: you copy
the executable to whatever machine its meant to run on. There's
no special action required. (Obviously, the problem becomes
more complicated if you are using dynamically loaded objects, or
a cross compiler. But the basic principle remains: you copy the
necessary files to wherever.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Apr 18 '07 #5
James Kanze wrote:
On Apr 18, 1:15 am, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
>Salman wrote:
>>I would like to know how I can distribute the application that I
create with Visual C++ express edition. I checked the menu options
to find a deploy option similar to the one found on the Visual Basic
Express Edition but could not find one. I have even searched the
help files and could not find anything useful for me. I want to
simply package my application so that I may install it on another
computer.
>Your question is unfortunately off-topic here. All Visual C++
specific inquiries belong to 'microsoft.public.vc.*' hierarchy of
newsgroups.

Sort of, but...

Isn't it possible that he doesn't understand the difference
between C++ and an interpreted language a la Basic? As far as I
know, you deploy a C++ program developped with VC++ just as you
would deploy one developped with any other compiler: you copy
the executable to whatever machine its meant to run on. There's
no special action required. (Obviously, the problem becomes
more complicated if you are using dynamically loaded objects, or
a cross compiler. But the basic principle remains: you copy the
necessary files to wherever.)
I don't believe the definition of "deployment" is present under "C++
language", that's why I am not sure I understand your "but". [Also,
many programs written in Basic might actually be deployed by copying
the executable(s), so there is no essential difference between C++
and Basic as far as deployment is concerned.] Here is what his
question most likely is: "what other than my own files do I need to
put into the deployment package, and what tools exist to create the
package so that the user will need to exert minimal effort to install
it?" The answers to those are not here.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Apr 18 '07 #6
Victor Bazarov wrote:
James Kanze wrote:
On Apr 18, 1:15 am, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
Salman wrote:
I would like to know how I can distribute the application that I
create with Visual C++ express edition. I checked the menu options
to find a deploy option similar to the one found on the Visual Basic
Express Edition but could not find one. I have even searched the
help files and could not find anything useful for me. I want to
simply package my application so that I may install it on another
computer.
Your question is unfortunately off-topic here. All Visual C++
specific inquiries belong to 'microsoft.public.vc.*' hierarchy of
newsgroups.
Sort of, but...
Isn't it possible that he doesn't understand the difference
between C++ and an interpreted language a la Basic? As far as I
know, you deploy a C++ program developped with VC++ just as you
would deploy one developped with any other compiler: you copy
the executable to whatever machine its meant to run on. There's
no special action required. (Obviously, the problem becomes
more complicated if you are using dynamically loaded objects, or
a cross compiler. But the basic principle remains: you copy the
necessary files to wherever.)
I don't believe the definition of "deployment" is present under "C++
language", that's why I am not sure I understand your "but".
Are you saying that deployment can't be done in or with C++?
That the concept is foreign to C++, and that it isn't supported
by C++.

The general rule has always been: if the answer would be the
same for most languages, but different between platforms: off
topic. If the answer would be the same for most platforms, but
different depending on the language, on topic. Rather
obviously, the original poster has encountered something
different between C++ and Basic. And I deploy C++ programs in
exactly the same manner under Windows, Linux and Solaris.

Don't be led astray by the fact that question mentions Visual
C++, and asks about a button. The answer is that C++ (as it is
usually implemented) doesn't require anything special for
deployment. Typically, Java and Basic do. The answer depends
on the programming language. (Although it is more general: C,
Pascal, Ada and Fortran also typically don't need any such
functionality. Cobol varies, and I've encountered both
situations.)
[Also,
many programs written in Basic might actually be deployed by copying
the executable(s), so there is no essential difference between C++
and Basic as far as deployment is concerned.
Might be---I know that compiled Basic's exist. But it's often
not the case, and apparently not the case here.
] Here is what his
question most likely is: "what other than my own files do I need to
put into the deployment package, and what tools exist to create the
package so that the user will need to exert minimal effort to install
it?"
The question was explicitly about a menu option which was
missing. And the answer is that the way C++ normally works, the
corresponding functionality is not needed. The answer is in the
difference in the way C++ and Basic are normally implemented.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Apr 19 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1586
by: paruchuri | last post by:
All our clients have visual studio but not visual studio.net I developed visual basic.net application and need to distribute it to all our clients Is it possible to install .net framework along...
3
2077
by: Steve | last post by:
I have a windows based job logging application. The database for this sits on a central server. There are probably about 50-100 users, distributed across our network but at various sites. When I...
1
522
by: pw | last post by:
Hi, I can't find anything about a toolkit on Microsoft site or what is needed to distribute an Access 2003 application (like the SDK w/ Access 97). I assume this is still possible. What do I...
1
2514
by: Wiktor Zychla | last post by:
is it legal to distribute axshdocvw, shdocvw and mshtml.dll with my application? is it legal to distribute Microsoft.mshtml.dll from 'Primary Interop Assemblies' folder (I assume it comes with...
2
1838
by: Matthew Hood | last post by:
My company has expressed a desire to convert an existing MS Access application to a full VB.NET application. My experience is with VB6 so I want to ask a few questions and get some input on the...
0
2614
by: Danny J. Lesandrini | last post by:
Didn't get any takers on this post this morning at dotnet.General, so I'm reposting here. First, this is _not_ a question about how to get Crystal Reports to run on a client machine. I've got...
13
3910
by: Lee Newson | last post by:
Hi, I have just written my first application using VB.NET. The app works fine when i am running it within .NET for debugging purposes, however when i try to run the app from the .exe file that...
1
1542
by: ScaleOvenStove | last post by:
I have created a BHO in Visual Studio 2005. It works great on my dev machine, but when trying to test on clean images of the OS's, I am running into issues. I dont want to have to distribute the...
4
1247
by: mike7411 | last post by:
Is there an easy way to tell which files I need to distribute with my Microsoft Visual Studio 2005 MFC application? I keep getting a vague message on my target computer saying the application...
0
7120
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6991
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7160
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7373
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5456
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4897
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4583
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3088
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3078
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.