msgbox的应用
时 间:2007-11-20 16:22:12
作 者:李双军 ID:18 城市:温州
摘 要:msgbox妙用
正 文:
在修改窗体中关闭按钮中加入msgbox提示框可以查看到哪些内容修改了
Private Sub Form_Load()
Me.RecordSource = "Select * FROM tbl_gys Where tbl_gys.gysID='" & strSelectID & "'"
strSelectID_old = strSelectID
Me.gysid.Enabled = False
Me.gyslbid.SetFocus
Me.bm.Caption = Me.gyslbid 'bm,bm1,bm2,bm3为标签
Me.bm1.Caption = Me.gysmc
If Not IsNull(Me.lxr) Then
Me.bm2.Caption = Me.lxr
End If
If Not IsNull(Me.lxdh) Then
Me.bm3.Caption = Me.lxdh
End If
End Sub
Private Sub ToolbarFrm_ButtonClick(ByVal Button As Object)
'刷新当前窗体内容
Dim a, b, c, d As String
a = ""
b = ""
c = ""
d = ""
Me.Refresh
If Me.bm.Caption <> Me.gyslbid Then
a = "您确认要修改此供应商类别为【" & Me.gyslbid & "】吗? "
End If
If Me.bm1.Caption <> Me.gysmc Then
b = "您确认要修改此供应商为【" & Me.gysmc & "】吗?"
End If
If Me.bm2.Caption <> Me.lxr Then
c = "您确认要修改此联系人为【" & Me.lxr & "】吗?"
End If
If Me.bm3.Caption <> Me.lxdh Then
d = "您确认要修改此联系电话为【" & Me.lxdh & "】吗?"
End If
If a <> "" or b <> "" or c <> "" or d <> "" Then
If MsgBox("" & a & Chr(13) & b & Chr(13) & c & Chr(13) & d & "", vbOKCancel + vbInformation, "提示") = vbOK Then
DoCmd.Echo False
Forms!usysfrmMain!frmChild.SourceObject = "frm_gys_child"
DoCmd.Echo True
Forms!usysfrmMain!frmChild.Form.TimerInterval = 300
DoCmd.Close acForm, "frm_gys_child_Edit"
End If
Exit Sub
End If
Forms!usysfrmMain!frmChild.Form.TimerInterval = 300
DoCmd.Close acForm, "frm_gys_child_Edit"
End Sub
在msgbox的提示中加入Chr(13)是进行回车,这样就可以显示几行了也可以用Chr(11)换行来代替,
这个效果不错,呵呵,大家可以试一下,再修改一下就可以对修改的内容进行取消恢复了
Access软件网官方交流QQ群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- Access快速开发平台--对上传...(11.22)
- Access快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)
- 微软Access邀测新Monaco...(11.12)
- Access列表框左右互选、列表框...(11.11)
- 高效率在导入数据前删除记录(11.10)
- Access报价单转订单示例代码(11.08)
- Access系统自带的日期选择器不...(11.08)