Just modifying some code, to :
1) Set a Shape (Bor1 to 16) to .Visible = true
2) Set an Image controls ToolTipText (Img1 to 16) to a hidden text controls.Text.
The code works, but just checking to see if I have done it correctly:
<pre>Private Function imgclick(i As Integer)
If Me.Controls("Text" & i) = vbNullString Then Exit Function
Pdf1.Visible = False
Dim z As Integer
For z = 1 To intNumberOfImages
Me.Controls("bor" & z).Visible = False
Next
Me.PreviewImg.Picture = Me.Controls("img" & i).Picture
Me.Controls("bor" & i).Visible = True
Me.Controls("img" & i).ToolTipText = Me.Controls("text" & i).Text
End Function</pre>



