Hello All,
I am trying to get the AppTitle of my application for some code that I am running.
Here the situation:
If you have not already figured out there are some differences with 2010 Access and 2013 Access. One of which is instead of Microsoft Access in the title bar it just says Access.
What the big deal right?
Well I was using that to set focus back to access by using
So I just trying to make it dynamic by reading the AppTitle first and using that to change the AppTitle.
I was trying to use
Or something like this. but it does not work.
Any Ideas?
Thanks
I am trying to get the AppTitle of my application for some code that I am running.
Here the situation:
If you have not already figured out there are some differences with 2010 Access and 2013 Access. One of which is instead of Microsoft Access in the title bar it just says Access.
What the big deal right?
Well I was using that to set focus back to access by using
Code:
AppActivate "Microsoft Access"
So I just trying to make it dynamic by reading the AppTitle first and using that to change the AppTitle.
I was trying to use
Code:
Dim AppT as String
AppT = currentDb.Properties("AppTitle").name
'rest of code
AppActivate AppT
End Sub
Or something like this. but it does not work.
Any Ideas?
Thanks