473,788 Members | 2,825 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Creat an Installation package for client and server

I have developed an application using C# under .NET 2.0 framework. It is
almost done and it is time for me to think about deploymnet to all users. I
don't have any background about this and would like to see if anyone can help
me get started. I have read some about clickonce deployment and not sure
much about this yet. Thanks for your help.

Nov 21 '06
20 3160
option 1 is what i thought as well. What i am not sure is i only want the
update to happen when the network is high which means that they can only do
when they are in the office. When they are on the roads, this option won't
happen, the update and download have to be ignored. Thanks,

"Dave Sexton" wrote:
Hi,

My suggestion would be to choose the approach that works best for all
possible situations, which I believe is option 1. In this case, end-users
will have to restart the application for any updates to take affect, but
they'll still be downloading at full-speed when connected to a
high-bandwidth network and when they are mobile it's obviously the best
choice.

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:BF******** *************** ***********@mic rosoft.com...
Dave,

i have another question about choosing a ClickOnce Update strategy. My
app
is used by state troopers. They only have high bandwidth network
connections
when they are in the offices. Low bandwidth is at all time when they are
on
the roads. I know there are three ways that we can do. 1) checking for
updates after application startup 2) checking for updates before
applicaton
startup 3) Making udpates required. The first one is best for low
bandwidth
and the second one is best for high bandwidth. In my case, the network
connection is changing based on where they are. Some times they will have
no
network coverage at all if they are in the far mountains for example.
Thanks,

"Dave Sexton" wrote:
Hi,

The links I posted in my original response should provide all the
information that you need. There are many possible steps depending upon
your requirements. It just doesn't make sense to go through all of them
here.

Basically, you have to go to the "Publish" tab in your project's
properties
window and configure ClickOnce there. VS 2005 does everything for you so
it's really just a matter of configuration.

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:58******** *************** ***********@mic rosoft.com...
Dave,

i have had this information in pieces. If you don't mind, could you
put
together all the steps in order to complete the installation package?
Thanks,

"Dave Sexton" wrote:

Hi,

I would like all the update will happen automatically. For example,
when
a
user launch an application, it first cheks to see if there is a new
version,
if it is, a user will be asked to run the update, as soon as it is
done,
then
the app will be launched. Is that possible to do? Thanks,

ClickOnce will do that, yes.

You could design that functionality into your own program. I'm not
sure
what problems you'll run into since I've never tried myself, but I
can't
imagine that it would be too difficult:

1. When the application starts check some persisted setting to see
whether
the application should check for newer versions on the web
2. Call into a custom Web Service (on a well-known server) that
informs
your
application whether a new version is available
3. If so, download the new version and start the installer Process.
If
not,
open the application as normal.

You'll have to account for security if clients will not be on a
private
network or VPN by requiring the clients to authenticate with the
server
that
hosts the Web Service and installation package.

Your customers will have to manually obtain the installation package
for
your application from the web, but only the first time it's installed.

The benefit of this approach is that your application can run with the
trust
of the end-user without them having to configure it first, however
you'll
have to develop the feature yourself, including a web service.

--
Dave Sexton



Nov 22 '06 #11
Hi,
option 1 is what i thought as well. What i am not sure is i only want the
update to happen when the network is high which means that they can only
do
when they are in the office. When they are on the roads, this option
won't
happen, the update and download have to be ignored. Thanks,
That's an interesting point.

The application should work when there is no connectivity at all:

"Applicatio n updates require network connectivity. If a network connection
is not present, the application will run without checking for updates,
regardless of the update strategy that you choose."

"Choosing a ClickOnce Update Strategy"
http://msdn2.microsoft.com/en-us/library/s22azw1e.aspx

(All citations in the remainder of this post refer to the document at the
url above)

When there is limited connectivity, ClickOnce will still attempt to download
any updates if you've configured it to do so.

If you will be making a lot of updates or if the speed at which updates are
downloaded and installed when a client has limited connectivity is
unacceptable, then you can do one of three things:

1. Choose the first option in your list (check after startup) and configure
the update interval appropriately:

