| 'messagebox
using API calls
Private Declare Function MessageBox
Lib "user32" Alias "MessageBoxA"
(ByVal hwnd As Long, ByVal lpText
As String, ByVal lpCaption As String,
ByVal wType As Long) As Long
Private Sub Form_Load()
MessageBox Me.hwnd, "Hello World",
"Hello World", 3
End Sub
|