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

📄

📁 VB开发的ERP系统
💻
📖 第 1 页 / 共 3 页
字号:
         EndProperty
         BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "显示项目"
            Key             =   "szxsxm"
            ImageKey        =   "xsxm"
         EndProperty
      EndProperty
   End
   Begin MSComctlLib.Toolbar SzToolbar 
      Align           =   1  'Align Top
      Height          =   555
      Left            =   0
      TabIndex        =   4
      Top             =   0
      Width           =   11880
      _ExtentX        =   20955
      _ExtentY        =   979
      ButtonWidth     =   820
      ButtonHeight    =   926
      AllowCustomize  =   0   'False
      Appearance      =   1
      Style           =   1
      ImageList       =   "ImageList1"
      _Version        =   393216
      BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628} 
         NumButtons      =   11
         BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "设置"
            Key             =   "ymsz"
            ImageKey        =   "sz"
         EndProperty
         BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "打印"
            Key             =   "dy"
            ImageKey        =   "dy"
         EndProperty
         BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "预览"
            Key             =   "yl"
            ImageKey        =   "yl"
         EndProperty
         BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Style           =   3
         EndProperty
         BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "卡片"
            Key             =   "kp"
            ImageKey        =   "kp"
         EndProperty
         BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "变动"
            Key             =   "bd"
            ImageKey        =   "bd"
         EndProperty
         BeginProperty Button7 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Style           =   4
         EndProperty
         BeginProperty Button8 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "查询"
            Key             =   "cx"
            ImageKey        =   "cx"
         EndProperty
         BeginProperty Button9 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Style           =   3
         EndProperty
         BeginProperty Button10 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "帮助"
            Key             =   "bz"
            ImageKey        =   "bz"
         EndProperty
         BeginProperty Button11 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "退出"
            Key             =   "fh"
            ImageKey        =   "tc"
         EndProperty
      EndProperty
      BorderStyle     =   1
      Begin VB.TextBox Txt_Bit 
         Height          =   270
         Left            =   5070
         TabIndex        =   5
         Text            =   "Text1"
         Top             =   1230
         Visible         =   0   'False
         Width           =   1035
      End
   End
End
Attribute VB_Name = "Book_CardList"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'******************************************************************
'*    模 块 名 称 :资产清单报表
'*    功 能 描 述 :
'*    程序员姓名  :徐衍民
'*    最后修改人  :徐衍民
'*    最后修改时间:2001/12/11
'*    备        注:
'******************************************************************

Dim ReportTitle As String                '报表主标题
Dim Card_Str As String                   '用户录入查询条件
Dim rstemp As ADODB.Recordset            '临时打开数据集变量

'以下为固定使用变量
Dim Dyymctbl As New DY_Dyymsz            '打印页面窗体变量
Dim GridCode As String                   '显示网格网格代码
Dim GridInf() As Variant                 '整个网格设置信息
Dim Tsxx As String                       '系统提示信息
Dim Qslz As Long                         '网格隐藏(非操作显示)列数
Dim Sjhgd As Double                      '网格数据行高度
Dim Sfxshjwg As Boolean                  '是否显示合计网格
Dim GridBoolean() As Boolean             '网格列信息(布尔型)
Dim GridStr()  As String                 '网格列信息(字符型)
Dim GridInt() As Integer                 '网格列信息(整型)
Dim Szzls As Integer                     '数组总列数(网格列数-1)

Private Sub CxbbGrid_DblClick()          '双击数据行进入卡片浏览窗口
    
    If CxbbGrid.Row > 0 And CxbbGrid.Row < CxbbGrid.Rows - 1 Then
        Kpgl_jbcz.str_CardNumber = Trim(CxbbGrid.TextMatrix(CxbbGrid.Row, 0))
        Kpgl_jbcz.str_State = "4"
        Kpgl_jbcz.Show 1
    End If

End Sub

Private Sub Form_Activate()              '保持窗体最大化
    Me.WindowState = 2
End Sub

Private Sub Form_Resize()                '根据窗体大小来调整网格,标题栏大小
    
    On Error Resume Next
    
    With CxbbGrid
        .Width = Me.Width - 160
        .Height = Me.Height - .Top - 400
    End With
    
    With Pic_Title
        .Width = Me.Width - 160
    End With
    
    GsToolbar.Left = Me.Width - GsToolbar.Width - 160

End Sub

Private Sub Form_Load()                  '窗体装入
     
    '调入打印页面设置窗体
    ReportTitle = "固定资产清单报表"
    XtReportCode = "Gdzc_Book_CardList"
    Load Dyymctbl
     
    '调整标题栏及网格、格式工具条位置
    Pic_Title.Left = 40
    Pic_Title.Top = SzToolbar.Top + SzToolbar.Height - 10
    CxbbGrid.Left = Pic_Title.Left
    CxbbGrid.Top = Pic_Title.Top + Pic_Title.Height + 20
    
    '调 入 网 格
    GridCode = "Gdzc_Book_CardList"
    Call BzWgcsh(CxbbGrid, GridCode, GridInf(), GridBoolean(), GridInt(), GridStr())
     
    Qslz = GridInf(1)
    Sjhgd = GridInf(2)
    Sfxshjwg = GridInf(7)
    Szzls = CxbbGrid.Cols - 1

End Sub

Private Sub Form_Unload(Cancel As Integer)                                  '窗体卸载
    
    '卸载条件窗体
    Book_CardList_Search.UnloadCheck.Value = 1
    Unload Book_CardList_Search
    '卸载打印页面设置窗体
    Unload Dyymctbl

End Sub

Private Sub GsToolbar_ButtonClick(ByVal Button As MSComctlLib.Button)       '网格格式调整
    
    Select Case Button.Key
        Case "bcgs"                                          '保存表格格式
          Call Bcwggs(CxbbGrid, GridCode, GridStr)
        Case "hfmrgs"                                        '恢复默认格式
          Call Hfmrgs(CxbbGrid, GridCode, GridStr)
        Case "szxsxm"                                        '设置显示项目
          Call Szxsxm(CxbbGrid, GridCode)
    End Select

End Sub

Private Sub SzToolbar_ButtonClick(ByVal Button As MSComctlLib.Button)       '菜单功能按钮
    
    Select Case Button.Key
        Case "ymsz"                                          '页面设置
            Dyymctbl.Show 1
        Case "yl"                                            '预 览
            Call bbyl(True)
        Case "dy"                                            '打 印
            Call bbyl(False)
        Case "cx"                                            '查 询
            Book_CardList_Search.Show 1
        Case "kp"                                            '卡片
            CxbbGrid_DblClick
        Case "bd"                                            '变动单
            If CxbbGrid.Row > 0 And CxbbGrid.Row < CxbbGrid.Rows - 1 Then
                Book_Vari.Lbl_Num.Caption = Trim(CxbbGrid.TextMatrix(CxbbGrid.Row, 0))
                Book_Vari.Show
            End If
        Case "fh"                                            '退 出
            Unload Me
        Case "bz"
            SendKeys "{F1}"
     End Select
     
End Sub

Private Sub Timer1_Timer()                                 '在窗体激活后调入查询程序
    
    Timer1.Enabled = False
    Xt_Wait.Show
    Xt_Wait.Refresh
    
    '加快显示速度
    CxbbGrid.Redraw = False
    
    '生成查询结果
    Call Sub_Query
    
    CxbbGrid.Redraw = True

⌨️ 快捷键说明

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