27. august 2001 - 14:21Der er
5 kommentarer og 1 løsning
Slå Start menuen og Alt+Tab og Alt+Esc til og fra
Jeg har et lille problem. Jeg skal bruge noget VB kode der kan slå, Startmenuen og den tast der får Startmenuen frem, fra og til. Jeg kunne også bruge noget kode der kan slå Alt+Tab til og fra og ligeså men Alt+Esc. Jeg håber at der er en der kan hjælpe mig.
Private Declare Function SetWindowPos Lib \"user32\" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long Private Declare Function FindWindow Lib \"user32\" Alias \"FindWindowA\" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Declare Function GetWindow Lib \"user32\" (ByVal hwnd As Long, ByVal wCmd As Long) As Long Private Declare Function GetClassName Lib \"user32\" Alias \"GetClassNameA\" (ByVal hwnd As Long, ByVal lpClassName As String, ByVal nMaxCount As Long) As Long
Dim tWnd As Long, bWnd As Long, sSave As String * 250
Private Sub Form_Load() tWnd = FindWindow(\"Shell_traywnd\", vbNullString) bWnd = GetWindow(tWnd, GW_CHILD) Do GetClassName bWnd, sSave, 250 If LCase(Left$(sSave, 6)) = \"button\" Then Exit Do bWnd = GetWindow(bWnd, GW_HWNDNEXT) Loop SetWindowPos bWnd, 0, 0, 0, 0, 0, SWP_HIDEWINDOW End Sub
Private Sub Form_Unload(Cancel As Integer) SetWindowPos bWnd, 0, 0, 0, 0, 0, SWP_SHOWWINDOW End Sub \'--------------------------- Form1 ---------------------------
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.