DOCUMENT:Q192187 03-SEP-1998 [vbwin] TITLE :PRB: TabStrip MultiRow Only True When Placement Not Top PRODUCT :Microsoft Visual Basic for Windows PROD/VER:WINDOWS:6.0 OPER/SYS:WINDOWS KEYWORDS: ====================================================================== --------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual Basic Professional and Enterprise Editions for Windows, version 6.0 --------------------------------------------------------------------- SYMPTOMS ======== When setting the Placement property of the TabStrip control to any setting other then 0-tabPlacmentTop, the MultiRow property will always be True. You can only set the MultiRow property to False if the Placement property is set to 0-tabPlacmentTop. STATUS ====== This behavior is by design. MORE INFORMATION ================ When you set the TabStrip control's Placement property to any value other then 0-tabPlacmentTop, the MultiRow property will change to True. If you have the Placement property set to a value other then 0-tabPlacmentTop and you then change the MultiRow property to False, the Placement property will reset to 0-tabPlacmentTop. Steps to Reproduce Behavior --------------------------- 1. Create a new Standard EXE project in Visual Basic. Form1 is created by default. 2. From the Project menu, select Components, check "Microsoft Windows Common Controls 6.0," and then click OK. 3. Add a TabStrip Control and two CommandButtons to Form1. 4. Add the following to the code window of Form1: Private Sub Command1_Click() TabStrip1.Placement = tabPlacementLeft Debug.Print "Tab placement is", TabStrip1.Placement Debug.Print "Tab MultiRow is", TabStrip1.MultiRow End Sub Private Sub Command2_Click() TabStrip1.MultiRow = False Debug.Print "Tab placement is", TabStrip1.Placement Debug.Print "Tab MultiRow is", TabStrip1.MultiRow End Sub Private Sub Form_Load() Dim i As Integer ' add some tabs TabStrip1.Tabs.Add TabStrip1.Tabs.Add ' place some long captions on the tabs For i = 1 To TabStrip1.Tabs.Count TabStrip1.Tabs(i).Caption = "This is a long caption number " _ & Str(i) Next i ' set the tabs to be on top and MultiLine to False TabStrip1.Placement = tabPlacementTop TabStrip1.MultiRow = False Command1.Caption = "Change Placement" Command2.Caption = "Change MultiRow" End Sub 5. Save and run the Project. Click on the Change Placement button. You will see the tab placement on the left but you will see more then one row of tabs. Click on Change MultiRow and you will see that the tab placement goes back to the top, but you only have one line of tabs. Additional query words: kbDSupport kbDSD kbVBp kbVBp600 kbCtrl kbCmnCtrls ====================================================================== Version : WINDOWS:6.0 Platform : WINDOWS Issue type : kbprb ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 1998.