Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Label1.Text = "Processing..."
Timer1.Enabled = True
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Timer1.Enabled = False
Dim ProcessName As Process() = Process.GetProcessesByName("firefox.exe")
Label1.Text = "Ready..."
Label1.ForeColor = Color.Green
End Sub
End Class
ขอบคุณมากครับๆพี่ ได้แล้วๆ ดีใจๆ
แล้วคืออยากถามต่ออีกนิดอ้ะครับว่า
สมมุติผมจะทำ โปรแกรม All in one เมื่อ คลิก button1 จะรัน xxx.exe
แต่อยากทราบว่าจะนำไฟล์ xxx.exe ยัดลงไปในโปรแกรม ตอนเขียนยังไงอ้ะครับ หรือทำไม่ได้อ้ะ ต้องไว้ที่เดียวกะEXE
ขอบคุณครับ แค่นี้ ก้บุญแล้วครับที่ ท่านตอบผม
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Label1.Text = "Processing..."
Timer1.Enabled = True
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Timer1.Enabled = False
Dim ProcessName As Process() = Process.GetProcessesByName("firefox")
If ProcessName.Length = 1 Then
Label1.Text = "Ready..."
Label1.ForeColor = Color.Green
End If
End Sub
End Class