"For example, you may want to check each time the application runs, or once
a week, or once a month. If a network connection is not present at the
specified time, the update check is performed the next time the application
runs."
§ Specifying Update Intervals

2. Allow the user to choose when it's appropriate to check for updates:

"For example, you might provide a "Check for Updates Now" menu item, or an
"Update Settings" dialog box with choices for different update intervals."
§ Providing a User Interface For Updates

3. Use a standard "Setup and Deployment" project and require users to
periodically check an ftp site or web site for updates.

(You may even have one more option, which is xcopy deployment).

It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration.

--
Dave Sexton
Nov 22 '06 #12
I have read "Choose a ClickOnce update strategy" even before i asked you the
question below. It is obvious that if there is no network connection, there
is no update. When network is limited, how can i configure that the
application won't check for the update and download? Because of this
problem, i do think option 2 which is allow user to check for updates maybe a
better choice since from here i can check for current network connectivity
level.

"Dave Sexton" wrote:
Hi,
option 1 is what i thought as well. What i am not sure is i only want the
update to happen when the network is high which means that they can only
do
when they are in the office. When they are on the roads, this option
won't
happen, the update and download have to be ignored. Thanks,

That's an interesting point.

The application should work when there is no connectivity at all:

"Applicatio n updates require network connectivity. If a network connection
is not present, the application will run without checking for updates,
regardless of the update strategy that you choose."

"Choosing a ClickOnce Update Strategy"
http://msdn2.microsoft.com/en-us/library/s22azw1e.aspx

(All citations in the remainder of this post refer to the document at the
url above)

When there is limited connectivity, ClickOnce will still attempt to download
any updates if you've configured it to do so.

If you will be making a lot of updates or if the speed at which updates are
downloaded and installed when a client has limited connectivity is
unacceptable, then you can do one of three things:

1. Choose the first option in your list (check after startup) and configure
the update interval appropriately:

"For example, you may want to check each time the application runs, or once
a week, or once a month. If a network connection is not present at the
specified time, the update check is performed the next time the application
runs."
§ Specifying Update Intervals

2. Allow the user to choose when it's appropriate to check for updates:

"For example, you might provide a "Check for Updates Now" menu item, or an
"Update Settings" dialog box with choices for different update intervals."
§ Providing a User Interface For Updates

3. Use a standard "Setup and Deployment" project and require users to
periodically check an ftp site or web site for updates.

(You may even have one more option, which is xcopy deployment).

It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration.

--
Dave Sexton
Nov 22 '06 #13
Hi,

ClickOnce cannot be configured to pass on updates when network connectivity
is low, AFAIK.

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:75******** *************** ***********@mic rosoft.com...
>I have read "Choose a ClickOnce update strategy" even before i asked you
the
question below. It is obvious that if there is no network connection,
there
is no update. When network is limited, how can i configure that the
application won't check for the update and download? Because of this
problem, i do think option 2 which is allow user to check for updates
maybe a
better choice since from here i can check for current network connectivity
level.

"Dave Sexton" wrote:
>Hi,
option 1 is what i thought as well. What i am not sure is i only want
the
update to happen when the network is high which means that they can
only
do
when they are in the office. When they are on the roads, this option
won't
happen, the update and download have to be ignored. Thanks,

That's an interesting point.

The application should work when there is no connectivity at all:

"Applicatio n updates require network connectivity. If a network
connection
is not present, the application will run without checking for updates,
regardless of the update strategy that you choose."

"Choosing a ClickOnce Update Strategy"
http://msdn2.microsoft.com/en-us/library/s22azw1e.aspx

(All citations in the remainder of this post refer to the document at the
url above)

When there is limited connectivity, ClickOnce will still attempt to
download
any updates if you've configured it to do so.

If you will be making a lot of updates or if the speed at which updates
are
downloaded and installed when a client has limited connectivity is
unacceptable , then you can do one of three things:

1. Choose the first option in your list (check after startup) and
configure
the update interval appropriately:

