Frothingslosh
Premier Pale Stale Ale
- Local time
- Today, 15:46
- Joined
- Oct 17, 2012
- Messages
- 3,276
And I just responded to it. 

And I just responded to it.![]()
And I just responded to it.![]()
DoCmd.OpenForm "frm_msgbx, acNormal, , , , acDialog"
'Notify the user that the application will update.
MsgBox "UPDATE REQUIRED" & vbCrLf & vbCrLf & _
"Your program is not the latest version." & vbCrLf & vbCrLf & _
"The front-end needs to be updated. The program will now close and then should reopen automatically.", _
vbCritical
DoCmd.OpenForm "frm_msgbx", acNormal, , , , acDialog
You have it formatted incorrectly.
Here is the Microsoft page on the OpenForm method: https://msdn.microsoft.com/en-us/VBA/access-vba/articles/docmd-openform-method-access?f1url=https%3A%2F%2Fmsdn.microsoft.com%2Fquery%2Fdev11.query%3FappId%3DDev11IDEF1%26l%3Den-US%26k%3Dk(vbaac10.chm4160)%3Bk(TargetFrameworkMoniker-Office.Version%3Dv16)%26rd%3Dtrue
Please keep in mind that the answer to your issue can be found by googling, and that intelligent use of Google is a required skill for programmers.
Your error was that instead of placing the quotes around the string literal, you placed them around the entire set of arguments, which means that the engine is looking for a form named "frm_msgbx, acNormal, , , , acDialog", and opening it with default parameters.
What you want isNow, that said, are you going to implement a unique message box form for every single warning that Access can show? There are thousands of messages that can come up, after all. While it is possible to do a custom message box form that can be adapted to every occasion, it is pretty low ROI and, to be brutally honest, beyond your apparent current ability.Code:DoCmd.OpenForm "frm_msgbx", acNormal, , , , acDialog
I would have thought that was unnecessary, as soon as they start the app, they have to update.
The only thing I had to do was to make sure each user had a copy of the versioning app to start with. Once they had that it looked after itself.
Option Compare Database
Option Explicit
Private Sub cmdUpdateVersionNumber_Click()
If Me.txtVersionNumber & "" <> "" Then
DoCmd.RunSQL ("UPDATE tbl-fe_version SET tbl-fe_version.fe_version_number = ' " & Me.txtVersionNumber)
DoCmd.RunSQL ("UPDATE tbl-version_fe_master SET tbl-version_fe_master.fe_version_number = ' " & Me.txtVersionNumber)
Else
MsgBox ("You Must First Enter a Version Number")
txtVersionNumber.SetFocus
End If
txtVersionNumber = ""
End Sub