home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- BorderStyle = 4 'Festes Werkzeugfenster
- Caption = "Form2"
- ClientHeight = 2715
- ClientLeft = 45
- ClientTop = 285
- ClientWidth = 3555
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2715
- ScaleWidth = 3555
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'Bildschirmmitte
- Begin VB.Frame Frame1
- Caption = "Wo soll der neue Mailfix-Link erscheinen"
- Height = 975
- Index = 1
- Left = 60
- TabIndex = 6
- Top = 1140
- Width = 3435
- Begin VB.OptionButton LocOpt
- Caption = "Auf der Arbeitsoberfl
- che (Desktop)"
- Height = 195
- Index = 1
- Left = 180
- TabIndex = 2
- Top = 600
- Width = 3075
- End
- Begin VB.OptionButton LocOpt
- Caption = "Im Verzeichnis ""Senden an"""
- Height = 195
- Index = 0
- Left = 180
- TabIndex = 1
- Top = 300
- Value = -1 'True
- Width = 3075
- End
- End
- Begin VB.CommandButton Btn
- Caption = "&Abbruch"
- Height = 435
- Index = 1
- Left = 1440
- TabIndex = 4
- Top = 2220
- Width = 975
- End
- Begin VB.CommandButton Btn
- Caption = "&OK"
- Enabled = 0 'False
- Height = 435
- Index = 0
- Left = 2520
- TabIndex = 3
- Top = 2220
- Width = 975
- End
- Begin VB.Frame Frame1
- Caption = "Wie soll der neue Mailfix-Link hei
- Height = 975
- Index = 0
- Left = 60
- TabIndex = 5
- Top = 60
- Width = 3435
- Begin VB.TextBox Text1
- Height = 285
- Left = 180
- TabIndex = 0
- Top = 420
- Width = 3075
- End
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Btn_Click(Index As Integer)
- If Index Then
- End 'abb
- Else
- NewLinkName = Trim(Text1.Text)
- If NewLinkNameOk Then 'ok
- MakeLink
- Else
- MsgBox cMsgInvalidChar, vbCritical, Title
- Text1.SetFocus
- End If
- End If
- End Sub
- Private Sub LocOpt_Click(Index As Integer)
- LocOptIdx = Index
- End Sub
- Private Sub Text1_Change()
- Btn(0).Enabled = Trim(Text1.Text) <> ""
- End Sub
-