"For example, you may want to check each time the application runs, or
once
a week, or once a month. If a network connection is not present at the
specified time, the update check is performed the next time the
application
runs."
§ Specifying Update Intervals

2. Allow the user to choose when it's appropriate to check for updates:

"For example, you might provide a "Check for Updates Now" menu item, or
an
"Update Settings" dialog box with choices for different update
intervals."
§ Providing a User Interface For Updates

3. Use a standard "Setup and Deployment" project and require users to
periodically check an ftp site or web site for updates.

(You may even have one more option, which is xcopy deployment).

It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration.

--
Dave Sexton

Nov 26 '06 #14
Do you have any suggestions of the best way to do solve this? Appreciate
your help.

"Dave Sexton" wrote:
Hi,

ClickOnce cannot be configured to pass on updates when network connectivity
is low, AFAIK.

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:75******** *************** ***********@mic rosoft.com...
I have read "Choose a ClickOnce update strategy" even before i asked you
the
question below. It is obvious that if there is no network connection,
there
is no update. When network is limited, how can i configure that the
application won't check for the update and download? Because of this
problem, i do think option 2 which is allow user to check for updates
maybe a
better choice since from here i can check for current network connectivity
level.

"Dave Sexton" wrote:
Hi,

option 1 is what i thought as well. What i am not sure is i only want
the
update to happen when the network is high which means that they can
only
do
when they are in the office. When they are on the roads, this option
won't
happen, the update and download have to be ignored. Thanks,

That's an interesting point.

The application should work when there is no connectivity at all:

"Applicatio n updates require network connectivity. If a network
connection
is not present, the application will run without checking for updates,
regardless of the update strategy that you choose."

"Choosing a ClickOnce Update Strategy"
http://msdn2.microsoft.com/en-us/library/s22azw1e.aspx

(All citations in the remainder of this post refer to the document at the
url above)

When there is limited connectivity, ClickOnce will still attempt to
download
any updates if you've configured it to do so.

If you will be making a lot of updates or if the speed at which updates
are
downloaded and installed when a client has limited connectivity is
unacceptable, then you can do one of three things:

1. Choose the first option in your list (check after startup) and
configure
the update interval appropriately:

"For example, you may want to check each time the application runs, or
once
a week, or once a month. If a network connection is not present at the
specified time, the update check is performed the next time the
application
runs."
§ Specifying Update Intervals

2. Allow the user to choose when it's appropriate to check for updates:

"For example, you might provide a "Check for Updates Now" menu item, or
an
"Update Settings" dialog box with choices for different update
intervals."
§ Providing a User Interface For Updates

3. Use a standard "Setup and Deployment" project and require users to
periodically check an ftp site or web site for updates.

(You may even have one more option, which is xcopy deployment).

It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration.

--
Dave Sexton


Nov 28 '06 #15
Do you have any suggestions of the best way to solve this? Appreciate your
help.

"Dave Sexton" wrote:
Hi,

ClickOnce cannot be configured to pass on updates when network connectivity
is low, AFAIK.

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:75******** *************** ***********@mic rosoft.com...
I have read "Choose a ClickOnce update strategy" even before i asked you
the
question below. It is obvious that if there is no network connection,
there
is no update. When network is limited, how can i configure that the
application won't check for the update and download? Because of this
problem, i do think option 2 which is allow user to check for updates
maybe a
better choice since from here i can check for current network connectivity
level.

"Dave Sexton" wrote:
Hi,

option 1 is what i thought as well. What i am not sure is i only want
the
update to happen when the network is high which means that they can
only
do
when they are in the office. When they are on the roads, this option
won't
happen, the update and download have to be ignored. Thanks,

That's an interesting point.

The application should work when there is no connectivity at all:

"Applicatio n updates require network connectivity. If a network
connection
is not present, the application will run without checking for updates,
regardless of the update strategy that you choose."

"Choosing a ClickOnce Update Strategy"
http://msdn2.microsoft.com/en-us/library/s22azw1e.aspx

(All citations in the remainder of this post refer to the document at the
url above)

When there is limited connectivity, ClickOnce will still attempt to
download
any updates if you've configured it to do so.

