home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSlideShow
- Caption = "Control Array Example"
- ClientHeight = 6225
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 6420
- LinkTopic = "Form1"
- ScaleHeight = 6225
- ScaleWidth = 6420
- StartUpPosition = 3 'Windows Default
- Begin VB.Image imgFullSize
- BorderStyle = 1 'Fixed Single
- Height = 4575
- Left = 120
- Stretch = -1 'True
- Top = 1560
- Width = 6240
- End
- Begin VB.Image imgThumbnail
- BorderStyle = 1 'Fixed Single
- Height = 1305
- Index = 0
- Left = 120
- Stretch = -1 'True
- Top = 135
- Width = 1485
- End
- Begin VB.Image imgThumbnail
- BorderStyle = 1 'Fixed Single
- Height = 1305
- Index = 1
- Left = 1710
- Stretch = -1 'True
- Top = 135
- Width = 1485
- End
- Begin VB.Image imgThumbnail
- BorderStyle = 1 'Fixed Single
- Height = 1305
- Index = 2
- Left = 3285
- Stretch = -1 'True
- Top = 135
- Width = 1485
- End
- Begin VB.Image imgThumbnail
- BorderStyle = 1 'Fixed Single
- Height = 1305
- Index = 3
- Left = 4860
- Stretch = -1 'True
- Top = 120
- Width = 1485
- End
- Attribute VB_Name = "frmSlideShow"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub imgThumbnail_Click(Index As Integer)
- imgFullSize = imgThumbnail(Index)
- End Sub
-