📄 ts3.frm
字号:
VERSION 5.00
Begin VB.Form ts3
BorderStyle = 1 'Fixed Single
Caption = "注销人口"
ClientHeight = 1425
ClientLeft = 45
ClientTop = 330
ClientWidth = 2850
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1425
ScaleWidth = 2850
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 1560
TabIndex = 2
Top = 840
Width = 855
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 360
TabIndex = 1
Top = 840
Width = 855
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "确实要注销此人吗?"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 240
TabIndex = 0
Top = 360
Width = 2295
End
End
Attribute VB_Name = "ts3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Dim cnn As New ADODB.Connection
Dim ret As New ADODB.Recordset
Dim tidcard As String
Dim local_db As String
Set cnn = New ADODB.Connection
Set ret = New ADODB.Recordset
cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + App.Path & "\data\db.mdb" + ";Persist Security Info=False;"
tidcard = frmqcren.Label39.Caption
local_db = "delete from 人口表" + _
" where 人口表.身份证号=" + "'" + tidcard + "'"
cnn.Execute local_db
local_db = "delete from 人迁出表" + _
" where 人迁出表.身份证号=" + "'" + tidcard + "'"
cnn.Execute local_db
Unload ts3
Unload frmqcren
MsgBox "已经成功将此人注销", , "提示"
mainfrm.Enabled = True
'初始化主窗口
mainfrm.guanli.Enabled = True
mainfrm.chaxun.Enabled = True
mainfrm.tongji.Enabled = True
If userid = "admin" Then
mainfrm.xitong.Enabled = True
mainfrm.bdb.Enabled = True
Else
mainfrm.xitong.Enabled = False
mainfrm.bdb.Enabled = False
End If
mainfrm.Command1.Enabled = True
mainfrm.Command2.Enabled = True
mainfrm.Command3.Enabled = True
If userid = "admin" Then
mainfrm.Command4.Enabled = True
Else
mainfrm.Command4.Enabled = False
End If
End Sub
Private Sub Command2_Click()
Unload ts3
frmqcren.Enabled = True
mainfrm.Enabled = True
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -