Help Please

09/08/2014 15:30 Alshab7Abdo1#1
Hello Guys Iam New In Code World :P

What Is wrong By This Code Please Help

Image Of Errors Help Plz [Only registered and activated users can see links. Click Here To Register...]
09/08/2014 15:38 snow#2
Check your parentheses.

#moved
09/08/2014 15:42 Devsome#3
Snow gave you the correct answer.

Code:
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked = True Then
WriteLong("S4Client.exe", &H0x008F170E, 1166868842);
End If
End Sub
End Class
09/08/2014 15:44 Alshab7Abdo1#4
Quote:
Originally Posted by Devsome View Post
Snow gave you the correct answer.

Code:
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked = True Then
WriteLong("S4Client.exe", &H0x008F170E, 1166868842);
End If
End Sub
End Class
iam try it and same error
09/08/2014 17:46 Mostey#5
Quote:
Originally Posted by Alshab7Abdo1 View Post
iam try it and same error
You most likely forgot to specify an argument, just as the compiler is telling you. It's not possible to help you without knowing what the function declaration looks like.
09/08/2014 18:21 Requi#6
Code:
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked = True Then
WriteLong("S4Client.exe", &H008F170E, 1166868842);
End If
End Sub
End Class
Should work now.
09/08/2014 18:22 YatoDev#7
Quote:
Originally Posted by Devsome View Post
Snow gave you the correct answer.

Code:
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked = True Then
WriteLong("S4Client.exe", &H0x008F170E, 1166868842);
End If
End Sub
End Class
to:

or:



Quote:
Originally Posted by Requi View Post
Should work now.
hast was vergessen ;)
09/09/2014 00:16 Alshab7Abdo1#8
Quote:
Originally Posted by »FlutterShy™ View Post
to:

or:





hast was vergessen ;)
thx
Quote:
Originally Posted by Requi View Post
Code:
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked = True Then
WriteLong("S4Client.exe", &H008F170E, 1166868842);
End If
End Sub
End Class
Should work now.
Thx You

new error [Only registered and activated users can see links. Click Here To Register...]
09/09/2014 04:17 Requi#9
Quote:
Originally Posted by »FlutterShy™ View Post
to:

or:





hast was vergessen ;)
Was hab ich denn vergessen?





Quote:
Originally Posted by Alshab7Abdo1 View Post
thx


Thx You

new error [Only registered and activated users can see links. Click Here To Register...]
Then remove the ;
09/09/2014 12:00 Alshab7Abdo1#10
Quote:
Originally Posted by Requi View Post
Was hab ich denn vergessen?







Then remove the ;
when i remove it 00 is removed :mad::mad:
09/09/2014 21:19 Requi#11
Code:
Public Class Form1

Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked = True Then
WriteLong("S4Client.exe", &H008F170E, 1166868842)
End If
End Sub
End Class
09/10/2014 08:27 Alshab7Abdo1#12
When Iam Remove (;) He Removed (0):mad::rtfm:[Only registered and activated users can see links. Click Here To Register...]
09/10/2014 09:25 Mostey#13
Leading zeros can be omitted, there's no difference between 0x008F170E and 0x8F170E.

I suggest you learn the basics first if you aren't able to solve obvious errors like the one with the wrong placed semicolon.
09/10/2014 15:27 Alshab7Abdo1#14
Quote:
Originally Posted by Mostey View Post
Leading zeros can be omitted, there's no difference between 0x008F170E and 0x8F170E.

I suggest you learn the basics first if you aren't able to solve obvious errors like the one with the wrong placed semicolon.
Man Iam Was Making Wolfteam Hack But Iam have error But I can't fix it
09/10/2014 15:44 snow#15
I'd recommend you to learn the language first, this section is intended for help and advice, not spoon feeding.

#closed