The only way I see is using the ImageCombo control which is in the Microsoft Windows Common Controls.
Code:
'Syntax:
'ImageCombo1.ComboItems.Add [Index], [Key], [Text], [Image], [SelImage], [Indentation]
ImageCombo1.ComboItems.Add , "Page 2", "Utilities is page 2"
ImageCombo1.ComboItems.Add , "Page 3", "Approach is page 3"
ImageCombo1.ComboItems.Add , "Page 4", "Abutments is page 4"
You can't use keys like "1" for keys because VB requires alphabet characters in each key.
That way you can get the page number like this:
Code:
PageNum& = Right(ImageCombo1.SelectedItem.Key, 1)
Hope this helps.