Agh, do you guys really not understand him? Or just not understand VB? He is taking about a builder and a stub.
Ok, it is quite simple, the builder and the stub combine their information, and create a new file with it in, called a server. Now they connect together with a few simple lines of code.
Both contain the line
Code:
Const FileSplit = "@vorfin@"
This lets them know that they should work with the other.
They also contain this:
Code:
FileOpen(1, Application.StartupPath & "\Stub.exe", OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
Which lets them know the location of the other, in this case the same directory.
And lastly this:
Code:
If File.Exists("server.exe") Then
My.Computer.FileSystem.DeleteFile("server.exe")
End If
FileOpen(1, Application.StartupPath & "\server.exe", OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default)
Which checks to see if an older server exists, if it does it deletes it. Then it will create a new one with the latest information in it.