jrzc = "总金额"
With .AddInput(jrzc, jrzc, "number") '.Step = "0.01"
If rh IsNot Nothing Then
' .Value = rh(jrzc)
End If
.Readonly = True
End With
为什么加上.Step = "0.01" 之后,with内带.的就都不认了?
换行
With .AddInput(jrzc, jrzc, "number")
.Step = "0.01"
If rh IsNot Nothing Then
' .Value = rh(jrzc)
End If
.Readonly = True
End With
如果不换行.Readonly是属于.Step的,换行了.Readonly是属于.AddInput的