So Today Guys I Am Showing Tutorial about Muti Tool. Easy And Simple.
Language: VB 08/10
Features:
Crosshair
Injector
Clock
Spammer
First Will Start With Crosshair.
1-Create New Project

2-Re-Size Form, Add 2 Buttons/Radio buttons
-Show Icon: False
-Minimize Box: False
-FormBorederStyle: FixedSingle

3-Create New Form (CTRL + SHIFT + A)
-Choose Windows Form

4-Re Size The Form To "44, 35"
-StartPosition: CenterScreen
-FormBorederStyle: None
-BackColor:Black(Or Like You Want)
-Add: OvalShape , LineShape(Edit Them Like the Pic)
It will be like that:

5-Coding
-Go To Form1
-Double Click On "On" Button
-"
Form2.show"
-Double Click On "OFF" Button
-"
Form2.close"
Crosshair Done.
--------------------------------------------------------------------------------
Injector (GUI)
1-Create New Project

2-Re-Make Your Form
-I Choose FormBorederStyle: None
-StartPosition: CenterScreen
-BackColor: Black (Or Like You want)
3-Create:
-6 Buttons, To Make it Better Look.
-FlatStyle: Flat Or PopUp
-2 RadioButtons
-1 CheckBox
-1 ListBox
-2 Lables
-1 Textbox
4-Re-Name:
- 1 Button: Browse
- 1 Button: Remove
- 1 Button: Clear List
- 1 Button: Inject
- 1 Button: X
- 1 Button: -
- 1 Radiobutton: Automatic
- 1 CheckBox: Close after inject
- 1 Label: Status:
- 1 Label: ...
5-Coding:
- Double Click On Button "X"
- Code: "
Me.Close"
- Go To Form1 Again
- Double Click On Button "-"
- Code: "
WindowState = FormWindowState.Minimized"
It Will Look Like that:

Injector GUI, Finished. I Say The Minimize button code, because it will help much people.
--------------------------------------------------------------------------------
Clock (Easy)
1-Create New Project

2-Re-Size
-FormBorederStyle: None
-StartPosition: CenterScreen
3-Create:
-1 Label
-1 Timer
Coding:
- Double Click On "Form1" (To Make it Move Able")
-
Code:
Public Class Form1
#Region " Global Variables "
Dim Point As New System.Drawing.Point()
Dim X, Y As Integer
#End Region
#Region " GUI "
Private Sub Form_MouseMove(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseMove
If e.Button = MouseButtons.Left Then
Point = Control.MousePosition
Point.X = Point.X - (X)
Point.Y = Point.Y - (Y)
Me.Location = Point
End If
End Sub
Private Sub Form_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseDown
X = Control.MousePosition.X - Me.Location.X
Y = Control.MousePosition.Y - Me.Location.Y
End Sub
#End Region
End Class
Like That:

- Double Click On "Timer1"
- Code:
"Label1.Text = TimeOfDay"
EDIT:
- Timer1 >> Interval >> 1
- Timer1 >> Enabled >> True
That Will Be:

Click Finished!
--------------------------------------------------------------------------------
Spammer
1-Create New Project

2-Re-Size
- Like You Want.
3-Create:
- 2 Buttons
- 1 Timer
- 2 TextBox
Like That:

Coding:
- Double Click On Button "Start"
- Code: "
Timer1.Interval = TextBox2.Text
Timer1.Enabled = True"
- Return To Form1
- Double Click On Button "Stop"
- Code: "
Timer1.Interval = TextBox2.Text
Timer1.Enabled = False"
- Return To Form1 Again
- Double Click On "Timer1"
- Code: "
SendKeys.Send(TextBox1.Text)
SendKeys.Send("{enter}")"
Like That Your Programs Is Done!
--------------------------------------------------------------------------------
Please Click On Thanks Button. =)
Code Will Be Underlined And be highlighted with
RED @
Hannibal @
BACKD00R @
Xebec @
heythere123 Can it be Sticky?