CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 1999
    Location
    California
    Posts
    3

    MaskEdBox and the MaxLength property

    The documentation for the MaskEdBox control states that it operates just like the TextBox if the Mask property is set to "". However, I was unable to set the MaxLength property to a value greater than 64. Does anybody know of a way to set the MaxLength property to a value greater than 64 for the MaskEdBox?

    Thanks,
    Mark
    [email protected]


  2. #2
    Join Date
    Oct 1999
    Posts
    63

    Re: MaskEdBox and the MaxLength property

    The Masked Edit control can have a maximum of 64 characters (the valid range for this property is 1 to 64). The default value is set to 64 characters, including literal characters in the input mask.

    If the user enters characters beyond the specified maximum length, the control generates a beep.


    The above lines are specified in the VB documentation. I think we set Maxlength value more than 64



  3. #3
    Guest

    Re: MaskEdBox and the MaxLength property

    have you tried setting it dynamically at runtime?


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured