Hand Cursor (For Windows <= XP)
API:
1 Private Declare Function SetCursor Lib "user32" (ByVal hCursor As Long) As Long
Add to MouseMove:
1 If Button = 0 Then SetCursor 65581
Move Window By Object
API:
Add to MouseDown:
Open URL With Default Browser
API:
1 Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Add to anywhere:
1 Result = ShellExecute(0, vbNullString, "http://felixc.at", vbNullString, vbNullString, SW_SHOWNORMAL)
References:
