PDA

Click to See Complete Forum and Search --> : Desktop Handle (API?)


Wak
Nov 26th, 2000, 10:40 PM
Don't know if this classifies under the API section.
But how would I go about returning the Handle for the
windows 98 desktop?

Thanx for the Help.

YoungBuck
Nov 27th, 2000, 12:18 AM
Declare Function GetDesktopWindow Lib "user32" Alias "GetDesktopWindow" () As Long

Private Sub Form_Load()
Dim lDeskHwnd as Long

lDeskHwnd = GetDesktopWindow

End Sub

Wak
Nov 27th, 2000, 08:31 PM
Thanx for the help. Looks kinda simple when you put it that way.