VB Code:
  1. Private Declare Sub ExitWindowsDialog Lib "shell32.dll" Alias "#60" (ByVal hwnd As Long)
  2.  
  3. Private Sub Form_Load()
  4.  
  5.     ' Shut Down Windows dialog box.
  6.  
  7.     ExitWindowsDialog 0
  8.  
  9. End Sub