fz.frm

来自「大家来找茬 0.90版 漂亮」· FRM 代码 · 共 60 行

FRM
60
字号
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   8355
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   10050
   LinkTopic       =   "Form1"
   ScaleHeight     =   8355
   ScaleWidth      =   10050
   StartUpPosition =   3  '窗口缺省
   Begin VB.PictureBox Picture2 
      AutoSize        =   -1  'True
      Height          =   3975
      Left            =   5550
      ScaleHeight     =   3915
      ScaleWidth      =   3075
      TabIndex        =   2
      Top             =   375
      Width           =   3135
   End
   Begin VB.PictureBox Picture1 
      AutoSize        =   -1  'True
      Height          =   3975
      Left            =   375
      ScaleHeight     =   3915
      ScaleWidth      =   3075
      TabIndex        =   0
      Top             =   375
      Width           =   3135
   End
   Begin VB.Label Label1 
      Caption         =   "Label1"
      Height          =   495
      Left            =   8700
      TabIndex        =   1
      Top             =   7725
      Width           =   1215
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
    Form_Load
End Sub

Private Sub Form_Load()
    n = InputBox("number")
    Picture1.Picture = LoadPicture(App.Path + "\PIC\" + Trim(n) + "a.JPG")
    Picture2.Picture = LoadPicture(App.Path + "\PIC\" + Trim(n) + "b.JPG")
End Sub

Private Sub Picture2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Label1.Caption = X & "/" & Y
End Sub

⌨️ 快捷键说明

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