This is one of my first programs made using Visual Basic.
I know it's not much of a big deal but I though i should share it and start contributing to the community with this.
Public Class Form1
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
spammer.Interval = interval.Text
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Enabled = True
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Enabled = False
spammer.Interval = False
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
spammer.Enabled = True
End Sub
Private Sub spammer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles spammer.Tick
SendKeys.Send(Message.Text & "{ENTER}")
End Sub
End Class
Thank you for your time
Thanks for sharing. Hope to see good and useful releases from you in the future. =)
Originally Posted by Xscapism
Thanks for sharing. Hope to see good and useful releases from you in the future. =)
Thank you
make the file as a attachment.
No outside links.
Make it an attachment.
You have 1 day or close and ban.
Nice design
Originally Posted by Lolland
No outside links.
Make it an attachment.
You have 1 day or close and ban.
Sorry, I fixed it
Also, the scan is broken D:
Good for your first, even if it is a spammer
Nice design, nice job
Ok it's good, but this shouldn't be the point of showing your first releases.. like:
"Yay i did a spammer.."
And all we can comment about is the GUI, because honestly it will be useless to us. And if we can't really give you any advice other then GUI then it is worthless to Post it.
Start at least posting the code of your programs so anyone can actually give you advices on how to improve... And if you are afraid of posting the code of such basic applications, then you are not doing it right.
I'm talking in general, not only to you. Half of this section has numerous releases of the same thing. Webbrowsers, spammers, loaders, etc..
How useful are they? None.. How useful was for the guy who posted it? Nothing. He got either flammed or basically ignored.
Guys, this is the coding section. Code should go in here.. If you want advices or anything from here.. should be coding advices, not GUI.
PS: Yea im a leecher and all i want is your code so i can leech and be a pro reposting something.
Brinuz is right, we can't give proper criticism without seeing the code. \:
Originally Posted by Lolland
No outside links.
Make it an attachment.
You have 1 day or close and ban.
Should work now. O_O
Originally Posted by Brinuz
Ok it's good, but this shouldn't be the point of showing your first releases.. like:
"Yay i did a spammer.."
And all we can comment about is the GUI, because honestly it will be useless to us. And if we can't really give you any advice other then GUI then it is worthless to Post it.
Start at least posting the code of your programs so anyone can actually give you advices on how to improve... And if you are afraid of posting the code of such basic applications, then you are not doing it right.
I'm talking in general, not only to you. Half of this section has numerous releases of the same thing. Webbrowsers, spammers, loaders, etc..
How useful are they? None.. How useful was for the guy who posted it? Nothing. He got either flammed or basically ignored.
Guys, this is the coding section. Code should go in here.. If you want advices or anything from here.. should be coding advices, not GUI.
PS: Yea im a leecher and all i want is your code so i can leech and be a pro reposting something.
I'm fine with adding the Code, which I already did, Enjoy.
Ok I approved, next time have 2 virus scans though.
Tip for you:
Rename your controls. Atleast controls you are accessing...you sure don't have to rename every unused label...but buttons...
like...
cmdStartSpam
btnStartSpam
w/e.
Else, you will always have to switch back to your GUI, click on the button to see which button it is. Helps a lot.