If you will be making a lot of updates or if the speed at which updates
are
downloaded and installed when a client has limited connectivity is
unacceptable, then you can do one of three things:

1. Choose the first option in your list (check after startup) and
configure
the update interval appropriately:

"For example, you may want to check each time the application runs, or
once
a week, or once a month. If a network connection is not present at the
specified time, the update check is performed the next time the
application
runs."
§ Specifying Update Intervals

2. Allow the user to choose when it's appropriate to check for updates:

"For example, you might provide a "Check for Updates Now" menu item, or
an
"Update Settings" dialog box with choices for different update
intervals."
§ Providing a User Interface For Updates

3. Use a standard "Setup and Deployment" project and require users to
periodically check an ftp site or web site for updates.

(You may even have one more option, which is xcopy deployment).

It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration.

--
Dave Sexton


Nov 28 '06 #16
Hi,

I already stated that, of the three choices I supplied, #1 sounds like the
best choice to me. But if you feel like doing some coding, #2 could work as
well. #3 is a last resort - not using ClickOnce at all.

Have I misunderstood the problem at hand?

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:A5******** *************** ***********@mic rosoft.com...
Do you have any suggestions of the best way to do solve this? Appreciate
your help.

"Dave Sexton" wrote:
>Hi,

ClickOnce cannot be configured to pass on updates when network
connectivity
is low, AFAIK.

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:75******* *************** ************@mi crosoft.com...
>I have read "Choose a ClickOnce update strategy" even before i asked you
the
question below. It is obvious that if there is no network connection,
there
is no update. When network is limited, how can i configure that the
application won't check for the update and download? Because of this
problem, i do think option 2 which is allow user to check for updates
maybe a
better choice since from here i can check for current network
connectivity
level.

"Dave Sexton" wrote:

Hi,

option 1 is what i thought as well. What i am not sure is i only
want
the
update to happen when the network is high which means that they can
only
do
when they are in the office. When they are on the roads, this
option
won't
happen, the update and download have to be ignored. Thanks,

That's an interesting point.

The application should work when there is no connectivity at all:

"Applicatio n updates require network connectivity. If a network
connection
is not present, the application will run without checking for updates,
regardless of the update strategy that you choose."

"Choosing a ClickOnce Update Strategy"
http://msdn2.microsoft.com/en-us/library/s22azw1e.aspx

(All citations in the remainder of this post refer to the document at
the
url above)

When there is limited connectivity, ClickOnce will still attempt to
download
any updates if you've configured it to do so.

If you will be making a lot of updates or if the speed at which
updates
are
downloaded and installed when a client has limited connectivity is
unacceptable , then you can do one of three things:

1. Choose the first option in your list (check after startup) and
configure
the update interval appropriately:

"For example, you may want to check each time the application runs, or
once
a week, or once a month. If a network connection is not present at the
specified time, the update check is performed the next time the
application
runs."
§ Specifying Update Intervals

2. Allow the user to choose when it's appropriate to check for
updates:

"For example, you might provide a "Check for Updates Now" menu item,
or
an
"Update Settings" dialog box with choices for different update
intervals."
§ Providing a User Interface For Updates

3. Use a standard "Setup and Deployment" project and require users to
periodically check an ftp site or web site for updates.

(You may even have one more option, which is xcopy deployment).

It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration.

--
Dave Sexton



Nov 28 '06 #17
Hi,
Because of the special requiremnet that download and update won't happen
when
the network connectivity is low. Only high. That is why i can't use
ClickOnce update automatically. It will have to be programatically . I
think
you may have missed the important part that no download and update when
network connectivity is low.
Actually, that's why I brought up option #2, and this is what I said about
it:

"It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration."

