Equivalent in vb.net's MaskedTextBox to cliptext property in vb6's Masked Edit control
I find this property useful but cannot find a direct replacement for 开发者_运维知识库it in vb.net. Is there one? Thanks
Just call maskedTextBox1.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals
before you get the text from the Text
property.
精彩评论