home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{20C62CAE-15DA-101B-B9A8-444553540000}#1.1#0"; "MSMAPI32.OCX"
- Begin VB.Form Form1
- BorderStyle = 3 'Fester Dialog
- Caption = "Form1"
- ClientHeight = 5775
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 3855
- Icon = "Form1.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 5775
- ScaleWidth = 3855
- StartUpPosition = 2 'Bildschirmmitte
- Begin VB.CommandButton Command1
- Caption = "&Info"
- Height = 435
- Index = 3
- Left = 60
- TabIndex = 7
- Top = 5280
- Width = 915
- End
- Begin VB.CommandButton Command1
- Caption = "&Abbruch"
- Height = 435
- Index = 1
- Left = 1020
- TabIndex = 6
- Top = 5280
- Width = 915
- End
- Begin VB.TextBox Anhang
- Height = 285
- Left = 960
- Locked = -1 'True
- MultiLine = -1 'True
- ScrollBars = 2 'Vertikal
- TabIndex = 4
- Text = "Form1.frx":0442
- Top = 4740
- Width = 2715
- End
- Begin VB.Frame Frame1
- Caption = "Empf
- ngerauswahl"
- Height = 5115
- Left = 60
- TabIndex = 8
- Top = 60
- Width = 3735
- Begin VB.TextBox Betreff
- Height = 285
- Left = 840
- TabIndex = 2
- Top = 1200
- Width = 2775
- End
- Begin VB.TextBox Nachricht
- Height = 2655
- Left = 120
- MultiLine = -1 'True
- ScrollBars = 2 'Vertikal
- TabIndex = 3
- Top = 1740
- Width = 3495
- End
- Begin VB.TextBox EmpfAdr
- Height = 285
- Left = 840
- TabIndex = 1
- Top = 660
- Width = 2775
- End
- Begin VB.TextBox EmpfName
- Height = 285
- Left = 840
- TabIndex = 0
- Top = 300
- Width = 2775
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fest Einfach
- Caption = "Betreff:"
- Height = 285
- Index = 3
- Left = 120
- TabIndex = 12
- Top = 1200
- Width = 705
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fest Einfach
- Caption = "Anhang:"
- Height = 285
- Index = 2
- Left = 180
- TabIndex = 11
- Top = 4680
- Width = 705
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fest Einfach
- Caption = "Adresse:"
- Height = 285
- Index = 1
- Left = 120
- TabIndex = 10
- Top = 660
- Width = 705
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fest Einfach
- Caption = "Name:"
- Height = 285
- Index = 0
- Left = 120
- TabIndex = 9
- Top = 300
- Width = 705
- End
- End
- Begin VB.CommandButton Command1
- Caption = "&Senden"
- Height = 435
- Index = 0
- Left = 1980
- TabIndex = 5
- Top = 5280
- Width = 1815
- End
- Begin MSMAPI.MAPIMessages MAPIMessages1
- Left = -120
- Top = 720
- _ExtentX = 1005
- _ExtentY = 1005
- _Version = 327681
- AddressEditFieldCount= 1
- AddressModifiable= 0 'False
- AddressResolveUI= 0 'False
- FetchSorted = 0 'False
- FetchUnreadOnly = 0 'False
- End
- Begin MSMAPI.MAPISession MAPISession1
- Left = -120
- Top = 60
- _ExtentX = 1005
- _ExtentY = 1005
- _Version = 327681
- DownloadMail = -1 'True
- LogonUI = -1 'True
- NewSession = 0 'False
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click(Index As Integer)
- Select Case Index
- Case 0 'send
- SendMail
- Unload Me
- Case 1 'abbr
- Unload Me
- Case 3 'info
- ShowInfo
- End Select
- End Sub
- Private Sub EmpfAdr_Change()
- ChkSendButtonConditions
- End Sub
- Private Sub EmpfName_Change()
- ChkSendButtonConditions
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- EndPrg
- End Sub
-