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

📄 frmsplash.frm

📁 这是一套农村电费计算程序的源码。能够对用户电费进行计算、查询、打印。
💻 FRM
字号:
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   3420
   ClientLeft      =   45
   ClientTop       =   45
   ClientWidth     =   5700
   ControlBox      =   0   'False
   Icon            =   "frmSplash.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3420
   ScaleWidth      =   5700
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Visible         =   0   'False
   Begin VB.Frame fraMainFrame 
      Height          =   3615
      Left            =   0
      TabIndex        =   0
      Top             =   -240
      Width           =   5700
      Begin VB.Label Label1 
         BackColor       =   &H8000000D&
         BackStyle       =   0  'Transparent
         Caption         =   "本产品版权属滕州供电局"
         ForeColor       =   &H000000FF&
         Height          =   255
         Left            =   3360
         TabIndex        =   1
         Top             =   3360
         Width           =   2295
      End
      Begin ComctlLib.ImageList ImageList1 
         Left            =   4200
         Top             =   1920
         _ExtentX        =   1005
         _ExtentY        =   1005
         BackColor       =   -2147483643
         ImageWidth      =   378
         ImageHeight     =   227
         MaskColor       =   12632256
         _Version        =   327682
         BeginProperty Images {0713E8C2-850A-101B-AFC0-4210102A8DA7} 
            NumListImages   =   1
            BeginProperty ListImage1 {0713E8C3-850A-101B-AFC0-4210102A8DA7} 
               Picture         =   "frmSplash.frx":030A
               Key             =   ""
            EndProperty
         EndProperty
      End
      Begin VB.Image Image1 
         Height          =   3405
         Left            =   0
         Top             =   240
         Width           =   5670
      End
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public sj As Database
Public dwsj, cmsj, bksj, djsj As Recordset
Public pathM As String, tmp As String
Public yy, mm, dd As String


Private Sub Form_Load()

    'yy = Year(Now)
    'mm = Month(Now)
    'dd = Day(Now)
    
    'pathM = App.Path
    Image1.Picture = ImageList1.ListImages(1).Picture
    
    'Print pathM
    'tmp = pathM + "\data\cjsj.mdb"
    'Set sj = OpenDatabase(tmp, False, False, ";pwd=sunlm")
    'Set dwsj = sj.OpenRecordset("dwk")
    'Set cmsj = sj.OpenRecordset("name")
    'Set bksj = sj.OpenRecordset("bk")
    'Set djsj = sj.OpenRecordset("dj")
    
End Sub
Private Sub Image1_Click()
    Unload frmSplash
End Sub

⌨️ 快捷键说明

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