How can I make the text in the textbox1.text (eg. crossfire.exe ) to the process where the selected dll should be injected.
well that is kinda easy
your code may look somthing like this
Code:
Dim TargetProcess As Process() = Process.GetProcessesByName("WarRock")
Replace that with
Code:
Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.text)
Well this is untested but it should work
You may want to add stuf to check if somthing is in the textbox and if it is a correct name (so no .exe at the end no special charecters no stuf like explorer.exe that would fuck up your system if used)
BTW this is realy somthing of the most basic things that you can do you should know stuf like this befor you even try making a injector
Originally Posted by Thats the way it is
well that is kinda easy
your code may look somthing like this
[code]
BTW this is realy somthing of the most basic things that you can do you should know stuf like this befor you even try making a injector