Freigeben über


CurrentProject.FileFormat-Eigenschaft (Access)

Gibt eine AcFileFormat-Konstante zurück, die das Microsoft Access-Versionsformat des angegebenen Projekts angibt. Schreibgeschützt.

Syntax

Ausdruck. FileFormat

Ausdruck Eine Variable, die ein CurrentProject-Objekt darstellt.

Hinweise

Verwenden Sie die ConvertAccessProject-Methode, um ein Access-Projekt in eine andere Version zu konvertieren.

Beispiel

Das folgende Beispiel wertet das aktuelle Projekt aus und zeigt eine Meldung an, welcher Version von Microsoft Access das Dateiformat entspricht.

Dim strFormat As String 
 
Select Case CurrentProject.FileFormat 
 Case acFileFormatAccess2 
 strFormat = "Microsoft Access 2" 
 Case acFileFormatAccess95 
 strFormat = "Microsoft Access 95" 
 Case acFileFormatAccess97 
 strFormat = "Microsoft Access 97" 
 Case acFileFormatAccess2000 
 strFormat = "Microsoft Access 2000" 
 Case acFileFormatAccess2002 
 strFormat = "Access 2002 - 2003" 
 Case acFileFormatAccess12 
 strFormat = "Microsoft Access 2007" 
End Select 
 
MsgBox "This is a " & strFormat & " project."

Support und Feedback

Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.