Write to Resources

JakeCake

New member
Joined
Apr 14, 2009
Messages
2
Programming Experience
3-5
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.
Dim 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
This is where I would like to add the files to "My.Resources.Installation_File___Executer".exe resources somehow. Please help :rolleyes:
 
Resources are readonly, they are added at design time and compiled into the application assembly or satellite assemblies.
 
That is what I feared :s

Is there any way too bind files inside a .exe file?
I know it's posible since some programs is doing exactly what I'm am looking for :s
 
Back
Top