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

📄 frm_zyzz.frm

📁 基于VB6的财政局触摸屏查询系统,源码
💻 FRM
字号:
VERSION 5.00
Object = "{D27CDB6B-AE6D-11CF-96B8-444553540000}#1.0#0"; "swflash.ocx"
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form frm_zyzz 
   BorderStyle     =   0  'None
   Caption         =   "Form2"
   ClientHeight    =   9015
   ClientLeft      =   180
   ClientTop       =   1035
   ClientWidth     =   12015
   LinkTopic       =   "Form2"
   Picture         =   "frm_zyzz.frx":0000
   ScaleHeight     =   9015
   ScaleWidth      =   12015
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  '窗口缺省
   WindowState     =   2  'Maximized
   Begin VB.TextBox Text1 
      Height          =   375
      Left            =   240
      TabIndex        =   6
      Text            =   "0"
      Top             =   2040
      Visible         =   0   'False
      Width           =   1335
   End
   Begin VB.PictureBox Picture1 
      Height          =   7400
      Left            =   2200
      Picture         =   "frm_zyzz.frx":5E9E
      ScaleHeight     =   7335
      ScaleWidth      =   7755
      TabIndex        =   4
      Top             =   1200
      Width           =   7815
      Begin VB.Label Label1 
         AutoSize        =   -1  'True
         BackColor       =   &H00E0E0E0&
         Caption         =   "Label1"
         DataField       =   "局职责"
         DataSource      =   "Adodc1"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   10.5
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00808000&
         Height          =   210
         Left            =   0
         TabIndex        =   5
         Top             =   0
         Width           =   7755
         WordWrap        =   -1  'True
      End
   End
   Begin ShockwaveFlashObjectsCtl.ShockwaveFlash Flash1 
      Height          =   345
      Left            =   0
      TabIndex        =   3
      Top             =   20
      Width           =   12100
      _cx             =   19813215
      _cy             =   19792481
      Movie           =   ""
      Src             =   ""
      WMode           =   "Window"
      Play            =   -1  'True
      Loop            =   -1  'True
      Quality         =   "High"
      SAlign          =   ""
      Menu            =   -1  'True
      Base            =   ""
      Scale           =   "ShowAll"
      DeviceFont      =   0   'False
      EmbedMovie      =   0   'False
      BGColor         =   ""
      SWRemote        =   ""
      Stacking        =   "below"
   End
   Begin MSAdodcLib.Adodc Adodc1 
      Height          =   450
      Left            =   120
      Top             =   960
      Visible         =   0   'False
      Width           =   1935
      _ExtentX        =   3413
      _ExtentY        =   794
      ConnectMode     =   0
      CursorLocation  =   3
      IsolationLevel  =   -1
      ConnectionTimeout=   15
      CommandTimeout  =   30
      CursorType      =   3
      LockType        =   3
      CommandType     =   1
      CursorOptions   =   0
      CacheSize       =   50
      MaxRecords      =   0
      BOFAction       =   0
      EOFAction       =   0
      ConnectStringType=   1
      Appearance      =   1
      BackColor       =   -2147483643
      ForeColor       =   -2147483640
      Orientation     =   0
      Enabled         =   -1
      Connect         =   "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=DS.MDB;Persist Security Info=False"
      OLEDBString     =   "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=DS.MDB;Persist Security Info=False"
      OLEDBFile       =   ""
      DataSourceName  =   ""
      OtherAttributes =   ""
      UserName        =   ""
      Password        =   ""
      RecordSource    =   "select * from czj"
      Caption         =   "Adodc1"
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      _Version        =   393216
   End
   Begin VB.CommandButton Cmd_down 
      Height          =   975
      Left            =   10440
      Picture         =   "frm_zyzz.frx":B4F0
      Style           =   1  'Graphical
      TabIndex        =   2
      Top             =   3960
      Width           =   1215
   End
   Begin VB.CommandButton Cmd_up 
      Height          =   975
      Left            =   10440
      Picture         =   "frm_zyzz.frx":D243
      Style           =   1  'Graphical
      TabIndex        =   1
      Top             =   2400
      Width           =   1215
   End
   Begin VB.CommandButton Cmd_back 
      Height          =   855
      Left            =   10440
      Picture         =   "frm_zyzz.frx":EEDA
      Style           =   1  'Graphical
      TabIndex        =   0
      Top             =   5520
      Width           =   1215
   End
End
Attribute VB_Name = "frm_zyzz"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Cmd_back_Click()
  frm_main.Show
  Unload Me
End Sub

Private Sub Cmd_down_Click()
  If Text1.Text = 1 Then
     Text1.Text = 2
     Label1.Top = -14000
     Label1.Height = 30000
  End If
  If Text1.Text = 0 Then
     Text1.Text = 1
     Label1.Top = -7200
     Label1.Height = 30000
  End If
End Sub

Private Sub Cmd_up_Click()
  If Text1.Text = 1 Then
     Text1.Text = 0
     Label1.Top = -200
     Label1.Height = 30000
  End If
  If Text1.Text = 2 Then
     Text1.Text = 1
     Label1.Top = -7200
     Label1.Height = 30000
  End If
End Sub

Private Sub Form_Load()
  Flash1.Movie = App.Path & "\image\czj\szfz.swf"
End Sub

⌨️ 快捷键说明

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