It's your choice, since you know whether it's a requirement or something you
can avoid. I don't think that what you want is possible in ClickOnce, as
I've already stated, without programming it. Therefore, #2 might be your
only option. #1, IMO, is preferable if you can avoid this "feature".
I have created a very simple app and public it using ClickOnce technology.
I public it to a file share which is in my C drive
(C:\DeployTest\ ClickOnceTest\) . Run the setup.exe and it is installed in
my
PC (pretent that i am the end user). Then i created another form called
to
do the update but for some reason the
applicationDepl oyment.IsNetwor kDeployed
returns fall all the time. here is the code. Hope you can help me with
this.
I have found the code from the msdn website. Thanks,
It sounds like, from the MSDN documentation, that your app isn't a ClickOnce
application or was installed on the local computer when the
IsNetworkDeploy ed property returns false:

"If you want your application to run both inside and outside of a ClickOnce
deployment (for example, if you need to debug your application on the local
computer before deploying it), test IsNetworkDeploy ed before accessing the
CurrentDeployme nt property.

IsNetworkDeploy ed will return true regardless of whether the application is
installed or hosted online, and regardless of whether it was installed from
a Web site, file share, or CD-ROM."

"ApplicationDep loyment.IsNetwo rkDeployed Property"
http://msdn2.microsoft.com/en-us/lib...kdeployed.aspx

<snip>

In the future, you may find it easier to load up the MSDN documentation for
classes and APIs that you don't understand. Reading the documentation
should prove to be quicker than waiting for responses in newsgroups, and
you'll acquire a much better understanding about the subject matter. I
recommend asking questions in newsgroups after you do the research or if you
don't quite understand something that you've read. My responses in this
thread were based partially on knowledge that I acquired from the
documentation on MSDN, which is readily available to you as well :)

HTH

--
Dave Sexton
Nov 30 '06 #18
Hi,

Well, from the docs on MSDN it looks like you might have to use a program
called MageUI.exe. I haven't used this myself, so I'm not sure how it
works, but it seems that you might have to manually configure the
application manifest (AFAICT).

"How to: Check for Application Updates Programmaticall y Using the ClickOnce
Deployment API"
http://msdn2.microsoft.com/en-us/lib...63(VS.80).aspx

(Check out the table of contents (TOC) to the left and you'll see a whole
bunch of links to information regarding ClickOnce deployments.)

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:AE******** *************** ***********@mic rosoft.com...
>I appreciate your help.

i have a sample app (it just has a simple form) and i pulish it but i
uncheck the "appliation should check for update" since i don't want to the
application to automatically check for the new version. I got that part
done
and working. Then i add a update form in the same solution. The form has
a
"update button" and that is the event handler when the event is raised.
But
it always returns "no new version" and it makes sense because i run the
setup
again so it has the lastest version. Then i create a new application with
an
update in there and it is still the same thing. I am trying to come up
with
the way to test for update programatically . Do you have any ideas how
this
can be done? thanks,

"Dave Sexton" wrote:
>Hi,
Because of the special requiremnet that download and update won't
happen
when
the network connectivity is low. Only high. That is why i can't use
ClickOnce update automatically. It will have to be programatically . I
think
you may have missed the important part that no download and update when
network connectivity is low.

Actually, that's why I brought up option #2, and this is what I said
about
it:

"It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration."

It's your choice, since you know whether it's a requirement or something
you
can avoid. I don't think that what you want is possible in ClickOnce, as
I've already stated, without programming it. Therefore, #2 might be your
only option. #1, IMO, is preferable if you can avoid this "feature".
I have created a very simple app and public it using ClickOnce
technology.
I public it to a file share which is in my C drive
(C:\DeployTest\ ClickOnceTest\) . Run the setup.exe and it is installed
in
my
PC (pretent that i am the end user). Then i created another form
called
to
do the update but for some reason the
applicationDepl oyment.IsNetwor kDeployed
returns fall all the time. here is the code. Hope you can help me with
this.
I have found the code from the msdn website. Thanks,

It sounds like, from the MSDN documentation, that your app isn't a
ClickOnce
application or was installed on the local computer when the
IsNetworkDeplo yed property returns false:

"If you want your application to run both inside and outside of a
ClickOnce
deployment (for example, if you need to debug your application on the
local
computer before deploying it), test IsNetworkDeploy ed before accessing
the
CurrentDeploym ent property.

