I\'m trying to store an empty Access database (.mdb) as a resource in my application. I then want to write it out the file system and populate it with table definitions, et
You can also check the names of your resources by invoking
string[] myResources = objAssembly.GetManifestResourceNames();
foreach(string reso in myResources) {
Console.WriteLine(reso);
}
Also, make sure your empty.mdb file is marked with Embedded Resource on compilation action
alt text http://img520.imageshack.us/img520/6649/sinttuloo.png