home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- Declare Function mciSendString Lib "winmm.dll" _
- Alias "mciSendStringA" _
- (ByVal lpstrCommand As String, _
- ByVal lpstrReturnString As String, _
- ByVal uReturnLength As Long, _
- ByVal hwndCallback As Long) As Long
- Declare Function mciGetErrorString Lib "winmm.dll" Alias "mciGetErrorStringA" (ByVal dwError As Long, _
- ByVal lpstrBffer As String, ByVal uLength As Long) As Long
- Declare Function GetShortPathName Lib "kernel32" _
- Alias "GetShortPathNameA" _
- (ByVal lpszLongPath As String, _
- ByVal lpszShortPath As String, _
- ByVal cchBuffer As Long) As Long
-
- Option Explicit
- Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, _
- ByVal hWndInsertAfter _
- As Long, ByVal x _
- As Long, ByVal y _
- As Long, ByVal cx _
- As Long, ByVal cy _
- As Long, ByVal wFlags _
- As Long) As Long
- Sub Main()
- frmSplash.Show
- End Sub
-
-