国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > 綜合 > 正文

IP地址輸入控件 V1.0.1.1版(FOR Win Form)

2024-07-21 02:24:25
字體:
來源:轉載
供稿:網(wǎng)友
核心代碼:

'只允許輸入數(shù)字、"."
private sub txtfield_keypress(byval sender as system.object, byval e as system.windows.forms.keypresseventargs) handles txtfield0.keypress, txtfield1.keypress, txtfield2.keypress, txtfield3.keypress
if e.keychar = "." then
dim tx as textbox = ctype(sender, textbox)
'最后的文本框不可以輸入"."
'在其它文本框輸入".",相當于輸入"tab"鍵,即光標到下一文本框
if tx.text = "" or tx.selectedtext <> "" then
e.handled = true
end if
if tx.name <> "txtfield3" then
sendkeys.send("{tab}")
else
'最后的文本框不可以輸入"."
e.handled = true
end if
elseif (not isnumeric(e.keychar)) and e.keychar <> controlchars.back then
e.handled = true
else
dim tx as textbox = ctype(sender, textbox)
if (len(tx.text) = 2 and e.keychar <> controlchars.back and tx.selectedtext.length = 0) then
if tx.name <> "txtfield3" then
sendkeys.send("{tab}")
end if
end if
end if
'控制controlchars.back退格鍵
dim tx1 as textbox = ctype(sender, textbox)
if (len(tx1.text) = 0 and e.keychar = controlchars.back) then
select case tx1.name
case "txtfield3"
if txtfield3.text = "" then
txtfield2.focus()
end if
case "txtfield2"
if txtfield2.text = "" then
txtfield1.focus()
end if
case "txtfield1"
if txtfield1.text = "" then
txtfield0.focus()
end if
end select
end if
end sub

當運行時:

當出現(xiàn)錯誤時:
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 黄梅县| 闸北区| 长春市| 晋中市| 镇原县| 雷波县| 灌云县| 陆良县| 黄骅市| 襄城县| 敦煌市| 岐山县| 平遥县| 汉阴县| 普安县| 梁河县| 凯里市| 永登县| 鄄城县| 鄂托克旗| 安泽县| 荃湾区| 泸溪县| 白山市| 西宁市| 尤溪县| 甘孜县| 鄢陵县| 泰来县| 普定县| 湟中县| 永登县| 彭山县| 察隅县| 延川县| 双桥区| 黄大仙区| 成都市| 开阳县| 泸定县| 彭阳县|