Saturday, September 4, 2010

Creating a simple Chat Spammer using Visual Studio

This Chat Spammer simultaneously sends the same message again and again in a chat program. To create a simple Chat Spammer follow the steps below:

Open Visual Studio and create a new Windows Forms Application.

Add a Timer Control, 2 Buttons and a Textbox. Change the title of your form to Chat Spammer, Change the Textbox's text to "Enter message here" and Change the text of Button1 to "Start" and Button2 to "Stop" Now your application will look like this:


Double click "Start" button and write this code:

Timer1.Start()

Double click "Stop" button and write this code:

Timer1.Stop()

Now, write code for Timer1's Tick event by double clicking timer one and writing this code:

SendKeys.Send(TextBox1.Text)
SendKeys.Send("{Enter}")

Now, open debug the program and fill the text box with your message. Click start and put the cursor on a chat program's textbox.

Please contact me at mauhib@gmail.com and send me your suggestions.

4 comments:

wasikhan said...

good muhib very good keep going towARDS YOUR DESTINATION WHTEVER YOU WANT...

wasikhan said...

hey muhib good yarr done great job.....keep going towards your destination.desperately focus on your development and your studies
tc

Mauhib said...

Thanks

Unknown said...

Now, write code for how do you stop spam Timer1's Tick event by double clicking timer one and writing this code:

Share the Knowledge

My Card