472,372 Members | 1,647 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,372 software developers and data experts.

Should we Convert to Access 2007?

Hello,

We have several complex applications developed in Access 2003 by
various outside consultants. These applications link to a variety of
Oracle tables and are used only for Access reports. User level
security is also built in via the mdw workgroup file for all
applications.

I've been asked to research how viable it is to convert all of these
applications to Access 2007. I understand 2007 discontinued user
level security via the mdw file. On one hand, I see that Microsoft
advises NOT to convert to 2007 if you need user level security:

http://office.microsoft.com/en-us/ac...345611033.aspx

But then it also says that you can use the Workgroup Administrator
Utility in Access 2007:

http://support.microsoft.com/kb/918583

Which is a little confusing.....But the bottom line is we definitely
need to continue with user level security. I'm interested in getting
some feedback and opinions on what we should do. Also, we do not own
SQL Server, but do have MySQL installed.

Thanks for any and all feedback.
Feb 27 '08 #1
5 2895
Hopefully someone else with Oracle experience will comment too.

As far as Access goes, 2007 has a new file format (ACCDB), and you cannot
use security (MDW) with that. But if you keep your MDB format file and use
it in A2007, you can continue to use Access security. You can fire up the
interface from within A2007 (in an MDB) with this kind of thing:
RunCommand acCmdWorkgroupAdministrator
RunCommand acCmdUserAndGroupAccounts
RunCommand acCmdUserAndGroupPermissions

Other info on converting to A2007:
http://allenbrowne.com/Access2007.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.

"WPW07" <ww********@gmail.comwrote in message
news:37**********************************@z17g2000 hsg.googlegroups.com...
Hello,

We have several complex applications developed in Access 2003 by
various outside consultants. These applications link to a variety of
Oracle tables and are used only for Access reports. User level
security is also built in via the mdw workgroup file for all
applications.

I've been asked to research how viable it is to convert all of these
applications to Access 2007. I understand 2007 discontinued user
level security via the mdw file. On one hand, I see that Microsoft
advises NOT to convert to 2007 if you need user level security:

http://office.microsoft.com/en-us/ac...345611033.aspx

But then it also says that you can use the Workgroup Administrator
Utility in Access 2007:

http://support.microsoft.com/kb/918583

Which is a little confusing.....But the bottom line is we definitely
need to continue with user level security. I'm interested in getting
some feedback and opinions on what we should do. Also, we do not own
SQL Server, but do have MySQL installed.

Thanks for any and all feedback.
Feb 28 '08 #2
Thanks Allen.

Just so I understand this correctly....

1. I keep the application in Access 2003. Users who have Access 2007
can open it and create new reports and queries in Access 2007?

2. If an administrator wants to use the MDW file, I should create a
module with RunCommand code?

3. How would I tie the RunCommand code to the MDW file?

4. How would the administrator call it? Should I create a form that
calls the RunCommand code in it?

Thank you,

William

On Feb 27, 7:36 pm, "Allen Browne" <AllenBro...@SeeSig.Invalidwrote:
Hopefully someone else with Oracle experience will comment too.

As far as Access goes, 2007 has a new file format (ACCDB), and you cannot
use security (MDW) with that. But if you keep your MDB format file and use
it in A2007, you can continue to use Access security. You can fire up the
interface from within A2007 (in an MDB) with this kind of thing:
RunCommand acCmdWorkgroupAdministrator
RunCommand acCmdUserAndGroupAccounts
RunCommand acCmdUserAndGroupPermissions

Other info on converting to A2007:
http://allenbrowne.com/Access2007.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.

"WPW07" <wwisnie...@gmail.comwrote in message

news:37**********************************@z17g2000 hsg.googlegroups.com...
Hello,
We have several complex applications developed in Access 2003 by
various outside consultants. These applications link to a variety of
Oracle tables and are used only for Access reports. User level
security is also built in via the mdw workgroup file for all
applications.
I've been asked to research how viable it is to convert all of these
applications to Access 2007. I understand 2007 discontinued user
level security via the mdw file. On one hand, I see that Microsoft
advises NOT to convert to 2007 if you need user level security:
http://office.microsoft.com/en-us/ac...345611033.aspx
But then it also says that you can use the Workgroup Administrator
Utility in Access 2007:
http://support.microsoft.com/kb/918583
Which is a little confusing.....But the bottom line is we definitely
need to continue with user level security. I'm interested in getting
some feedback and opinions on what we should do. Also, we do not own
SQL Server, but do have MySQL installed.
Thanks for any and all feedback.
Feb 28 '08 #3
Okay, I generally don't fire the wizards to create a workgroup file in an
end-user database. But I do include the buttons that fire up the
groups/account permissions. For these, you don't need the MDW: it uses the
one that was activated to get in here in the first place.

