- Yasaklandı
- #1
Dim myProcess As Process() = Process.GetProcesses
Dim title As String
For Each process As Process In myProcess
If process.ProcessName = "Java" Then 'javanın görev yöneticisinde gördüğün adı tam olarak bilmiyorum minecraft yok bende
title = InStr(process.MainWindowTitle, "Minecraft")
If title Then
msgbox("minecraft açık!")
End If
End If
Next