dynamicmdichild.frm

来自「VB圣经」· FRM 代码 · 共 44 行

FRM
44
字号
VERSION 5.00
Begin VB.Form frmDynamic 
   Caption         =   "Form1"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   ClipControls    =   0   'False
   HasDC           =   0   'False
   LinkTopic       =   "Form1"
   MDIChild        =   -1  'True
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   Begin DynamicMDI.ctlDynamic ctlDynamic 
      Height          =   1995
      Left            =   180
      TabIndex        =   0
      Top             =   630
      Width           =   3855
      _ExtentX        =   6800
      _ExtentY        =   3519
   End
End
Attribute VB_Name = "frmDynamic"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'***************************************************************
' (c) Copyright 2000 Matthew J. Curland
'
' This file is from the CD-ROM accompanying the book:
' Advanced Visual Basic 6: Power Techniques for Everyday Programs
'   Author: Matthew Curland
'   Published by: Addison-Wesley, July 2000
'   ISBN: 0-201-70712-8
'   http://www.PowerVB.com
'***************************************************************
Option Explicit

Private Sub Form_Load()
    ctlDynamic.Move 0, 0, ScaleWidth, ScaleHeight
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?