1樓:秦元斐駱醜
有點記不清了..
在屬性視窗中就可以設定的...
或是在text
change
動作中新增**判斷然後截斷
iflen(text1.text)>5
then
msgbox
"只允許輸入5位字串!"
text1.text
=substring(text1.text,0,5)endif
好像是這樣,很久沒寫vb了
2樓:候萱卻璧
設定text1.maxlength屬性:text1.maxlenght=10,限制為10。
下例是隻能輸入數字和大小寫字母,長度為7位到10位,當位數不足7位時,command1.eanbled=false:
private
subform_load()
command1.enabled
=false
endsub
private
subtext1_change()
ifasc(right(text1,
1))<
0then
msgbox
"請不要輸入中文"
text1
=left(text1,
len(text1)-1)
elseif
len(text1)
>=7and
len(text1)
<=10then
command1.enabled
=true
elseif
len(text1)
>10then
text1
=left(text1,
10)text1.selstart
=len(text1)
endif
endsub
VB開啟TEXT中輸入的目錄
vb中限定text輸入框中輸入的字數,有兩種方法可以實現 1 直接在text文字框屬性中定義maxlength的值,maxlength是設定文字框允許輸入的字元最大數。超過設定數後,將不允許繼續輸入內容。2 實現 private subtext1 change iflen text1 160then...
vb怎樣才能讓Print輸出是在Text1裡邊
不用 print 的!設定 text 控制元件 的 multiline true 多行文字框 scrollbars 2 垂直滾動條 然後 用 text1.text text1.text 新增的內容 vbcrlf vbcrlf 是 回車換行 符號 常數 祝你順利 先在屬性設定視窗將text1的mult...
vb中caption和text屬性區別是什麼
都是在控制元件上顯示文字,但它們屬性不同的控制元件。在vb6中text使用者是可以修改的,caption使用者是不能修改的。在vb.net都已經向text靠攏,基本淘汰caption。vb中命令按鈕的名稱屬性和caption屬性有何不同?caption是標題bai或著名字的意du思,要與name區分...