📄 ts5.frm
字号:
VERSION 5.00
Begin VB.Form ts5
BorderStyle = 1 'Fixed Single
Caption = "注销户口"
ClientHeight = 1770
ClientLeft = 45
ClientTop = 330
ClientWidth = 3840
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1770
ScaleWidth = 3840
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 2160
TabIndex = 2
Top = 1200
Width = 855
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 840
TabIndex = 1
Top = 1200
Width = 855
End
Begin VB.Label Label1
Caption = "户口注销后,其中的人员信息将全部删除,继续吗?"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 360
TabIndex = 0
Top = 360
Width = 3135
End
End
Attribute VB_Name = "ts5"
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 thuhao 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;"
thuhao = frmqchu.Label3.Caption
local_db = "delete from 人口表" + _
" where 人口表.户号=" + "'" + thuhao + "'"
cnn.Execute local_db
local_db = "delete from 人迁出表" + _
" where 人迁出表.户号=" + "'" + thuhao + "'"
cnn.Execute local_db
local_db = "delete from 户口表" + _
" where 户口表.户号=" + "'" + thuhao + "'"
cnn.Execute local_db
local_db = "delete from 户迁出表" + _
" where 户迁出表.户号=" + "'" + thuhao + "'"
cnn.Execute local_db
Unload ts5
Unload frmqchu
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 ts5
frmqchu.Enabled = True
mainfrm.Enabled = True
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -