Hi ! I'm getting some errors with my Skype spammer and i was using DotNetBar. I made my Skype spammer like 3 months ago but i couldn't finish it because i got a bad virus on my computer (Windows 7) and then i had to get Linux onto my computer Etc.. So now i am using my brothers computer (Windows 8) But he didn't have DotNetBar installed onto his computer then i installed it. and now there is still errors. i thought i got them fixed but no
Soo... here are the screen Shot >>> http.://DOTdpr/i/DOTMwHk Take out the "DOT"
Code:
Imports SKYPE4COMLib
Public Class Form1
Public WithEvents skype As New SKYPE4COMLib.Skype
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Timer1.Enabled = True
MessageBox.Show("Spam has started !")
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Timer1.Enabled = False
TextBox1.Text = "Contact Name"
TextBox2.Text = "Message"
TextBox3.Text = "MS"
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
End
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Skype.SendMessage(TextBox1.Text, TextBox2.Text)
End Sub
Public Sub interval()
Timer1.Interval = (TextBox3.Text)
End Sub
Private Sub Timer2_Tick(sender As Object, e As EventArgs) Handles Timer2.Tick
If Label1.Location.X + Label1.Width < 0.0 Then
Label1.Location = New Point(Me.Width, Label1.Location.Y)
Else
Label1.Location = New Point(Label1.Location.X - 3, Label1.Location.Y)
End If
End Sub
End Class
Code:
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1))
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.TextBox2 = New System.Windows.Forms.TextBox()
Me.TextBox3 = New System.Windows.Forms.TextBox()
Me.Button1 = New System.Windows.Forms.Button()
Me.Button2 = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.Button3 = New System.Windows.Forms.Button()
Me.LabelX1 = New DevComponents.DotNetBar.LabelX()
Me.Timer2 = New System.Windows.Forms.Timer(Me.components)
Me.Button4 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'TextBox1
'
Me.TextBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.TextBox1.ForeColor = System.Drawing.Color.Black
Me.TextBox1.Location = New System.Drawing.Point(12, 111)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(110, 22)
Me.TextBox1.TabIndex = 0
Me.TextBox1.Text = "Contact Name"
'
'TextBox2
'
Me.TextBox2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.TextBox2.Location = New System.Drawing.Point(12, 147)
Me.TextBox2.Multiline = True
Me.TextBox2.Name = "TextBox2"
Me.TextBox2.Size = New System.Drawing.Size(206, 123)
Me.TextBox2.TabIndex = 1
Me.TextBox2.Text = "Message"
'
'TextBox3
'
Me.TextBox3.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.TextBox3.Location = New System.Drawing.Point(179, 111)
Me.TextBox3.Name = "TextBox3"
Me.TextBox3.Size = New System.Drawing.Size(39, 22)
Me.TextBox3.TabIndex = 2
Me.TextBox3.Text = "MS"
'
'Button1
'
Me.Button1.BackColor = System.Drawing.Color.Black
Me.Button1.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Button1.FlatAppearance.BorderSize = 2
Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.Button1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button1.ForeColor = System.Drawing.Color.Lime
Me.Button1.Location = New System.Drawing.Point(224, 159)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(87, 30)
Me.Button1.TabIndex = 3
Me.Button1.Text = "START"
Me.Button1.UseVisualStyleBackColor = False
'
'Button2
'
Me.Button2.BackColor = System.Drawing.Color.Black
Me.Button2.FlatAppearance.BorderColor = System.Drawing.Color.Red
Me.Button2.FlatAppearance.BorderSize = 2
Me.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.Button2.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button2.ForeColor = System.Drawing.Color.Red
Me.Button2.Location = New System.Drawing.Point(224, 227)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(87, 30)
Me.Button2.TabIndex = 4
Me.Button2.Text = "STOP"
Me.Button2.UseVisualStyleBackColor = False
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(224, 111)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(42, 13)
Me.Label1.TabIndex = 5
Me.Label1.Text = "Interval"
'
'Timer1
'
Me.Timer1.Interval = 1
'
'Button3
'
Me.Button3.BackColor = System.Drawing.SystemColors.ActiveCaptionText
Me.Button3.FlatAppearance.BorderColor = System.Drawing.Color.Black
Me.Button3.FlatAppearance.BorderSize = 2
Me.Button3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer))
Me.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.Button3.Font = New System.Drawing.Font("Xirod", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button3.ForeColor = System.Drawing.Color.Red
Me.Button3.Location = New System.Drawing.Point(237, 0)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(64, 42)
Me.Button3.TabIndex = 6
Me.Button3.Text = "X"
Me.Button3.UseVisualStyleBackColor = False
'
'LabelX1
'
'
'
'
Me.LabelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square
Me.LabelX1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.LabelX1.ForeColor = System.Drawing.Color.Blue
Me.LabelX1.Location = New System.Drawing.Point(307, 35)
Me.LabelX1.Name = "LabelX1"
Me.LabelX1.SingleLineColor = System.Drawing.Color.Red
Me.LabelX1.Size = New System.Drawing.Size(127, 30)
Me.LabelX1.Symbol = ""
Me.LabelX1.SymbolColor = System.Drawing.Color.Red
Me.LabelX1.TabIndex = 7
Me.LabelX1.Text = "Made By FaTaL"
'
'Timer2
'
Me.Timer2.Enabled = True
Me.Timer2.Interval = 25
'
'Button4
'
Me.Button4.FlatAppearance.BorderColor = System.Drawing.Color.Black
Me.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.Button4.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button4.ForeColor = System.Drawing.Color.Blue
Me.Button4.Location = New System.Drawing.Point(75, 5)
Me.Button4.Name = "Button4"
Me.Button4.Size = New System.Drawing.Size(134, 29)
Me.Button4.TabIndex = 8
Me.Button4.Text = "Email Bomber"
Me.Button4.UseVisualStyleBackColor = True
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.Color.Black
Me.ClientSize = New System.Drawing.Size(323, 282)
Me.ControlBox = False
Me.Controls.Add(Me.Button4)
Me.Controls.Add(Me.LabelX1)
Me.Controls.Add(Me.Button3)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.TextBox3)
Me.Controls.Add(Me.TextBox2)
Me.Controls.Add(Me.TextBox1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "Form1"
Me.Text = "~~FaTaL~~"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Timer1 As System.Windows.Forms.Timer
Friend WithEvents Button3 As System.Windows.Forms.Button
Friend WithEvents LabelX1 As DevComponents.DotNetBar.LabelX
Friend WithEvents Timer2 As System.Windows.Forms.Timer
Friend WithEvents Button4 As System.Windows.Forms.Button
End Class