Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本数据类型的表字段。我想设置一个输入掩码属性,以便它添加前导零以生成 12 位数字。比如说,输入:1256 它会自动转换为 000000001256
我怎样才能做到这一点?
无需使用输入掩码 .. 使用文本框并在存储文本时使用 format() 函数
Dim MyStr as String = format(val(txtNumber.Text),"000000000000")