How do I join another workgroup after updating to Office 2007?

G

Guest

After Converting a database file from Access 2000 to Access 2007 I can not
find a way to join the workgroup file originally used for the database. It
automatically uses the default system workgroup file. How can I join the
correct workgroup file.
 
J

Joan Wild

Did you convert to the mdb or the accdb format in 2007? If the latter,
security is 'no more' in accdb. It is still supported in the mdb format.

If you're using the mdb format, you can change the workgroup via
Database Tools...Administer...Users and Permissions
or from code
Docmd.RunCommand acCmdWorkgroupAdministrator

The preferred method though, is to create a desktop shortcut that specifies
the workgroup file to
use
"path to 2007msaccess.exe" "path to mdb" /wrkgrp "path to secure.mdw"
 
G

Guest

I am using the .mdb format.
I did get this to work by creating a form with the code below. however, when
I am trying to assign the workgroup in the properties of the shortcut it will
not allow me the length of charecters I need to complete the path of the
workgroup file.

How can I get the shortcut to work while assigning the shortcut to the
workgroup file?

Thanks for your help.
 
J

Joan Wild

That's a limitation of a shortcut. Can you move either/both the mdb and the
mdw higher in the folder structure and shorten their paths?
 
G

Guest

I shortened the folder name and that allowed me enough character spaces.

Thanks for your help.
 
G

Guest

This info helped me out GREATLY!!

thanks.

Joan Wild said:
Did you convert to the mdb or the accdb format in 2007? If the latter,
security is 'no more' in accdb. It is still supported in the mdb format.

If you're using the mdb format, you can change the workgroup via
Database Tools...Administer...Users and Permissions
or from code
Docmd.RunCommand acCmdWorkgroupAdministrator

The preferred method though, is to create a desktop shortcut that specifies
the workgroup file to
use
"path to 2007msaccess.exe" "path to mdb" /wrkgrp "path to secure.mdw"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top