I have created a ImageList1 and it has one (1) image in it. I then associate the image list with the TabControl1. For some reason, the image does not show on the tabpage1. What am I doing wrong Below is the code. Thanks in advance for your help.
William
Public Sub AddDWG()
Dim AcadDocs As AcadDocumentsDim Document As AcadDocument
AcadApp = StartCAD()
AcadDocs = AcadApp.Documents
For Each Document In
AcadDocs
Dim myTabPage As New Windows.Forms.TabPage()
myTabPage.ImageIndex = 0
myTabPage.Text = Document.Name
TabControl1.TabPages.Add(myTabPage)
Next
End Sub

Tab ImageIndex problem
AUEX
Fremen
Cano
My file uses the control created by Jorge Lopez ( http://www.jrl-e.com )to access AutoCAD and show my control. I am just assuming that it has to do something with that, I have posted a question on his website.
William
yuvals
Woody1287
Drewid
Yes, there are images, it’s funny, I run it in VB and I see the icons, but when the actual program runs under AutoCAD, the Icons are not shown.
Williamvbvj
William