通过两文本框获取起始行和打印的末行
如 textbox1 为起始行 , textbox2输入末行,
textbox1输入 5
textbox2 输入 9 判断 textbox1<=textbox2 结果 true
textbox1输入 5
textbox2 输入 19 判断 textbox1<=textbox2 结果
false
但
textbox1输入 05 textbox2 输入 19 判断
textbox1<=textbox2 结果true
求解答为什么??
VBA 用文字框输入的数字,比较大小的问题
答案:3 悬赏:20 手机版
解决时间 2021-03-03 02:41
- 提问者网友:寂寞撕碎了回忆
- 2021-03-02 23:08
最佳答案
- 五星知识达人网友:渊鱼
- 2021-03-02 23:55
都是字符串 从左到右判断
用 cint (textbox1) <=cint(textbox2) 才是 数字判断
小数 用 cdbl
用 cint (textbox1) <=cint(textbox2) 才是 数字判断
小数 用 cdbl
全部回答
- 1楼网友:鱼忧
- 2021-03-03 01:39
range("d4").select
activecell.formular1c1 = "1,3,a"
with activecell.characters(start:=1, length:=3).font
.name = "宋体"
.fontstyle = "常规"
.size = 12
.strikethrough = false
.superscript = false
.subscript = false
.outlinefont = false
.shadow = false
.underline = xlunderlinestylenone
.colorindex = 3
end with
with activecell.characters(start:=4, length:=2).font
.name = "宋体"
.fontstyle = "常规"
.size = 12
.strikethrough = false
.superscript = false
.subscript = false
.outlinefont = false
.shadow = false
.underline = xlunderlinestylenone
.colorindex = xlautomatic
end with
range("d5").select
- 2楼网友:北方的南先生
- 2021-03-03 01:32
cint(textbox1.text)<=cint(textbox2.text),你不转换,变成了字符串比较了
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