Prev: forms
Next: Filter Subform
From: mr3316a via AccessMonster.com on
How can I retrieve information from the database properties so I can display
them on the main form of my application?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-forms/201005/1

From: Allen Browne on
What properties?

If you are asking about things like version of Access, file location, etc,
see:
Splash screen with version info
at:
http://allenbrowne.com/ser-53.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.


"mr3316a via AccessMonster.com" <u59438(a)uwe> wrote in message
news:a812e488c310f(a)uwe...
> How can I retrieve information from the database properties so I can
> display them on the main form of my application?

From: Daniel Pineault on
Allen also has another funtion that could help you out, below is a very
slightly modified version of his original function

Function ShowDatabaseProps()
'Purpose: List the properies of the current database.
Dim db As DAO.Database
Dim prp As DAO.Property

On Error GoTo Error_Handler

Set db = CurrentDb()
For Each prp In db.Properties
Debug.Print prp.Name & ":: " & prp.Value
Next

Set db = Nothing

Error_Handler_Exit:
On Error Resume Next
Exit Function

Error_Handler:
If Err.Number = 3251 Then
Resume Next
Else
MsgBox "MS Access has generated the following error" & vbCrLf & vbCrLf &
"Error Number: " & _
Err.Number & vbCrLf & "Error Source: ShowDatabaseProps" & vbCrLf &
"Error Description: " & _
Err.Description, vbCritical, "An Error has Occured!"
Resume Error_Handler_Exit
End If
End Function

See his original function at:
http://allenbrowne.com/func-DAO.html#ShowDatabaseProps
--
Hope this helps,

Daniel Pineault
http://www.cardaconsultants.com/
For Access Tips and Examples: http://www.devhut.net
Please rate this post using the vote buttons if it was helpful.



"Allen Browne" wrote:

> What properties?
>
> If you are asking about things like version of Access, file location, etc,
> see:
> Splash screen with version info
> at:
> http://allenbrowne.com/ser-53.html
>
> --
> Allen Browne - Microsoft MVP. Perth, Western Australia
> Tips for Access users - http://allenbrowne.com/tips.html
> Reply to group, rather than allenbrowne at mvps dot org.
>
>
> "mr3316a via AccessMonster.com" <u59438(a)uwe> wrote in message
> news:a812e488c310f(a)uwe...
> > How can I retrieve information from the database properties so I can
> > display them on the main form of my application?
>
> .
>
 | 
Pages: 1
Prev: forms
Next: Filter Subform