005
07.08.2004, 13:37 Uhr
cOdexer
|
nunja, man kanns mit ner api so lösen
Visual Basic: |
Private Declare Sub keybd_event Lib "user32" ( _ ByVal bVk As Byte, _ ByVal bScan As Byte, _ ByVal dwFlags As Long, _ ByVal dwExtraInfo As Long) Private Sub SendKey(Keycode As KeyCodeConstants) Call keybd_event(Keycode, 0, 0, 0) End Sub Private Sub Form_Load() SendKey vbKeyReturn End Sub
|
hoffe das hilft |