【VB开源代码栏目提醒】:网学会员为需要VB开源代码的朋友们搜集整理了Ex2_9.frm相关资料,希望对各位网友有所帮助!
VERSION 5.00
Begin VB.Form Ex2_9
Caption = "Form1"
ClientHeight = 2925
ClientLeft = 60
ClientTop = 450
ClientWidth = 4005
LinkTopic = "Form1"
ScaleHeight = 2925
ScaleWidth = 4005
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "运行"
Height = 375
Left = 1440
TabIndex = 1
Top = 2280
Width = 1215
End
Begin VB.PictureBox Picture1
Height = 1455
Left = 1320
ScaleHeight = 1395
ScaleWidth = 1875
TabIndex = 0
Top = 480
Width = 1935
End
End
Attribute
VB_Name = "Ex2_9"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Print "Hello World! " '在窗体上显示; "Hello World!″"
Print Format(1732.46, "+##,###.0") '显示″+1,732.5″
Picture1.Print "Visual Basic" '在图像框中显示 "Visual Basic"
Print 5; "+"; 6 '显示5+6,用";"连接下一个
End Sub