home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Visual Database
/
Visual BASIC 5.0 (Ent. Edition)
/
Vb5ent Extractor.EXE
/
VB
/
SAMPLES
/
COMPTOOL
/
ACTVCOMP
/
COFFEE
/
CWMOD1.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1996-11-27
|
423 b
|
16 lines
Attribute VB_Name = "Module1"
Option Explicit
Declare Function timeGetTime Lib "winmm.dll" () As Long
' CoffeeWatch must be an ActiveX Exe, because
' it exposes the public NotifyMe object
' used for the call-back method demo. It
' will never be started as a server, only
' as a standalone application.
Sub Main()
If App.StartMode = vbSModeStandalone Then
Form1.Show
End If
End Sub