home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.PropertyPage ppVB6DB
- Caption = "Selezione DB"
- ClientHeight = 3495
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 5925
- PaletteMode = 0 'Halftone
- ScaleHeight = 3495
- ScaleWidth = 5925
- Begin VB.TextBox Text3
- Height = 915
- Left = 2940
- Locked = -1 'True
- MultiLine = -1 'True
- TabIndex = 4
- Top = 1740
- Width = 2655
- End
- Begin VB.TextBox Text2
- Height = 555
- Left = 2940
- Locked = -1 'True
- MultiLine = -1 'True
- TabIndex = 3
- Top = 840
- Width = 2655
- End
- Begin VB.ListBox List1
- Height = 1815
- Left = 120
- MouseIcon = "ppVB6DB.pgx":0000
- MousePointer = 99 'Custom
- TabIndex = 2
- Top = 840
- Width = 2715
- End
- Begin VB.TextBox Text1
- Height = 315
- Left = 120
- Locked = -1 'True
- TabIndex = 1
- Top = 480
- Width = 2715
- End
- Begin VB.Label Label2
- AutoSize = -1 'True
- Caption = "Recordset"
- Height = 195
- Left = 2940
- TabIndex = 6
- Top = 1500
- Width = 735
- End
- Begin VB.Label Label1
- AutoSize = -1 'True
- Caption = "Database"
- Height = 195
- Left = 2940
- TabIndex = 5
- Top = 600
- Width = 690
- End
- Begin VB.Label lblNomeDB
- AutoSize = -1 'True
- Caption = "Fonte dati DB"
- Height = 195
- Left = 120
- TabIndex = 0
- Top = 240
- Width = 975
- End
- End
- Attribute VB_Name = "ppVB6DB"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
-
-
-
- Private Sub List1_Click()
- Text1.Text = List1.List(List1.ListIndex)
- SelectedControls(0).LeggiDB Text1.Text, Text2, Text3
- Changed = True
- End Sub
-
-
- Private Sub PropertyPage_ApplyChanges()
- SelectedControls(0).NomeDB = Text1.Text
- End Sub
-
-
- Private Sub PropertyPage_SelectionChanged()
- List1.Clear
- Text1.Text = SelectedControls(0).NomeDB
- SelectedControls(0).TrovaDBControlli List1
-
- End Sub
-
-
-