QuestionInjector Code Help

Posts 110 of 10 · Page 1 of 1
Injector Code Help
I Want The Code That When You Click Inject Without Choosing Dll Or Writing Process (Crossfire.exe Or Any Thing)
MsgBox Pop Up And Tell You (''Dll / Process Is Missing'') And End The Code

To Avoid Geting The Msgbox When You Click Inject With All Corect Data

Please Help Me With The Code
@Hero
//Move To Injector Section Please.
Quote Originally Posted by yoyu333 View Post
I Want The Code That When You Click Inject Without Choosing Dll Or Writing Process (Crossfire.exe Or Any Thing)
MsgBox Pop Up And Tell You (''Dll / Process Is Missing'') And End The Code

To Avoid Geting The Msgbox When You Click Inject With All Corect Data

Please Help Me With The Code
Douple click on Inject Button And right this code:
Code:
  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
Then change the name of the tools:
@..x_X_x.. I don't need all of that because the project is not really an injector
Quote Originally Posted by yoyu333 View Post
@..x_X_x.. I don't need all of that because the project is not really an injector
Code:
If TextBox1.Text = "" Then
MsgBox ("Error! No process selected!", MessageBoxStyle.Critical, "Error! Code by ryakhawk" 'Give me credit!
Quote Originally Posted by StupidFuck View Post
Code:
If TextBox1.Text = "" Then
MsgBox ("Error! No process selected!", MessageBoxStyle.Critical, "Error! Code by ryakhawk" 'Give me credit!
Why don't you write "End If" or the code dont need it
Quote Originally Posted by yoyu333 View Post
Why don't you write "End If" or the code dont need it
I forgot it lol. Yes you require the end if.

---------- Post added at 10:26 PM ---------- Previous post was at 10:09 PM ----------

Quote Originally Posted by yoyu333 View Post
Why don't you write "End If" or the code dont need it
Did it work for you?
Quote Originally Posted by StupidFuck View Post
Code:
If TextBox1.Text = "" Then
MsgBox ("Error! No process selected!", MessageBoxStyle.Critical, "Error! Code by ryakhawk" 'Give me credit!
The Code Is Working Thank You But I Can't End It Cuse When I Click Inject Without The Process It Told Me Injected
Please Help Me About End It
Quote Originally Posted by yoyu333 View Post
The Code Is Working Thank You But I Can't End It Cuse When I Click Inject Without The Process It Told Me Injected
Please Help Me About End It
Well then your injector probably isnt a working injector... If it is, then tweak the code so it only dispays inject if it actually is.
Posts 110 of 10 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?