frmDemo.frm
Upload User: davilee3
Upload Date: 2015-04-22
Package Size: 986k
Code Size: 1k
Category:

Browser Client

Development Platform:

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. '---------------------------------------------------------------------------------------
  26. ' Module    : frmDemo
  27. ' DateTime  : 2005-8-15 18:47
  28. ' Author    : Lingll
  29. ' Purpose   :
  30. '---------------------------------------------------------------------------------------
  31. Option Explicit
  32. Private Sub Form_Load()
  33. Label1.Caption = "this is a demo (com mode)"
  34. End Sub