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.
Printable View
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.
Code:Declare Function GetDesktopWindow Lib "user32" Alias "GetDesktopWindow" () As Long
Private Sub Form_Load()
Dim lDeskHwnd as Long
lDeskHwnd = GetDesktopWindow
End Sub
Thanx for the help. Looks kinda simple when you put it that way.