If TextBox1.Text = Nothing Or OpenFileDialog1.FileName = Nothing Then
MsgBox("Dll / Process Is Missing", vbOKOnly + vbInformation)
ElseIf IO.File.Exists(OpenFileDialog1.FileName) Then
Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
If TargetProcess.Length = 0 Then
Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe")
Else
Timer1.Stop()
Me.Label1.Text = "Successfully Injected!"
Call Inject()
If CheckBox1.Checked = True Then
End
Else
End If
End If
Else
End If
If TextBox1.Text = Nothing Or OpenFileDialog1.FileName = Nothing Then
MsgBox("Dll / Process Is Missing", vbOKOnly + vbInformation)
End If