IsNetworkDeplo yed will return true regardless of whether the application
is
installed or hosted online, and regardless of whether it was installed
from
a Web site, file share, or CD-ROM."

"ApplicationDe ployment.IsNetw orkDeployed Property"
http://msdn2.microsoft.com/en-us/lib...kdeployed.aspx

<snip>

In the future, you may find it easier to load up the MSDN documentation
for
classes and APIs that you don't understand. Reading the documentation
should prove to be quicker than waiting for responses in newsgroups, and
you'll acquire a much better understanding about the subject matter. I
recommend asking questions in newsgroups after you do the research or if
you
don't quite understand something that you've read. My responses in this
thread were based partially on knowledge that I acquired from the
documentatio n on MSDN, which is readily available to you as well :)

HTH

--
Dave Sexton

Dec 2 '06 #19
After doing some research, i don't think ClickOnce works well for us down the
road. We are thinking about ftp file synch. Download the new version if
available to user machine. Is it possible? Thanks.

"Dave Sexton" wrote:
Hi,

Well, from the docs on MSDN it looks like you might have to use a program
called MageUI.exe. I haven't used this myself, so I'm not sure how it
works, but it seems that you might have to manually configure the
application manifest (AFAICT).

"How to: Check for Application Updates Programmaticall y Using the ClickOnce
Deployment API"
http://msdn2.microsoft.com/en-us/lib...63(VS.80).aspx

(Check out the table of contents (TOC) to the left and you'll see a whole
bunch of links to information regarding ClickOnce deployments.)

--
Dave Sexton

"piggy" <pi***@discussi ons.microsoft.c omwrote in message
news:AE******** *************** ***********@mic rosoft.com...
I appreciate your help.

i have a sample app (it just has a simple form) and i pulish it but i
uncheck the "appliation should check for update" since i don't want to the
application to automatically check for the new version. I got that part
done
and working. Then i add a update form in the same solution. The form has
a
"update button" and that is the event handler when the event is raised.
But
it always returns "no new version" and it makes sense because i run the
setup
again so it has the lastest version. Then i create a new application with
an
update in there and it is still the same thing. I am trying to come up
with
the way to test for update programatically . Do you have any ideas how
this
can be done? thanks,

"Dave Sexton" wrote:
Hi,

Because of the special requiremnet that download and update won't
happen
when
the network connectivity is low. Only high. That is why i can't use
ClickOnce update automatically. It will have to be programatically . I
think
you may have missed the important part that no download and update when
network connectivity is low.

Actually, that's why I brought up option #2, and this is what I said
about
it:

"It sounds to me like option 1 is your best choice, but option 2 is
definitely worth consideration."

It's your choice, since you know whether it's a requirement or something
you
can avoid. I don't think that what you want is possible in ClickOnce, as
I've already stated, without programming it. Therefore, #2 might be your
only option. #1, IMO, is preferable if you can avoid this "feature".

I have created a very simple app and public it using ClickOnce
technology.
I public it to a file share which is in my C drive
(C:\DeployTest\ ClickOnceTest\) . Run the setup.exe and it is installed
in
my
PC (pretent that i am the end user). Then i created another form
called
to
do the update but for some reason the
applicationDepl oyment.IsNetwor kDeployed
returns fall all the time. here is the code. Hope you can help me with
this.
I have found the code from the msdn website. Thanks,

It sounds like, from the MSDN documentation, that your app isn't a
ClickOnce
application or was installed on the local computer when the
IsNetworkDeploy ed property returns false:

"If you want your application to run both inside and outside of a
ClickOnce
deployment (for example, if you need to debug your application on the
local
computer before deploying it), test IsNetworkDeploy ed before accessing
the
CurrentDeployme nt property.

IsNetworkDeploy ed will return true regardless of whether the application
is
installed or hosted online, and regardless of whether it was installed
from
a Web site, file share, or CD-ROM."

"ApplicationDep loyment.IsNetwo rkDeployed Property"
http://msdn2.microsoft.com/en-us/lib...kdeployed.aspx

