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

📄 form15.frm

📁 以前做的移动公司的一个多媒体查询系统,有话费查询
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form15 
   BorderStyle     =   0  'None
   Caption         =   "Form15"
   ClientHeight    =   9000
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   12000
   LinkTopic       =   "Form15"
   Picture         =   "Form15.frx":0000
   ScaleHeight     =   9000
   ScaleWidth      =   12000
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  'Windows Default
   Begin VB.Timer Timer1 
      Interval        =   600
      Left            =   720
      Top             =   600
   End
   Begin VB.CommandButton Command4 
      Height          =   1280
      Left            =   6240
      Picture         =   "Form15.frx":15F942
      Style           =   1  'Graphical
      TabIndex        =   4
      Top             =   6360
      Width           =   3780
   End
   Begin VB.CommandButton Command3 
      Height          =   850
      Left            =   10440
      Picture         =   "Form15.frx":16EEA0
      Style           =   1  'Graphical
      TabIndex        =   3
      ToolTipText     =   "返回"
      Top             =   7800
      Width           =   1245
   End
   Begin VB.CommandButton Command2 
      Height          =   1280
      Left            =   6240
      Picture         =   "Form15.frx":172602
      Style           =   1  'Graphical
      TabIndex        =   1
      Top             =   3840
      Width           =   3780
   End
   Begin VB.CommandButton Command1 
      Height          =   1280
      Left            =   6240
      Picture         =   "Form15.frx":181B60
      Style           =   1  'Graphical
      TabIndex        =   0
      Top             =   1560
      Width           =   3780
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "要查移动详细话单请拨1702!"
      BeginProperty Font 
         Name            =   "楷体_GB2312"
         Size            =   21.75
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   495
      Left            =   3120
      TabIndex        =   5
      Top             =   480
      Width           =   6375
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      BorderStyle     =   1  'Fixed Single
      Height          =   5655
      Left            =   1800
      TabIndex        =   2
      Top             =   1800
      Width           =   1215
   End
End
Attribute VB_Name = "Form15"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
    frm_hfcx.Show
    Unload Me
End Sub

Private Sub Command2_Click()
    frm_hdcx.Show
    Unload Me
End Sub

Private Sub Command3_Click()
    Form14.Show
    Unload Me
End Sub

Private Sub Command4_Click()
    frm_mima.Show
    Unload Me
End Sub


Private Sub Timer1_Timer()
   If Label2.Left + Label2.Width < 0 Then
        Label2.Left = frmFYCX.ScaleWidth
    Else
        Label2.Left = Label2.Left - 500
   End If
End Sub

⌨️ 快捷键说明

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