frmddinfolist.frm

来自「企业人事管理系统,有考勤,人员管理等功能,值得研究,也是我付费弄来的,绝对超值」· FRM 代码 · 共 71 行

FRM
71
字号
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Object = "{0D452EE1-E08F-101A-852E-02608C4D0BB4}#2.0#0"; "FM20.DLL"
Begin VB.Form frmDDInfoList 
   Caption         =   "员工调动信息列表"
   ClientHeight    =   5670
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   8040
   LinkTopic       =   "Form1"
   ScaleHeight     =   5670
   ScaleWidth      =   8040
   StartUpPosition =   3  '窗口缺省
   Begin MSFlexGridLib.MSFlexGrid Grid1 
      Height          =   4575
      Left            =   120
      TabIndex        =   1
      Top             =   240
      Width           =   7695
      _ExtentX        =   13573
      _ExtentY        =   8070
      _Version        =   393216
      SelectionMode   =   1
      AllowUserResizing=   1
   End
   Begin MSForms.CommandButton CommandButton1 
      Height          =   375
      Left            =   5040
      TabIndex        =   2
      Top             =   5040
      Width           =   1575
      Caption         =   "返回"
      Size            =   "2778;661"
      FontName        =   "宋体"
      FontHeight      =   180
      FontCharSet     =   134
      FontPitchAndFamily=   34
      ParagraphAlign  =   3
   End
   Begin VB.Label Label1 
      Caption         =   "员工调动信息列表"
      Height          =   375
      Left            =   240
      TabIndex        =   0
      Top             =   0
      Width           =   4215
   End
End
Attribute VB_Name = "frmDDInfoList"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public AlterationInfo_SQL As String

Private Sub CommandButton1_Click()
 Unload Me
End Sub

Private Sub Form_Load()
  Dim strMsg As String
  Dim rs As New ADODB.Recordset
  Set rs = ExecuteSQL(AlterationInfo_SQL, strMsg)
  Call FillData(rs, Grid1)
  
End Sub

Private Sub Grid1_Click()
 
End Sub

⌨️ 快捷键说明

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