home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- ' This forces you to define all variables, good
- ' programming practice
- Option Explicit
- ' This simply says any variable not defined
- ' a type, will default to integer
- DefInt A-Z
-
- 'Global variables
- Global Server As String 'server hostname
- Global Port As String 'port number
- Global Nickname As String 'my nickname
-