<snip>

In the future, you may find it easier to load up the MSDN documentation
for
classes and APIs that you don't understand. Reading the documentation
should prove to be quicker than waiting for responses in newsgroups, and
you'll acquire a much better understanding about the subject matter. I
recommend asking questions in newsgroups after you do the research or if
you
don't quite understand something that you've read. My responses in this
thread were based partially on knowledge that I acquired from the
documentation on MSDN, which is readily available to you as well :)

HTH

--
Dave Sexton


Dec 4 '06 #20

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

Similar topics

3
2057
by: Rob Brown | last post by:
I put together an installation program and it works great the first time. The problem I have is that we want the users to be able to rerun the installation without needing to uninstall the older package first. How can I set up the package to overlay the existing installation without forcing the user to run an uninstall first? Thanks, Rob Brown
2
6269
by: mb12036 | last post by:
All- Having a problem installing a DB2 client on a machine running AIX version 5.0. Client appeared to install one time succesfully, then was uninstalled and a reinstall was attempted. For some reasons, it does not complete the reinstall. See the status report from the GUI installer at the end of this note. Errors are towards the bottom. Everything installed in /usr/opt for DB2 but the sqllib folder that is supposed to be created in...
1
8103
by: srihari | last post by:
Hai, I am trying to install IBM DB2 8.1 on Red Hat linux 8.0. My machine is Intel XEON 64bit. The installation went well except for the creation of tools catalog. When I tried to install the tools catalog as a post installation task I get some java error. $ db2 CREATE TOOLS CATALOG SYSTOOLS USE EXISTING DATABASE TOOLSDB FORCE SQL22209N The DB2 Administration Server encountered an unexpected Java error on host "". I have jdk1.3 already...
0
3029
by: Hernan Garber | last post by:
Hi, Attached, the installation log. Win 2k Server SP3 IE6SP1/SQL Server Installed Thanks Setup.exe: Setup.exe: ========== Logging started ==========
0
2205
by: Pavan | last post by:
I have my .NET code published in two servers http://server1/<ApplicationName>/Publish.htm and http://server2/<ApplicationName>/Publish.htm, and if i open IE on the client machine and type the link (http://server1/<ApplicationName>/Publish.htm) it would install the application in the client machine from server1. 1) Changing the server location on the same client machine (i.e. http://server2/<ApplicationName>/Publish.htm) should override...
6
1965
by: ljh | last post by:
(note: this is being posted to the dotnet groups because of thier expertise in app development and network administration) I cannot, for the life of me, remember the name of an application that I had a couple of years ago. It was an app that monitored the installation of another application and created a setup package that could be run on another PC to install the app almost like an Xcopy install. The app monitored all added or...
0
1268
by: Pavarotti | last post by:
I have a program written in VB.Net 2003 and have to make it work on a Client without the vs.net framework. I was wondering if there is a way in which I can include dotnetfx within my deployment package and have my installation package to execute the dotnetfx installation package prior to the installation of the main application. Is the above strategy possible, if so how do I have to go about it?
1
2650
by: aryan24 | last post by:
Hi, I am new to LINUX. I have down loaded MySQL-server-community-5.0.45-0.sles10.i586.rpm from the site and trying to install on suse linux 10.2. using this command #>rpm -i MySQL-server-community-5.0.45-0.sles10.i586.rpm it is giving an error file /usr/bin/perror from install of MySQL-server-community-5.0.45-0.sles10 conflicts with file from package mysql-client-5.0.26-12 file /usr/bin/replace from install of...
11
2153
by: Robin S. | last post by:
I've used phpinfo() to confirm settings for mySQL on our host server, and it's not returning accurate info. phpinfo() returns a mySQL client API version of 3.23.54 (uselss for me), where as a SELECT VERSION() query on the mySQL database returns version 5.0.27 (exactly what we need). I think there's something wrong with the mySQL library in PHP. Is there any more thurough method of seeing php's settings for mySQL? Obviously I don't...
0
10175
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10112
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8993
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7518
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6750
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5399
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5536
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4070
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.