piscis Posted July 18, 2003 Posted July 18, 2003 Does anyone know how to create a Image Index for a TabPage Control composed of 6 tabs. I need to place a small image right before the Tab Text. Quote
Leaders dynamic_sysop Posted July 18, 2003 Leaders Posted July 18, 2003 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim x As Integer For x = 0 To Me.TabControl1.TabCount - 1 Me.TabControl1.TabPages(x).ImageIndex = x '/// assuming you have 6 images in an imagelist. Next End Sub Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.