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

📄 image.frm

📁 codding for pszone one can use it at playstation zones
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form31 
   BackColor       =   &H00808080&
   Caption         =   "Form31"
   ClientHeight    =   4725
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   8025
   BeginProperty Font 
      Name            =   "MS Sans Serif"
      Size            =   12
      Charset         =   0
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   LinkTopic       =   "Form31"
   NegotiateMenus  =   0   'False
   ScaleHeight     =   4725
   ScaleWidth      =   8025
   StartUpPosition =   3  'Windows Default
   WindowState     =   2  'Maximized
   Begin VB.DriveListBox Drive1 
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   315
      Left            =   1560
      TabIndex        =   3
      Top             =   4320
      Width           =   2295
   End
   Begin VB.FileListBox File1 
      BeginProperty Font 
         Name            =   "Monotype Corsiva"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   1980
      Left            =   4560
      TabIndex        =   2
      Top             =   1920
      Width           =   2775
   End
   Begin VB.DirListBox Dir1 
      BeginProperty Font 
         Name            =   "Monotype Corsiva"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   1590
      Left            =   1440
      TabIndex        =   1
      Top             =   1920
      Width           =   2775
   End
   Begin VB.TextBox Text1 
      BeginProperty Font 
         Name            =   "Monotype Corsiva"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   855
      Left            =   2880
      TabIndex        =   0
      Top             =   720
      Width           =   2895
   End
   Begin VB.Image Image1 
      Height          =   855
      Left            =   2040
      Top             =   4800
      Width           =   3735
   End
End
Attribute VB_Name = "Form31"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Dir1_Change()

File1.Path = Dir1.Path
File1.Pattern = "+.gif;*.jpe;*.bmp"
End Sub
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub
Private Sub File1_Click()
Path = File1.Path
Text1.Text = Path + "\" + File1
Image1.Picture = LoadPicture(Text1.Text)
End Sub
Private Sub Form_Load()
Dir1.Path = Drive1.Drive
End Sub

⌨️ 快捷键说明

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