gpdgridfrm.frm

来自「TMS320F2812的C++ examples 各个模块的程序」· FRM 代码 · 共 54 行

FRM
54
字号
VERSION 5.00Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "msflxgrd.ocx"Begin VB.Form GPDGridFrm    BorderStyle     =   5  'Sizable ToolWindow   Caption         =   "Data"   ClientHeight    =   3570   ClientLeft      =   60   ClientTop       =   300   ClientWidth     =   2430   Icon            =   "gpdgridfrm.frx":0000   LinkTopic       =   "Form1"   MaxButton       =   0   'False   MinButton       =   0   'False   ScaleHeight     =   3570   ScaleWidth      =   2430   ShowInTaskbar   =   0   'False   StartUpPosition =   3  'Windows Default   Begin MSFlexGridLib.MSFlexGrid grd_GridSheet       Height          =   3315      Left            =   120      TabIndex        =   0      Top             =   120      Width           =   2085      _ExtentX        =   3678      _ExtentY        =   5847      _Version        =   393216   EndEndAttribute VB_Name = "GPDGridFrm"Attribute VB_GlobalNameSpace = FalseAttribute VB_Creatable = FalseAttribute VB_PredeclaredId = TrueAttribute VB_Exposed = FalseOption ExplicitPrivate Sub Form_Resize()'#######################################################################' This procedure is called if the form size if modifed. It's job is to' re-size and re-position the Active-X controls according to scale.'#######################################################################    ' Set GridSheet to fill entire form area (minus border at edges)    grd_GridSheet.Left = GPDGridFrm.ScaleLeft    grd_GridSheet.Top = GPDGridFrm.ScaleTop    grd_GridSheet.Width = GPDGridFrm.ScaleWidth    grd_GridSheet.Height = GPDGridFrm.ScaleHeightEnd SubPrivate Sub Form_Unload(Cancel As Integer)    ' Remove form only when tmr_Method_Dispatch is not running    If GPDFrm.tmr_Method_Dispatch.Enabled = True Then        Cancel = 1    End IfEnd Sub

⌨️ 快捷键说明

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