S
Stephen Dougherty via DotNetMonster.com
Firstly apologies if this has been covered elsewhere.
Being rather new to Developememnt in general, I am struggling to understand the deployment process of a .NET Windows application.
I have created a Window's application, which returns info based on what the user selects. For each item in the app there is an associated picture in .jpg format.
Code Example:
If cboItems.Text = "Veldspar crystal" Then
PictureBox7.Visible = True
PictureBox7.Image = System.Drawing.Image.FromFile _
("C:\Documents and Settings\stephen\Desktop\WindowsApplication5\images\icon48_01.jpg")
Path to .jpg is for testing only
All .jps are held in the images folder.
How would i control the deployment of that image folder to a set destination on the clients Computer ie C:\Program Files\EVECalc\images
Or is there a way to determine that path based on where the client installs the app?
How would I go about including that whole image folder in my Deployment?
Many thanks in advance
Being rather new to Developememnt in general, I am struggling to understand the deployment process of a .NET Windows application.
I have created a Window's application, which returns info based on what the user selects. For each item in the app there is an associated picture in .jpg format.
Code Example:
If cboItems.Text = "Veldspar crystal" Then
PictureBox7.Visible = True
PictureBox7.Image = System.Drawing.Image.FromFile _
("C:\Documents and Settings\stephen\Desktop\WindowsApplication5\images\icon48_01.jpg")
Path to .jpg is for testing only
All .jps are held in the images folder.
How would i control the deployment of that image folder to a set destination on the clients Computer ie C:\Program Files\EVECalc\images
Or is there a way to determine that path based on where the client installs the app?
How would I go about including that whole image folder in my Deployment?
Many thanks in advance