Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Timer1.Enabled = True
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.FixedToolWindow
Me.StartPosition = FormStartPosition.CenterScreen
Me.Width = 228
Me.Height = 94
Me.Label1.Width = 65
Me.Label1.Height = 12
Me.Label2.Width = 118
Me.Label2.Height = 12
Me.Label3.Width = 132
Me.Label3.Height = 13
Me.Text = "Seheylan Loader"
Me.Label1.Text = "Loader Status: "
Me.Label2.Text = "Waiting For wolftü.bin..."
Me.Label3.Text = "seheylan -- BetaCrews.net"
Me.TopMost = True
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
If (Enumerable.Count(Of Process)(Process.GetProcessesByName("wolftü.bin"))) Then
Label2.Text = "wolftü.bin Found"
Me.Hide()
End If
End Sub
End Class