Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Form_ExitUserPasword.frm
Package: ERPSYS.zip [view]
Upload User: zhpu1995
Upload Date: 2013-09-06
Package Size: 61151k
Code Size: 3k
Category:
ERP-EIP-OA-Portal
Development Platform:
Visual Basic
- VERSION 5.00
- Begin VB.Form Form_Userpassword
- BorderStyle = 1 'Fixed Single
- Caption = "口令"
- ClientHeight = 960
- ClientLeft = 4500
- ClientTop = 3420
- ClientWidth = 3930
- Icon = "Form_ExitUserPasword.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 960
- ScaleWidth = 3930
- StartUpPosition = 2 '屏幕中心
- Begin VB.CommandButton Command2
- Caption = "取消&C"
- Height = 300
- Left = 2700
- TabIndex = 5
- Top = 510
- Width = 1125
- End
- Begin VB.CommandButton Command1
- Caption = "确定&D"
- Height = 315
- Left = 2700
- TabIndex = 4
- Top = 90
- Width = 1125
- End
- Begin VB.TextBox Text1
- Height = 285
- IMEMode = 3 'DISABLE
- Index = 1
- Left = 780
- MaxLength = 8
- PasswordChar = "*"
- TabIndex = 0
- Top = 90
- Width = 1755
- End
- Begin VB.TextBox Text1
- Height = 285
- IMEMode = 3 'DISABLE
- Index = 2
- Left = 780
- MaxLength = 8
- PasswordChar = "*"
- TabIndex = 1
- Top = 510
- Width = 1755
- End
- Begin VB.Label Label1
- AutoSize = -1 'True
- Caption = "口令"
- Height = 180
- Index = 1
- Left = 210
- TabIndex = 3
- Top = 150
- Width = 360
- End
- Begin VB.Label Label1
- AutoSize = -1 'True
- Caption = "验证:"
- Height = 180
- Index = 2
- Left = 210
- TabIndex = 2
- Top = 570
- Width = 450
- End
- End
- Attribute VB_Name = "Form_Userpassword"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- If Trim(Text1(1).Text) <> Trim(Text1(2).Text) Then MsgBox "口令验证错误! ", 16: Exit Sub
- Frm_NewUser.Text1(1).Tag = Text1(1).Text
- Frm_NewUser.Text1(2).Tag = "T"
- Unload Me
- End Sub
- Private Sub Command2_Click()
- Unload Me
- End Sub