Form1.frm
上传用户:henluren
上传日期:2022-06-03
资源大小:1k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3030
  5.    ClientLeft      =   120
  6.    ClientTop       =   450
  7.    ClientWidth     =   4560
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3030
  10.    ScaleWidth      =   4560
  11.    StartUpPosition =   3  '窗口缺省
  12.    Begin VB.CommandButton Command1 
  13.       Caption         =   "Command1"
  14.       Height          =   975
  15.       Left            =   960
  16.       TabIndex        =   0
  17.       Top             =   840
  18.       Width           =   1695
  19.    End
  20. End
  21. Attribute VB_Name = "Form1"
  22. Attribute VB_GlobalNameSpace = False
  23. Attribute VB_Creatable = False
  24. Attribute VB_PredeclaredId = True
  25. Attribute VB_Exposed = False
  26. Private Sub Command1_Click()
  27. MsgBox "txt", vbCritical, "txt"
  28. End Sub