(2) 在名称为Form1的窗体上画一个文本框,名称为Text1,其初始内容为0;画一个命令按钮,名称为C1,标题为

来源:百度知道 编辑:UC知道 时间:2024/05/20 18:11:27
拜托大家了 帮帮忙

无语了,这是最基础的啊!下面字符你把保存为Form1.frm

VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton C1
Caption = "Command1"
Height = 375
Left = 1200
TabIndex = 1
Top = 960
Width = 2175
End
Begin VB.TextBox Text1
Height = 375
Left = 1320
TabIndex = 0
Text = "0"
Top = 360
Width = 2055
End
End
Attribute VB_Name = "Form1"