Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9

    Compatibility of mdb Format Over Ms Access 2010, Office 2010

    While adding any simple command button (having code)on Microsoft form created in MS Access 2003(mdb) and try to save it in MS Access 2010 in same db format (mdb), I am getting the following error



    "This form or report contains changes that are incompatible with the current database format. The form or report was not saved."

    This way i am not able to add any control on mdb format using MS Access 2010. Could anyone help me out how it can be possible?

  2. #2
    alansidman's Avatar
    alansidman is offline VIP
    Windows 7 32bit Access 2007
    Join Date
    Apr 2010
    Location
    Steamboat Springs
    Posts
    2,529
    My understanding (although I am using 2007) is that any mdb file updated in 2010 is not backwards compatible to earlier versions. So I am guessing that you need to make the file an accdb file. This is one of the reasons that I have not moved to 2010 as I still have a need to maintain mdb files.

    Alan

  3. #3
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9
    Thanks for your reply Alan!! it's not good that MS Access 2010 doesn't have backward compatibility. It should be actually. Atleast there should be some workaround. In my one of the client there are about 5000 users and everybody is not willing to work on 2010.

  4. #4
    alansidman's Avatar
    alansidman is offline VIP
    Windows 7 32bit Access 2007
    Join Date
    Apr 2010
    Location
    Steamboat Springs
    Posts
    2,529
    I wasn't entirely correct. However, here is a link to MS that clarifies.

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


    I think this thread here explains the compatibility issue

    http://answers.microsoft.com/en-us/o...e-dfe7908f07ed


    Alan

  5. #5
    1eye1vision is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jul 2011
    Posts
    35
    In access 2010, you can save the mdb format,
    when saving goto Save and Publish, this will allow you to save in the mdb format....

  6. #6
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9
    I am talking about different issue. I am trying to open mdb file over MS 2010 and try to add a command button on form and then try to save it within mdb format and getting error over there.

  7. #7
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9

    Lightbulb MS Access 2010 with mdb database

    I am trying to add a command button (having simple code) on Microsoft form created in MS Access 2003(mdb) and try to save it in MS Access 2010 in same db format (mdb), I am getting the following error

    "This form or report contains changes that are incompatible with the current database format. The form or report was not saved."
    And when i tried same over MS Access 2003, there is no error. Seems that there is some compatibility issue.
    Can anyone suggest, how can i rid of above error? I want to work on mdb file on MS Access 2010.

  8. #8
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    What is the code you're trying to run?

  9. #9
    boblarson is offline --------
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2011
    Posts
    1,272
    Ashok:

    Are you using Access 2010 64 bit? If so, I think that may be your problem.

  10. #10
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9
    Here's the description what i am doing.

    1) I opened already exist mdb file on MS Access 2010.
    2) Then i add a command button on form layout
    3) I added following line of code on click event of new command button.

    If Me.Dirty Then 'Save any edits.
    Me.Dirty = False
    End If

    If Me.NewRecord Then 'Check there is a record to print
    MsgBox "Select a record to print"
    Else
    strwhere = "[ID] = " & Me.[ID]
    DoCmd.OpenReport "qckprint1", acViewPreview, , strwhere
    End If

    4) when i click on Save icon button. I am getting the following error. Basically i am not changing the format i am trying to save it on mdb format.

    "This form or report contains changes that are incompatible with the current database format. The form or report was not saved."

    5) It's working fine when i tried the same on MS Access 2003.

    I don't know if i can attach the file over here.

  11. #11
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9
    Quote Originally Posted by boblarson View Post
    Ashok:

    Are you using Access 2010 64 bit? If so, I think that may be your problem.
    Bob,

    I am using MSA Version 14.0.4760.1000 (32 bit)

  12. #12
    boblarson is offline --------
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2011
    Posts
    1,272
    Quote Originally Posted by ashok4814 View Post
    Bob,

    I am using MSA Version 14.0.4760.1000 (32 bit)
    Then you might want to go change your profile here because it looks to me that you are using Office 2010 64 bit from this:


  13. #13
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9
    Quote Originally Posted by boblarson View Post
    Then you might want to go change your profile here because it looks to me that you are using Office 2010 64 bit from this:

    Thanks Bob

  14. #14
    nicknameoscar is offline Advanced Beginner
    Windows XP Access 2000
    Join Date
    Apr 2011
    Location
    Earlysville, VA
    Posts
    91
    Could this be the infamous "Trusted locations" issue?

  15. #15
    ashok4814 is offline Novice
    Windows XP Access 2010 64bit
    Join Date
    Jul 2011
    Posts
    9
    Quote Originally Posted by nicknameoscar View Post
    Could this be the infamous "Trusted locations" issue?
    nope..it's not related to trusted location

Page 1 of 2 12 LastLast
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Database in unrecognized format - 2010 to 2007
    By ajetrumpet in forum Access
    Replies: 2
    Last Post: 03-16-2011, 01:46 PM
  2. DateAdd error in MS Office 2010
    By Noah4x4 in forum Access
    Replies: 7
    Last Post: 03-15-2011, 05:08 PM
  3. Microsoft Access 2007 - 2010 Compatibility
    By AccessFreak in forum Forms
    Replies: 4
    Last Post: 01-05-2011, 07:57 PM
  4. Office 2010, 64 bit crashed
    By gppkuntz in forum Access
    Replies: 2
    Last Post: 12-21-2010, 06:28 PM
  5. Office 2010 and linked table manager Help
    By bobfin in forum Access
    Replies: 8
    Last Post: 08-05-2010, 07:15 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums