Microsoft KB Archive/111375

From BetaArchive Wiki
Knowledge Base


PC Forms: Doc Err: Making a Check Box Read-Only

Article ID: 111375

Article Last Modified on 10/30/2006



APPLIES TO

  • Microsoft Exchange Electronic Forms Designer 5.0, when used with:
    • Microsoft Mail for PC Networks 3.0
    • Microsoft Mail for PC Networks 3.2



This article was previously published under Q111375

SUMMARY

Page 90 of the Microsoft Electronic Forms Designer version 1.0 "Developer's Guide" lists steps for making a 3-D check box read-only. After using the instructions, when you select the check box in the Read form, the following error message appears:

Out of Stack Space

Both the mouse event and the code provided on page 90 are incorrect. The Click event should be MouseUp and the code should be replaced with the following:

   If gUnpackaging = False Then
 
      If chkTest.Value = True Then
         chkTest.Value = False
      Else
         chkTest.Value = True
      End If
 
   End If
                


Additional query words: 1.00 read only checkbox checkboxes boxes

Keywords: KB111375