frmDemo.frm
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:1k
源码类别:

浏览器

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmDemo 
  3.    Caption         =   "Com Demo"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.Label Label1 
  13.       Height          =   1575
  14.       Left            =   600
  15.       TabIndex        =   0
  16.       Top             =   660
  17.       Width           =   3135
  18.    End
  19. End
  20. Attribute VB_Name = "frmDemo"
  21. Attribute VB_GlobalNameSpace = False
  22. Attribute VB_Creatable = False
  23. Attribute VB_PredeclaredId = True
  24. Attribute VB_Exposed = False
  25. Option Explicit
  26. Private Sub Form_Load()
  27. Label1.Caption = "this is a demo (com mode)"
  28. End Sub