G Guest Aug 17, 2007 #1 How do I make a particular tab on a forms tab control the one that is visible? I've tried me.myTab = 0 me.mytab.page(0).setfocus
How do I make a particular tab on a forms tab control the one that is visible? I've tried me.myTab = 0 me.mytab.page(0).setfocus
D Dave Peterson Aug 17, 2007 #2 On a tabstrip, you'd use: Me.TabStrip1.Value = 2 (0 is the first, 1 the second, ...) On a multipage control, you'd use: Me.MultiPage1.Value = 2 (0 is the first, 1 the second, ...)
On a tabstrip, you'd use: Me.TabStrip1.Value = 2 (0 is the first, 1 the second, ...) On a multipage control, you'd use: Me.MultiPage1.Value = 2 (0 is the first, 1 the second, ...)