Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 537829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:58:06+00:00 2026-05-13T09:58:06+00:00

I migrated a database from access 2003 to access 2007. It seems to work

  • 0

I migrated a database from access 2003 to access 2007.
It seems to work but when I clicked the buttons from A-Z I’m getting this error message:
“Microsoft office can’t find the object ‘A_Z Schaltfläche’
If ‘A_Z Schaltfläche is a new macro or macro group, make sure you have saved it and that you have typed it’s name correctly”

I didn’t make a new macro but I deleted a word in one of the tables which I think causes the problem: “Like [Formulare]![Frm_Fahrzeugdaten]![Schaltflächenkriterium]”

I found it under the “Record Source” and under one field, that expression is written in the criteria field. If I don’t delete this I’m getting a box which says: “Enter Parameter Value” Formulare!Frm_Fahrzeugdaten!Schaltflächenkriterium

My skills in VBA is not really so good, and I need some help how to correct the problem

Thanks for your help.

=======

additional info’s:
When I open the VBA code under the Form_Fahrzeugen, here is what I saw:

Private Sub Auswahl_Click()
    On Error GoTo Auswahl_Click_Err

    ' Programmablauf
    Me.Filter = "[A_Fahrzeugtyp] like '*'"
    Me.Namen_Filter.Value = 27
    Me.Schaltflächenkriterium = "*"
    Schaltflächenkriterium = "*"
    Me.Requery
    Me.lfd_Name.Requery
    DoCmd.GoToRecord acDataForm, "Frm_Fahrzeugdaten", acGoTo, 1
    Me.lfd_Name.Selected(1) = True
    Me.A_Inventarnummer.SetFocus

    GoTo Auswahl_Click_End

Auswahl_Click_Err:
    Call ErrorHandler("Form_Frm_Fahrzeugdaten", "Auswahl_Click", Error$, Err, Erl)
    Resume Next

Auswahl_Click_End:
    'Ausführungen vor den verlassen der Routine

End Sub

Does it have something to do with the macro name? This is the macro name by the way: “A_Z Schaltfläche”
If I go to the design view of “A_Z Schaltfläche” this is what I got, the conditions are marked yellow I’m not really sure if this is a good sign though:

Thanks

==============

Updates about my problem:

I was able to find the solution of my problem. It was the version of my microsoft office which was causing it. The original database was written in German and when I did the migration, I migrated it to the english version of Access 2007. The reason why it can’t find the object because of the name “Ereignisprozedur” in German and “Event procedure” in English. I changed it to Event Procedure because the error says:
“Microsoft Office Access can’t find the object “Ereignisprozedur”
If Ereignisprozedur is a new macro or macro group, make sure you have saved it and that you have typed its name correctly
Access was unable to locate the macro or VBA function. If you are trying to call a macro, make sure that the name of the macro and the name of the macro group are spelled correctly.
If you are trying to call a user-defined VBA function, be sure to use the following syntax:
=FunctionName() or =FunctionName(argument1,argument2,…)
Make sure that the function is either:
Defined in the code for the form or report.
– or –
A public function that is in a module (not a class module).”

And the word “Formulare” to Forms. Then the program works.

I can’t understand why microsoft programs are language independent???

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:58:06+00:00Added an answer on May 13, 2026 at 9:58 am

    Do you mean you deleted a word in one of the Queries? What it is is a reference to a form called Frm_Fahrzeugdaten and a control (field, column) called Schaltflächenkriterium. It is under criteria, so the query is saying:

    Select such and such where this field (column) is Like this form and this control

    It is usual to have

     Like "*" & [Formulare]![Frm_Fahrzeugdaten]![Schaltflächenkriterium] & "*"
    

    Or

     Like  [Formulare]![Frm_Fahrzeugdaten]![Schaltflächenkriterium] & "*"
    

    That is, with wild cards (*)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 344k
  • Answers 344k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer This can be solved recursively. First, the Cartesian product of… May 14, 2026 at 5:33 am
  • Editorial Team
    Editorial Team added an answer If you were using Audio Queue Services, that's where you'd… May 14, 2026 at 5:33 am
  • Editorial Team
    Editorial Team added an answer It sounds like they are doing this on purpose to… May 14, 2026 at 5:33 am

Related Questions

I am writing code to migrate data from our live Access database to a
I am building php web application that let's a user upload a MS Access
I am really posting this out of desperation after searching around a lot for
A few months back I wrote a VB.net console application to migrate a group
(no responses from my identical post on the MySQL forums, so I'm hoping to

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.