varInput = Application.InputBox("Text", "Title", Type:=2)
If varInput = "False" Then
Exit Sub
End If如果按下“取消”按钮,则返回值为带有"False“的字符串。,但在一些德国设置的计算机上,我会得到"Falsch“!
该怎么处理呢?
发布于 2019-04-01 10:53:09
删除引号:
If varInput = False Thenhttps://stackoverflow.com/questions/55453256
复制相似问题