--
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.

"WPW07" <ww********@gmail.comwrote in message
news:e5**********************************@o77g2000 hsf.googlegroups.com...
Thanks Allen, do all three of these lines need to be in the module?
Do I need to put in the path and name of the workgroup file? If so
how and where?

RunCommand acCmdWorkgroupAdministrator
RunCommand acCmdUserAndGroupAccounts
RunCommand acCmdUserAndGroupPermissions.
Feb 28 '08 #4
Does that mean I do need all three RunCommands?
On Feb 28, 9:25 am, "Allen Browne" <AllenBro...@SeeSig.Invalidwrote:
Okay, I generally don't fire the wizards to create a workgroup file in an
end-user database. But I do include the buttons that fire up the
groups/account permissions. For these, you don't need the MDW: it uses the
one that was activated to get in here in the first place.

--
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.

"WPW07" <wwisnie...@gmail.comwrote in message

news:e5**********************************@o77g2000 hsf.googlegroups.com...
Thanks Allen, do all three of these lines need to be in the module?
Do I need to put in the path and name of the workgroup file? If so
how and where?
RunCommand acCmdWorkgroupAdministrator
RunCommand acCmdUserAndGroupAccounts
RunCommand acCmdUserAndGroupPermissions.
Feb 28 '08 #5
Can I suggest that you open the Immediate Window (Ctrl+G), and actually try
the commands?

Hopefully you know which ones you will need in your database.

--
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.

"WPW07" <ww********@gmail.comwrote in message
news:af**********************************@u69g2000 hse.googlegroups.com...
Does that mean I do need all three RunCommands?
RunCommand acCmdWorkgroupAdministrator
RunCommand acCmdUserAndGroupAccounts
RunCommand acCmdUserAndGroupPermissions
Feb 28 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Kakishev | last post by:
I have a problem at how best to convert a Date into a text field and keep the format dd/mmm/yyyy (01-FEB-2007). The problem is that dates are imported from SQL into an access front end Database....
2
by: Chris | last post by:
How can I convert a 2000 database to 2007 ? Only 97 MDB files are converted in 2007.
2
by: favor08 | last post by:
7/19/2007 12:46:30 am. is in a field called CmplteDte. It is a date stamp of when the user completed the item. I need the time for a report but for a form that the supervisors use to QA the previous...
2
by: Ch Pravin | last post by:
Hi All: I am having the following xml which i need to convert to excel using xslt. Please help me out. Afghanistan.xml <?xml version="1.0" encoding="utf-16"?> <Languages...
49
by: ARC | last post by:
Hello all, I have one chance to get this right, as I'm nearing a release of a program. I've looked at the database settings, and so far, have set the following: * Unchecked 'Enable design...
2
budigila
by: budigila | last post by:
Hiya peeps, Okies, I have been trying to work this out for a while now to no avail... I am a beginner to this whole coding thing but have made great strides in my project. Basically what I am...
0
by: feeblemind | last post by:
Hi everyone, I am having problem/troubles with creating an sql inline statement for our application. How do I create a statement/query that selects list of servers with defined date ranges, but...
18
by: smckibbe01 | last post by:
I have Pivot Table query in MS Access that I would like to run in SQL Server 2005. Can anyone help me to convert the syntax over to SQL Server. The following is the query in MS Access: ...
5
by: SUSAN MALAN | last post by:
I have created a Database in Access 2003 and have now downloaded 2007. I have tried converting it in several ways. I have opened my previous Database and saved it as a 2007 verion -No success, I have...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.
0
DizelArs
by: DizelArs | last post by:
Hi all) Faced with a problem, element.click() event doesn't work in Safari browser. Tried various tricks like emulating touch event through a function: let clickEvent = new Event('click', {...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.