资源名称:ERPSYS.zip [点击查看]
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:3k
源码类别:
企业管理
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form KF_FrmModiNowQuan
- BorderStyle = 1 'Fixed Single
- Caption = "整理现存量"
- ClientHeight = 1470
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 2880
- Icon = "月末处理_整理现存量.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Moveable = 0 'False
- ScaleHeight = 1470
- ScaleWidth = 2880
- StartUpPosition = 2 '屏幕中心
- Begin VB.Frame Frame1
- Height = 840
- Left = 135
- TabIndex = 2
- Top = 60
- Width = 2580
- Begin VB.Image Image1
- Height = 480
- Left = 135
- Picture = "月末处理_整理现存量.frx":1042
- Top = 195
- Width = 480
- End
- Begin VB.Label Label1
- Caption = "请确认要进行整理现存量操作?"
- Height = 450
- Left = 780
- TabIndex = 3
- Top = 255
- Width = 1695
- End
- End
- Begin VB.CommandButton QdCommand
- Caption = "取消(&C)"
- Height = 300
- Index = 1
- Left = 1605
- TabIndex = 1
- Top = 1035
- Width = 1120
- End
- Begin VB.CommandButton QdCommand
- Caption = "确定(&O)"
- Height = 300
- Index = 0
- Left = 360
- TabIndex = 0
- Top = 1035
- Width = 1120
- End
- End
- Attribute VB_Name = "KF_FrmModiNowQuan"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '*****************************************************************
- ' 模块名称:整理现存量设置
- ' 模块功能:整理现存量
- ' 编 制 者:赵宇光
- ' 编制日期:2001/12/12
- ' 备 注:
- '*****************************************************************
- Private Sub QdCommand_Click(Index As Integer)
- Select Case Index
- Case 0 '确定
- Call StartFinish
- Unload Me
- Case 1 '取消
- Unload Me
- End Select
- End Sub
- Private Sub StartFinish()
- '函数功能:整理现存量
- '整理现存量表
- Cw_DataEnvi.DataConnect.BeginTrans
- Cw_DataEnvi.DataConnect.Execute ("KF_SP_ModiNowQuan")
- Cw_DataEnvi.DataConnect.CommitTrans
- Tsxx = "现存量整理完毕!"
- Call Xtxxts(Tsxx, 0, 4)
- Exit Sub
- End Sub