Z
zionsaal
how can I create A msg box should show how many records the run sql
cmd just updated I have the set warnings off
cmd just updated I have the set warnings off
Look into the RecordsAffected Property of a DAO Recordset.
--
HTH - RuralGuy (RG for short) acXP WinXP Pro
Please post back to this forum so all may benefit.
http://www.accessmonster.com/Uwe/Forums.aspx/access-forms/200706/1
[quoted text clipped - 7 lines]Look into the RecordsAffected Property of a DAO Recordset.
the code:
Private Sub Command3_Click()
DoCmd.SetWarnings False
DoCmd.RunSQL "update master set tag = true where tag = false"
DoCmd.SetWarnings True
the code:
Private Sub Command3_Click()
DoCmd.SetWarnings False
DoCmd.RunSQL "update master set tag = true where tag = false"
DoCmd.SetWarnings True
you need A c c e s s D a t a P r o j e c t s
- Show quoted text -