home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.PropertyPage General
- Caption = "General"
- ClientHeight = 3495
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 5925
- PaletteMode = 0 'Halftone
- ScaleHeight = 3495
- ScaleWidth = 5925
- Begin VB.TextBox txtNumberMask
- Height = 330
- Left = 90
- TabIndex = 5
- Top = 1670
- Width = 2700
- End
- Begin VB.TextBox txtOutsetTag
- Height = 330
- Left = 90
- TabIndex = 3
- Top = 1020
- Width = 2700
- End
- Begin VB.TextBox txtInsetTag
- Height = 330
- Left = 90
- TabIndex = 1
- Top = 370
- Width = 2700
- End
- Begin VB.Label lblNumberMask
- Caption = "NumberMask:"
- Height = 240
- Left = 90
- TabIndex = 4
- Top = 1420
- Width = 2700
- End
- Begin VB.Label lblOutsetTag
- Caption = "OutsetTag:"
- Height = 240
- Left = 90
- TabIndex = 2
- Top = 770
- Width = 2700
- End
- Begin VB.Label lblInsetTag
- Caption = "InsetTag:"
- Height = 240
- Left = 90
- TabIndex = 0
- Top = 120
- Width = 2700
- End
- End
- Attribute VB_Name = "General"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- Option Explicit
- Private Sub txtNumberMask_Change()
- Changed = True
- End Sub
-
-
- Private Sub txtOutsetTag_Change()
- Changed = True
- End Sub
-
-
- Private Sub txtInsetTag_Change()
- Changed = True
- End Sub
-
-
- Private Sub PropertyPage_ApplyChanges()
- SelectedControls(0).NumberMask = txtNumberMask.Text
- SelectedControls(0).OutsetTag = txtOutsetTag.Text
- SelectedControls(0).InsetTag = txtInsetTag.Text
- End Sub
-
-
-
- Private Sub PropertyPage_SelectionChanged()
- txtNumberMask.Text = SelectedControls(0).NumberMask
- txtOutsetTag.Text = SelectedControls(0).OutsetTag
- txtInsetTag.Text = SelectedControls(0).InsetTag
- End Sub
-
-
-