on a tabstrip control (Microsoft Common COntrol) how can i do this
where tab.caption = "name" remove.tab = "name"
get index where caption name = "name"
thanks
brooke
Printable View
on a tabstrip control (Microsoft Common COntrol) how can i do this
where tab.caption = "name" remove.tab = "name"
get index where caption name = "name"
thanks
brooke
Ask and yea shall receive
Code:Dim intIndex As Integer
For intIndex = 1 To TabStrip1.Tabs.Count
If TabStrip1.Tabs(intIndex).Caption = "name" Then
TabStrip1.Tabs.Remove (intIndex)
MsgBox "Removed tab " & intIndex
End If
Next
------------------
Marty
What did the fish say when it hit the concrete wall?
> > > > > "Dam!"