home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form MainForm
- Caption = "PC Plus Mailing List"
- ClientHeight = 4395
- ClientLeft = 165
- ClientTop = 735
- ClientWidth = 6135
- LinkTopic = "Form1"
- ScaleHeight = 4395
- ScaleWidth = 6135
- StartUpPosition = 3 'Windows Default
- Begin VB.Data Data2
- Caption = "Data2"
- Connect = "Access"
- DatabaseName = "C:\pcplus\vbwkshp\issue159\newslist.mdb"
- DefaultCursorType= 0 'DefaultCursor
- DefaultType = 2 'UseODBC
- Exclusive = 0 'False
- Height = 495
- Left = 3120
- Options = 0
- ReadOnly = 0 'False
- RecordsetType = 1 'Dynaset
- RecordSource = "MailingDate"
- Top = 2640
- Visible = 0 'False
- Width = 1815
- End
- Begin VB.Data Data1
- Caption = "Data1"
- Connect = "Access"
- DatabaseName = "C:\pcplus\vbwkshp\issue159\newslist.mdb"
- DefaultCursorType= 0 'DefaultCursor
- DefaultType = 2 'UseODBC
- Exclusive = 0 'False
- Height = 495
- Left = 3120
- Options = 0
- ReadOnly = 0 'False
- RecordsetType = 1 'Dynaset
- RecordSource = "Recipients"
- Top = 3480
- Visible = 0 'False
- Width = 1815
- End
- Begin VB.Menu Add
- Caption = "Add"
- End
- Begin VB.Menu Edit
- Caption = "Edit"
- End
- Begin VB.Menu Delete
- Caption = "Delete"
- End
- Begin VB.Menu Send
- Caption = "Send"
- End
- Begin VB.Menu SendAll
- Caption = "Send All"
- End
- Begin VB.Menu Report
- Caption = "Report"
- End
- Begin VB.Menu Quit
- Caption = "Quit"
- End
- Attribute VB_Name = "MainForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Add_Click()
- AddRecipient.Show vbModal
- End Sub
- Private Sub Delete_Click()
- DeleteRecipient.Show vbModal
- End Sub
- Private Sub Edit_Click()
- EditRecipient.Show vbModal
- End Sub
- Private Sub Quit_Click()
- Unload Me
- End Sub
- Private Sub Report_Click()
- Reports.Show vbModal
- End Sub
- Private Sub Send_Click()
- SendToRecipient.Show vbModal
- End Sub
- Private Sub SendAll_Click()
- Call SendAllMail
- End Sub
-