Skip to main content

AccessTr.neT


Windows tanıtıcı al

Windows tanıtıcı al

#4
aşağıdaki kod accesse uyarlanabilir mi
Kod:
Func Example()
; Run Notepad
Run("notepad.exe")

; Wait 10 seconds for the Notepad window to appear.
Local $hWnd = WinWait("[CLASS:Notepad]", "", 10)

; Convert the handle to a string.
Local $sHWnd = String($hWnd)

; Minimize the Notepad window and wait for 2 seconds.
WinSetState(HWnd($sHWnd), "", @SW_MINIMIZE)
Sleep(2000)

; Restore the Notepad window and wait for 2 seconds.
WinSetState(HWnd($sHWnd), "", @SW_RESTORE)
Sleep(2000)

WinClose(HWnd($sHWnd)) ; Close the Notepad window.
EndFunc ;==>Example

@benbendedeilem
Son Düzenleme: 22/05/2012, 21:03, Düzenleyen: accessman.
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Windows tanıtıcı al - Yazar: accessman - 21/05/2012, 12:08
Cvp: Windows tanıtıcı al - Yazar: access_delisi - 21/05/2012, 19:56
Cvp: Windows tanıtıcı al - Yazar: DUAYEN - 22/05/2012, 19:14
Cvp: Windows tanıtıcı al - Yazar: accessman - 22/05/2012, 20:57
RE: Windows tanıtıcı al - Yazar: accessman - 11/04/2020, 19:59
Task