【VB开源代码栏目提醒】:网学会员为广大网友收集整理了,4.1.6.frm,希望对大家有所帮助!
VERSION 5.00
Begin VB.Form Form9
Caption = "Form9"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form9"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form9"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim s As Double
Dim b As Integer
s = 12.2345
b = 12
Print Format(s, "0.00"), Format(b, "0.00")
'小数点后输出两位
Print Format(s, "#.##"), Format(b, "#.## ")
'与输出的实际数据有关
End Sub