BUG: Cannot Select Sheridan Tab Control from Modal FormLast reviewed: September 25, 1997Article ID: Q145638 |
The information in this article applies to:
SYMPTOMSWhen showing a Modal form containing the Sheridan Tab control from the Load event of another form, none of the Tabs on this dialog box can be selected.
RESOLUTIONInstead of showing the second form from the Load event of another form, show the form in the Activate event. The following code could be used as a workaround:
Private Sub Form_Activate() Static AlreadyShown As Boolean If Not AlreadyShown Then Form2.Show vbModal End If AlreadyShown = True End Sub STATUSMicrosoft has confirmed this to be an issue in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Problem
REFERENCESFor more information, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q149274 TITLE : BUG: SSTab Is Locked When on Modal Form Shown at Load Time Keywords : PrgCtrlsThird VB4ALL VB4WIN Version : WINDOWS:4.0 Platform : WINDOWS Issue type : kbbug |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |