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

📄 zcform6.frm

📁 银行代发薪资管理系统,跟金融有关的,想学这方面可以参考一下
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form2 
   Caption         =   "企业事业单位通用银行代发薪资系统注册"
   ClientHeight    =   3825
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6480
   ControlBox      =   0   'False
   LinkTopic       =   "Form6"
   ScaleHeight     =   3825
   ScaleWidth      =   6480
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton Command1 
      Caption         =   "结  束"
      Height          =   315
      Left            =   2678
      TabIndex        =   5
      Top             =   3480
      Width           =   1125
   End
   Begin VB.TextBox Text1 
      Enabled         =   0   'False
      Height          =   1905
      Left            =   3083
      MultiLine       =   -1  'True
      TabIndex        =   2
      Text            =   "zcForm6.frx":0000
      Top             =   1230
      Width           =   2985
   End
   Begin VB.PictureBox Picture1 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      BorderStyle     =   0  'None
      ForeColor       =   &H80000008&
      Height          =   2145
      Left            =   413
      Picture         =   "zcForm6.frx":011F
      ScaleHeight     =   2145
      ScaleWidth      =   2175
      TabIndex        =   0
      Top             =   1140
      Width           =   2175
   End
   Begin VB.Label Label4 
      Caption         =   "    另:本人从事网络工程设计、安装、调试及系统软件开发,愿本人之工作能带给你更多的方便!"
      Height          =   435
      Left            =   248
      TabIndex        =   4
      Top             =   750
      Width           =   5985
   End
   Begin VB.Label Label2 
      Caption         =   "通用银行代发薪资系统注册For Windows 9X/2000/NT"
      Height          =   225
      Left            =   1148
      TabIndex        =   3
      Top             =   450
      Width           =   4185
   End
   Begin VB.Label Label1 
      Caption         =   "欢迎使用仲文华开发的产品:"
      BeginProperty Font 
         Name            =   "黑体"
         Size            =   12
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000FF&
      Height          =   255
      Left            =   360
      TabIndex        =   1
      Top             =   60
      Width           =   5205
   End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim winlj As String
Dim RQ As Long
Dim SC As Long

Function getwindowsdir() As String
Dim strbuf As String
strbuf = Space(80)
If GetWindowsDirectory(strbuf, 80) > 0 Then
    getwindowsdir = UCase$(strbuf)
End If
End Function

Private Sub Command1_Click()
winlj = getwindowsdir()
winlj = Left(Trim$(winlj), Len(Trim$(winlj)) - 1) & "\WINGZZC.DLL"
If Dir(winlj) = "" Then
    Set wws = DBEngine.Workspaces(0)
    Set wdb = wws.OpenDatabase(xtlj + "dwxx.mdb")
    Set wtb1 = wdb.OpenRecordset("注册标记", dbOpenTable)
    wtb1.MoveFirst
    If wtb1("注册标记") = False Then
        wtb1.Edit
        wtb1("注册标记") = True
        wtb1.Update
    End If
    wdb.Close
    RQ = Format(Year(Date)) & Right("00" & Format(Month(Date)), 2) & Right("00" & Format(Day(Date)), 2)
    SC = Val(RQ)
    Open winlj For Random As #1 Len = 10
    Put #1, 1, SC
    Get #1, 1, SC
    Close #1
End If
Unload Me
End
End Sub

Private Sub Picture1_Click()
Unload Me
End
End Sub

⌨️ 快捷键说明

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