⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 replicat.frm

📁 不错的一个VB菜单设计 界面和功能都不错
💻 FRM
字号:
VERSION 5.00
Object = "*\A..\SOURCE\FAST2002.vbp"
Begin VB.Form frmReplication 
   Caption         =   "Replication"
   ClientHeight    =   3600
   ClientLeft      =   2775
   ClientTop       =   3555
   ClientWidth     =   6960
   Icon            =   "Replicat.frx":0000
   LinkTopic       =   "Form1"
   PaletteMode     =   1  'UseZOrder
   Picture         =   "Replicat.frx":0442
   ScaleHeight     =   240
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   464
   StartUpPosition =   2  'CenterScreen
   Begin VB.CommandButton cmdClose 
      Caption         =   "Push here to close the window"
      Height          =   450
      Left            =   2250
      TabIndex        =   0
      Top             =   870
      Width           =   2430
   End
   Begin VB.Label lblLabel 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "This's a replication effect"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   300
      Left            =   1845
      TabIndex        =   1
      Top             =   390
      Width           =   3030
   End
   Begin FLWGraphMath.FWGDI objGDI 
      Left            =   585
      Top             =   315
      _ExtentX        =   820
      _ExtentY        =   820
   End
End
Attribute VB_Name = "frmReplication"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub cmdClose_Click()
  Unload Me
End Sub

Private Sub Form_Load()
  Call objGDI.Create(Me.hWnd)
End Sub

Sub Form_Paint()
  Call objGDI.Replicate(ScaleX(Picture.Width, vbHimetric, vbPixels), _
                        ScaleY(Picture.Height, vbHimetric, vbPixels))
End Sub
  

⌨️ 快捷键说明

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