Using MsgBox to save record in a table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have a MsgBox that prompts the user for a version of software. I want to
save the user's response into a table called tbl_current_version. This table
is not based on the form. How can I achieve this?
 
You would need to write the update code in the event that calls the MsgBox.
The simplest solution is to run an update query.
 
Back
Top