Hello there
I have made this installation program and everything work just fine, but I wish to improve it a little. Atm. all the files being installed is in a seperate folder, and the installation program simply move them to the right location.
- There is a builder program too
I would like it to add all files from a list to the programs resource.folder instead of a seperate folder.
Atm I add the installation file to the destination folder with the following line.
I have made this installation program and everything work just fine, but I wish to improve it a little. Atm. all the files being installed is in a seperate folder, and the installation program simply move them to the right location.
- There is a builder program too
I would like it to add all files from a list to the programs resource.folder instead of a seperate folder.
Atm I add the installation file to the destination folder with the following line.
This is where I would like to add the files to "My.Resources.Installation_File___Executer".exe resources somehow. Please helpDim WritingPath As String = TextBox1.Text & "\"
My.Computer.FileSystem.WriteAllBytes(WritingPath & "Quick Level Setup.exe", My.Resources.Installation_File___Executer, False)
' Where "Installation_File__Executer" is a .exe file located in resources