在网上看到WINCC日报表解释说明中有段脚本如下:
If (n > 0) Then
oRs.MoveFirst
i = 0
End If
Do While Not oRs.EOF
n = n + 1
ylp = Int(ylp * 10 ^ 3 + 0.5) / (10 ^ 3)
wdp = Int(wdp * 10 ^ 3 + 0.5) / (10 ^ 3)
llp = Int(llp * 10 ^ 3 + 0.5) / (10 ^ 3)
zlp = Int(zlp * 10 ^ 3 + 0.5) / (10 ^ 3)
dyp = Int(dyp * 10 ^ 3 + 0.5) / (10 ^ 3)
sdp = Int(sdp * 10 ^ 3 + 0.5) / (10 ^ 3)
他要干嘛?特别是Int(ylp * 10 ^ 3 + 0.5) / (10 ^ 3)