Add basic support for Access 2010

Thanks Jakob Egger:
a928a36804
This commit is contained in:
Nirgal Vourgère
2012-07-07 21:08:25 +02:00
parent 88ff1c023e
commit b0fb6a4167
6 changed files with 33 additions and 20 deletions

View File

@@ -60,8 +60,10 @@ char* version;
version = "3 (Access 97)";
else if (mdb->f->jet_version == MDB_VER_JET4)
version = "4 (Access 2000/XP/2003)";
else if (mdb->f->jet_version == MDB_VER_JET5)
version = "5 (Access 2007)";
else if (mdb->f->jet_version == MDB_VER_ACCDB_2007)
version = "ACE 12 (Access 2007)";
else if (mdb->f->jet_version == MDB_VER_ACCDB_2010)
version = "ACE 14 (Access 2010)";
else
version = "Unknown";
gtk_label_set_text(GTK_LABEL(label), version);

View File

@@ -67,7 +67,7 @@ GdkPixbuf *pixbuf=NULL;
"authors", authors,
"comments", _("GNOME MDB Viewer is a grapical interface to "
"MDB Tools. It lets you view and export data and schema "
"from MDB files produced by MS Access 97/2000/XP/2003/2007."),
"from MDB files produced by MS Access 97/2000/XP/2003/2007/2010."),
"copyright", _("Copyright 2002-2012 Brian Bruns and others"),
"documenters", documenters,
"logo", pixbuf,