Help

  • Thread starter Thread starter Fares
  • Start date Start date
F

Fares

Hi every one. I am beginner.
I designed a program (VB) by Visual studio 2005.
This program I designed by >NETframework2.
My program does not work on another computer that does not contain
..Netframework installed in it.
Can any person tell me how can I do "Setup" that include both the original
program + Netframework too.
Thanks .
Fares
 
You have two options for deployment:
1) ClickOnce - this is using the "Publish" tab on the Project Properties
page. Note that this is installed per USER, not per MACHINE
2) Traditional setup package - Add a "Setup Project" to your solution - this
is under "Other Project Types" in the Add Project dialog.
 
Back
Top