Development Tutorials
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsCommunityDevelopment Tutorials

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old November 3rd, 2002, 05:40 PM
mytch mytch is offline
Dev Articles Novice (500 - 999 posts)
 
Join Date: Apr 2002
Location: Sydney, Australia
Posts: 589 mytch User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Article Discussion: Deploying Application in VB.NET: Part 1/2

If you have any questions or comments about this article then please post them here.

This forum post relates to this article

Reply With Quote
  #2  
Old January 2nd, 2003, 06:23 AM
chetandb chetandb is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2003
Posts: 1 chetandb User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
help on package and deployment

hello ,

i am new to vb .net and also i have not worked on vb also. I have finished with my application in vb .net, which has many files like .exe, .dll, .rtf, .txt, .wav and amny more. Now i want to package this application for deployment.

so can you please guide me on this topic

please mail me on my e-mail address

thanking u in advance

regards
chetan

Reply With Quote
  #3  
Old January 27th, 2003, 06:53 PM
c smith c smith is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2003
Location: Macon,Ga
Posts: 1 c smith User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I want to install a .net application on a number of machines that do not have the CLR on them and or perhaps some other files required by .Net applications. What is the best way to do this? Thanks.

Reply With Quote
  #4  
Old March 5th, 2003, 03:50 PM
Cassio Cassio is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Posts: 1 Cassio User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Hi!
I realized this morning that I cant make any package. I hope I am missing something but I tried many times with different projects and simple examples and nothing worked. I get this output everytime I build a setup project:



--------------------------------------------------------------------------------
------ Starting pre-build validation for project 'Setup2' ------
------ Pre-build validation for project 'Setup2' completed ------
------ Build started: Project: Setup2, Configuration: Debug ------

Building file 'D:\Documents and Settings\Cassio\Meus documentos\Visual Studio Projects\Setup2\Debug\Setup2.msi'...
ERROR: Unrecoverable build error


---------------------- Done ----------------------

Build: 0 succeeded, 1 failed, 0 skipped
--------------------------------------------------------------------------------


Do you have any idea?

Thanks!

Reply With Quote
  #5  
Old April 28th, 2003, 01:36 AM
chattx chattx is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2003
Location: Malaysia
Posts: 1 chattx User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to chattx Send a message via Yahoo to chattx
Question Deploying Apps in VB.NET

Hi, I have completed a VB.NET application and wish to package it for deployment. I manage to package the application without any errors but when I try to run the new installed VB.NET application, it hits an exception error stating some of the dll fill was missing or cannot be located.

Any idea wat's going on. I packaged the dll along with the exe in the same folder.

Regards,
neeDhelP

Reply With Quote
  #6  
Old May 8th, 2003, 02:54 AM
JVarsani JVarsani is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2003
Posts: 1 JVarsani User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question VB.NET Deployment and setting config files

Hi,

When using the VB.NET Deployment to create a Windows Installer package, is there any way to get it to change a value in a text file with, say the INSTALLDIR parameter?

example of file myapp.exe.config
<configuration>
<appSettings>
<add key="Config Location" value="E:\Library\Config.xml" />
</appSettings>
</configuration>

For example, the application is installed to:
C:\Program Files\MyApp
I want to change the E:\Libary part to read as:
C:\Program Files\MyApp\Config.xml

Is there any easy way to do this? Such as having the install program scan text files and do some search and replacing?


J

Reply With Quote
  #7  
Old July 10th, 2003, 05:06 AM
kelvincywong kelvincywong is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Posts: 1 kelvincywong User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Uninstallation

Could you please show me how to NOT delete an installed file during uninstallation, such a database file.

On a similar note, how to NOT install a file when the file already exists in the install dir?

I would like to do this so that if the user uninstall and install again their data will be preserved.

Thanks in advance.

-Kelvin

Reply With Quote
  #8  
Old July 13th, 2003, 10:19 PM
cheryl20 cheryl20 is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2002
Posts: 5 cheryl20 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Re: VB.NET Deployment and setting config files

i juz need exactly the opposite thing... how to make sure a file is deleted when uninstallation? i oredi set the Permanent property of the file False, but it still stay there, not replaced by the new installation's file.

Quote:
Originally posted by JVarsani
Hi,

When using the VB.NET Deployment to create a Windows Installer package, is there any way to get it to change a value in a text file with, say the INSTALLDIR parameter?

example of file myapp.exe.config
<configuration>
<appSettings>
<add key="Config Location" value="E:\Library\Config.xml" />
</appSettings>
</configuration>

For example, the application is installed to:
C:\Program Files\MyApp
I want to change the E:\Libary part to read as:
C:\Program Files\MyApp\Config.xml

Is there any easy way to do this? Such as having the install program scan text files and do some search and replacing?


J

Reply With Quote
  #9  
Old July 13th, 2003, 10:20 PM
cheryl20 cheryl20 is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2002
Posts: 5 cheryl20 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Re: Re: VB.NET Deployment and setting config files

sorry i meant to quote this

Quote:
Could you please show me how to NOT delete an installed file during uninstallation, such a database file.

On a similar note, how to NOT install a file when the file already exists in the install dir?

I would like to do this so that if the user uninstall and install again their data will be preserved.

Thanks in advance.

-Kelvin



Reply With Quote
  #10  
Old September 30th, 2003, 05:12 AM
sabarish sabarish is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 1 sabarish User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Deploying a vb.net application

I have a vb.net application, while deploying the application in a clients machine i want it to appear on the Start up.How do i do it

Any help will be appreciated

Thanks in advance
Sabarish

Reply With Quote
  #11  
Old November 11th, 2003, 02:51 AM
Winanjaya Winanjaya is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 1 Winanjaya User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
my VB.NET applications use a SQL Server database to store application data, my question is:

1. Is it possible for me to add additional function in my setup.exe for attaching my DB to SQL Server?

2. Is it also possible for me to add other additional function (ie. some dialog boxes for security purpose?) ..

Please help .. and thanks a lot in advance

Regards
Winan

Reply With Quote
  #12  
Old January 12th, 2004, 12:55 PM
Teh Short Teh Short is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Posts: 3 Teh Short User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
awesome thx... before i read this great tutorial i couldnt figure it out hrhrhr

Edit: when will Deploying Applications in VB.NET: Part 2/2 be ready ???

Reply With Quote
  #13  
Old November 2nd, 2005, 09:26 PM
schenz schenz is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Nov 2005
Posts: 1 schenz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 28 m 47 sec
Reputation Power: 0
Installer Wrapper

I have an application installer created by another company. I now need to attach some code in front of it to receive End User payment information, write a registration file, and registry entries for the application about to be installed.

How do I write code in such a way to collect payment information, then launch the actual application installer (may or may not be written in .NET)

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsCommunityDevelopment Tutorials > Article Discussion: Deploying Application in VB.NET: Part 1/2


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |