- Konu Yazar
- #1
beyler tamamen kendi kurmus oldugum mantık 

Mantık şu DELETE tuşuna BASINCA formun captionu soacs koxp oluyor ve oyun kapanıyor
Çalışıyor Lakin exeyi knightempire gömünce işlevini kaybediyor..
olmadı launchere felan gömücem exeyi
code :


Mantık şu DELETE tuşuna BASINCA formun captionu soacs koxp oluyor ve oyun kapanıyor

Çalışıyor Lakin exeyi knightempire gömünce işlevini kaybediyor..
olmadı launchere felan gömücem exeyi

code :
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Private Sub Form_Load()
Me.Hide ' Gizli çalışır..
App.TaskVisible = False ' uygulamalarda gizlenir
End Sub
Private Sub Form_Unload(Cancel As Integer)
End
End Sub
Private Sub Timer1_Timer()
If GetAsyncKeyState(vbKeyDelete) Then
Form1.Caption = "soacs Koxp "
Timer2.Enabled = True
End If
End Sub
Private Sub Timer2_Timer()
End
End Sub