I have an application X version 1.0 in Visual Basic 2008 and forwarded through setup installed on a user's PC.
In this application was in these settings:
Imports System
Imports MySql.Data.MySqlClient
Now you have a link to webshop and uses HttpWebRequest.
There fore I added the following settings :
Imports System.Net
Imports System.Text
Imports System.IO
Imports System.Web
For this i adding a reference:
Project
-> Adding a Reference, System.Web
So I have the following settings:
Imports System
Imports MySql.Data.MySqlClient
Imports System.Net
Imports System.Text
Imports System.IO
Imports System.Web
Now I have application X version 2.0, Build with Visual Basic 2008
My question is how can I get the application X version 2.0 application on the user PC so that these settings will be available?
This application X version 1.0 is for several months in use!