以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]数字输入框  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=133726)

--  作者:fstzy
--  发布时间:2019/4/18 22:22:00
--  [求助]数字输入框
请教老师,怎样写代码把数字输入框填上3,自动转换成3%,或者填上30转换成30%?
--  作者:foxstudent
--  发布时间:2019/4/18 22:41:00
--  
http://www.foxtable.com/webhelp/index.htm?page=0803.htm
用数字输入框 NumericComboBox,设置格式符号属性

--  作者:有点甜
--  发布时间:2019/4/19 10:15:00
--  

1、设置格式符号

 

http://www.foxtable.com/webhelp/scr/0803.htm

 

2、valueChanged事件,写代码处理

 

If val(e.sender.text) > 1 Then
    e.sender.text = e.sender.text / 100
End If