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

📄 main_jbzl_kw.frm

📁 完整的物资管理系统源码
💻 FRM
📖 第 1 页 / 共 2 页
字号:
         BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628} 
            Picture         =   "main_jbzl_kw.frx":353D
            Key             =   ""
         EndProperty
      EndProperty
   End
   Begin MSComctlLib.Toolbar Toolbar1 
      Align           =   1  'Align Top
      Height          =   795
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   8220
      _ExtentX        =   14499
      _ExtentY        =   1402
      ButtonWidth     =   1138
      ButtonHeight    =   1349
      Appearance      =   1
      Style           =   1
      ImageList       =   "ImageList1"
      _Version        =   393216
      BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628} 
         NumButtons      =   12
         BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   " 增加 "
            Key             =   "add"
            ImageIndex      =   1
         EndProperty
         BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "修改"
            Key             =   "modify"
            ImageIndex      =   2
         EndProperty
         BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "删除"
            Key             =   "delete"
            ImageIndex      =   3
         EndProperty
         BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "保存"
            Key             =   "save"
            ImageIndex      =   4
         EndProperty
         BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "取消"
            Key             =   "cancel"
            ImageIndex      =   5
         EndProperty
         BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "查找"
            Key             =   "find"
            ImageIndex      =   6
         EndProperty
         BeginProperty Button7 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Enabled         =   0   'False
         EndProperty
         BeginProperty Button8 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Enabled         =   0   'False
         EndProperty
         BeginProperty Button9 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Enabled         =   0   'False
         EndProperty
         BeginProperty Button10 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Enabled         =   0   'False
         EndProperty
         BeginProperty Button11 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Enabled         =   0   'False
            Style           =   3
         EndProperty
         BeginProperty Button12 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "关闭"
            Key             =   "close"
            ImageIndex      =   7
         EndProperty
      EndProperty
      BorderStyle     =   1
   End
   Begin VB.Frame Frame1 
      Height          =   735
      Left            =   15
      TabIndex        =   1
      Top             =   765
      Width           =   8175
      Begin VB.TextBox Text1 
         Height          =   330
         Index           =   1
         Left            =   4035
         Locked          =   -1  'True
         TabIndex        =   4
         Top             =   240
         Width           =   3945
      End
      Begin VB.TextBox Text1 
         Height          =   330
         Index           =   0
         Left            =   1050
         Locked          =   -1  'True
         TabIndex        =   3
         Top             =   240
         Width           =   2310
      End
      Begin VB.Label Label2 
         Caption         =   "备注"
         Height          =   165
         Left            =   3525
         TabIndex        =   6
         Top             =   315
         Width           =   390
      End
      Begin VB.Label Label1 
         Caption         =   "仓库名称"
         Height          =   165
         Left            =   210
         TabIndex        =   2
         Top             =   315
         Width           =   765
      End
   End
End
Attribute VB_Name = "main_jbzl_kw"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim rs1 As New ADODB.Recordset
Public blnAdd As Boolean
Sub view_data()
  Dim i As Integer
  If Adodc1.Recordset.RecordCount > 0 Then
  For i = 0 To Text1.UBound
    Text1(i) = DataGrid1.Columns(i).Text
  Next i
  End If
End Sub
Private Sub DataGrid1_RowColChange(LastRow As Variant, ByVal LastCol As Integer)
  view_data
End Sub
Private Sub Form_Activate()
  If sql <> "" Then
     Adodc1.RecordSource = sql
     Adodc1.Refresh
     view_data
     If Adodc1.Recordset.RecordCount = 0 Then
        MsgBox "此记录不存在!", , "提示窗口"
     End If
  End If
End Sub
Private Sub Form_Load()
  Me.Caption = Text
  tlbState Toolbar1, False
  view_data
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
  sql = ""
End Sub
Private Sub Text1_GotFocus(Index As Integer)
  Text1(Index).BackColor = &HFFFF00
  Text1(Index).SelStart = 0
  Text1(Index).SelLength = Len(Text1(Index))
End Sub
Private Sub Text1_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
  If KeyCode = vbKeyReturn And Index < 1 Then Text1(Index + 1).SetFocus
End Sub
Private Sub Text1_LostFocus(Index As Integer)
  Text1(Index).BackColor = &H80000005
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
  Select Case Button.Key
     Case "add"
       blnAdd = True
       tlbState Toolbar1, True
       Text1(0) = "": Text1(1) = ""
       Text1(0).Locked = False: Text1(1).Locked = False
     Case "modify"
       If Adodc1.Recordset.RecordCount > 0 Then
         blnAdd = False
         tlbState Toolbar1, True
         Text1(0).Locked = False: Text1(1).Locked = False
         view_data
       Else
          MsgBox "系统没有要修改的数据!", , "提示窗口"
       End If
     Case "delete"
       If Adodc1.Recordset.RecordCount > 0 Then
         Adodc1.Recordset.Delete
         Adodc1.Refresh
        Else
          MsgBox "系统没有要删除的数据!", , "提示窗口"
        End If
     Case "save"
       If Text1(0).Text = "" Then
          MsgBox "系统不允许" & Label1 & "为空!", , "提示窗口"
          Exit Sub
       End If
       On Error GoTo SaveErr
       If blnAdd = True Then
          rs1.Open "select * from 库位表 where 库位名称='" + Text1(0) + "'", cnn, adOpenKeyset
          If rs1.RecordCount > 0 Then
             MsgBox Label1 & "不允许重复!", , "提示窗口"
          Else
             cnn.Execute ("insert into 库位表(库位名称,备注,录入人,录入日期) values('" + Text1(0) + "','" + Text1(1) + _
             "','" + czy + "','" + Str(Date) + "')")
             Adodc1.Refresh
             tlbState Toolbar1, False
             Text1(0).Locked = True: Text1(1).Locked = True
          End If
          rs1.Close
       Else
         rs1.Open "select * from 库位表 where 库位名称='" + Text1(0) + "'", cnn, adOpenKeyset
         If rs1.RecordCount > 0 And Text1(0) <> DataGrid1.Columns(0) Then
            MsgBox Label1 & "不允许重复!", , "提示窗口"
         Else
           cnn.Execute ("update 库位表 set 库位名称 ='" + Text1(0) + "',备注='" + Text1(1) + _
           "',修改人='" + czy + "',修改日期='" + Str(Date) + "'where 库位名称='" + DataGrid1.Columns(0) + "'")
           Adodc1.Refresh
           tlbState Toolbar1, False
           Text1(0).Locked = True: Text1(1).Locked = True
         End If
         rs1.Close
       End If
       Exit Sub
SaveErr:
       MsgBox Err.Description
     Case "cancel"
       tlbState Toolbar1, False
       Text1(0).Locked = True: Text1(1).Locked = True
       view_data
     Case "find"
       tb = "库位表"
       Load main_find
       main_find.Show 1
     Case "close"
       Unload Me
  End Select
End Sub

⌨️ 快捷键说明

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