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

📄 概况.frm

📁 以前做的移动公司的一个多媒体查询系统,有话费查询
💻 FRM
字号:
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.2#0"; "COMCTL32.OCX"
Begin VB.Form Form9 
   BorderStyle     =   0  'None
   ClientHeight    =   9000
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   12000
   LinkTopic       =   "Form9"
   LockControls    =   -1  'True
   Picture         =   "概况.frx":0000
   ScaleHeight     =   9000
   ScaleWidth      =   12000
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton Command2 
      Height          =   615
      Left            =   10200
      Picture         =   "概况.frx":15F942
      Style           =   1  'Graphical
      TabIndex        =   1
      Top             =   7800
      Width           =   1335
   End
   Begin VB.CommandButton Command1 
      Height          =   855
      Left            =   10440
      Picture         =   "概况.frx":164C38
      Style           =   1  'Graphical
      TabIndex        =   0
      ToolTipText     =   "返回"
      Top             =   840
      Width           =   1215
   End
   Begin VB.Image Image1 
      Height          =   1215
      Left            =   840
      Top             =   960
      Width           =   2295
   End
   Begin ComctlLib.ImageList ImageList1 
      Left            =   10800
      Top             =   2040
      _ExtentX        =   1005
      _ExtentY        =   1005
      BackColor       =   -2147483643
      ImageWidth      =   354
      ImageHeight     =   508
      MaskColor       =   12632256
      _Version        =   327682
      BeginProperty Images {0713E8C2-850A-101B-AFC0-4210102A8DA7} 
         NumListImages   =   4
         BeginProperty ListImage1 {0713E8C3-850A-101B-AFC0-4210102A8DA7} 
            Picture         =   "概况.frx":16839A
            Key             =   ""
         EndProperty
         BeginProperty ListImage2 {0713E8C3-850A-101B-AFC0-4210102A8DA7} 
            Picture         =   "概况.frx":1EC34C
            Key             =   ""
         EndProperty
         BeginProperty ListImage3 {0713E8C3-850A-101B-AFC0-4210102A8DA7} 
            Picture         =   "概况.frx":2803A6
            Key             =   ""
         EndProperty
         BeginProperty ListImage4 {0713E8C3-850A-101B-AFC0-4210102A8DA7} 
            Picture         =   "概况.frx":314400
            Key             =   ""
         EndProperty
      EndProperty
   End
End
Attribute VB_Name = "Form9"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim int_num As Integer

Private Sub Command1_Click()
    Form1.Show
    Unload Me
End Sub

Private Sub Command2_Click()
    If int_num < 4 Then
        int_num = int_num + 1
        Image1.Picture = ImageList1.ListImages(int_num).Picture
    Else
        Command2.Enabled = False
    End If
 
End Sub


Private Sub Form_Load()
int_num = 1
Image1.Picture = ImageList1.ListImages(1).Picture
End Sub

⌨️ 快捷键说明

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