home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 4140
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 6690
- Height = 4545
- Left = 1080
- LinkTopic = "Form1"
- ScaleHeight = 4140
- ScaleWidth = 6690
- Top = 1170
- Width = 6810
- Begin MSMAPI.MAPIMessages MAPIMessages1
- Left = 2220
- Top = 2040
- _Version = 65536
- _ExtentX = 741
- _ExtentY = 741
- _StockProps = 0
- End
- Begin MSMAPI.MAPISession MAPISession1
- Left = 1560
- Top = 2400
- _Version = 65536
- _ExtentX = 741
- _ExtentY = 741
- _StockProps = 0
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- '
- ' smallest e-mail program
- '
- MAPISession1.DownloadMail = False ' dont get new mail
- MAPISession1.NewSession = True ' force a unique session
- MAPISession1.UserName = "MS-Mail Only" ' username for mail
- MAPISession1.Password = "" ' users password
- MAPISession1.SignOn
- MsgBox Str(MAPISession1.SessionID) ' show unique session handle
- MAPISession1.SignOff
- End
- '
- End Sub
-