📄 replicat.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 + -