get access edition

Access version and build number

Is this what you mean when you say edition?

Code:
Sub testTips1()
'The following example displays the version and build number of the currently-installed copy of Microsoft Access.

MsgBox "You are currently running Microsoft Access, " _
	& " version " & Application.Version & ", build " _
	& Application.Build & "."

End Sub
 
Back
Top