- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
资源名称:ERPSYS.zip [点击查看]
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:2k
源码类别:
企业管理
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form CSH_FrmGridSearch
- BorderStyle = 1 'Fixed Single
- Caption = "编码定位"
- ClientHeight = 1350
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 3615
- Icon = "初始化_编码定位.frx":0000
- LinkTopic = "Form1"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1350
- ScaleWidth = 3615
- StartUpPosition = 1 '所有者中心
- Begin VB.TextBox txtCode
- Height = 300
- Left = 1020
- MaxLength = 15
- TabIndex = 2
- Top = 240
- Width = 2325
- End
- Begin VB.CommandButton cmdOK
- Caption = "确定(&O)"
- Height = 300
- Left = 1020
- TabIndex = 1
- Top = 780
- Width = 1120
- End
- Begin VB.CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "取消(&C)"
- Height = 300
- Left = 2220
- TabIndex = 0
- Top = 780
- Width = 1120
- End
- Begin VB.Label labLocal
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "编码名称:"
- Height = 180
- Left = 210
- TabIndex = 3
- Top = 300
- Width = 900
- End
- End
- Attribute VB_Name = "CSH_FrmGridSearch"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '取消按钮
- Private Sub cmdCancel_Click()
- str_Code = ""
- Unload Me
- End Sub
- '确定按钮
- Private Sub cmdOK_Click()
- If Trim(txtCode.Text) = "" Then Exit Sub
- str_Code = Trim(txtCode.Text)
- Unload Me
- End Sub
- Private Sub Form_Activate()
- txtCode.SetFocus
- End Sub
- '如果按了回车键
- Private Sub txtCode_KeyPress(KeyAscii As Integer)
- If KeyAscii = 13 Then
- cmdOK_Click
- End If
- End Sub