If I add a TabStrip1 to a Form1 in a simple project I'm having a problem where 
TabStrip1 isn't recognized at runtime:

"VBScript runtime error - line 10, char 0 Object required: 'TabStrip1'" is the 
error.

I simply tried to .Add two tabs to the Tabs collection:

Sub Form1_Load
    TabStrip1.Tabs.Add , , "A"
    TabStrip1.Tabs.Add , , "B"
End Sub

Variation, same error in new location now of course:

TabStrip1.Tabs.Add 1, , "A"
TabStrip1.Tabs.Add 2, , "B"

Sub Form1_Load
End Sub

What am I missing here?  I have read TechNote 03n, is this the route I need to 
take instead of using the toolbox to create the control at design-time?

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en.

Reply via email to