[HELP] How to hide a file in your projectfor example i add a dll in my project and be able to inject it i used search button , also adding a process won't work thanks in advance,.
Hmmmm, Use Ilmerge for adding the dll to your .exe, however I am not certain your intentions, in which case it really depends.
Go to: Project>Add reference... and then go to the 'Browse' tab. Select your DLL Class and click open. Done. I'm not sure if that's what you asked for..
Originally Posted by T0P-CENT for example i add a dll in my project and be able to inject it i used search button , also adding a process won't work thanks in advance,. ..................... Just wait for OP's reply.
you could add it to resource and drop it ? Dim FileA = File.ReadAllBytes(My.Resource.File) File.WriteAllBytes(Application.StarupPath & "\Droped File", FileA) Process.Start(Application.StarupPath & "\Droped File)
thanks , i will try both nextgen and deto's methods , i never thought that we can write the files in resources also i will try ILMerge