Recent content by InterGladiator

  1. I

    How to show a message if a record was not found?

    Yes, it works! Thank you Attila
  2. I

    How to show a message if a record was not found?

    Hi, I have a text box and a button. The user types an order number into the text box, pushes the button and the VB code finds the appropriate record and makes it the active record. Now, how to provide a user with an error message if the record was not found (because he typed in a non-existing...
  3. I

    A very simple question

    Yes! It is fine now! Thank you very much!!! I created the code for the search button too and it works well now also. Thank you again, Attila
  4. I

    A very simple question

    I tried your solution (SetFocus method) but I got "Cannot go to the specified record" error message again. Would you be so kind to look into my database and locate the source of the problem? You can download my database from http://ambrozai.uw.hu/anyag/FOT.zip (it is just 35 KB zipped). I...
  5. I

    A very simple question

    It's not so simple... Please see the following screenshot: The main form is bound to nothing as it serves only as a placeholder for the two subforms. The first subform (left) shows certain orders that meet some requirements (filtered). The second (right) subform shows parts that are needed...
  6. I

    A very simple question

    Some additions: My form contains two subforms and the second subform is driven by the first subform. Moreover, the first subform is filtered, it didn't show all records. But, I guess, I still should be able to step forward one record or find a particular record. The question is just how?
  7. I

    A very simple question

    Thank you, it was turned off. So I put a next button onto the form a let Access do the programming. The problem it does not works. I get this error message when I click the button: "You can't go to the specified record"
  8. I

    A very simple question

    Can I send you my database for checking? It is <50 Kb zipped. You can send me e-mail to aa@root.hu
  9. I

    A very simple question

    wazz: Yes, and I answered. I keep getting error messages. RuralGuy: the wizard does not offer to put a command button on the form - or do I do something wrong?
  10. I

    Custom button

    Thank you for the code. I tried it but I keep getting error messages: if I use "DoCmd.GoToRecord , , acNext" then I get "Run-time error '2105' You can't go to the specified record" error message if I use "DoCmd.GoToRecord acDataTable, "Kits", acNext" or "DoCmd.GoToRecord acDataForm...
  11. I

    A very simple question

    There is no code for the navigation button bar... Have you got other solutions?
  12. I

    Custom button

    Hi, I have a form with a text box bounded to a field of a table and a button. I want to program the button so that when the user clicks it it shows the next record in the text box. Unfortunately I exprience two problems all the time: 1) I click the button and nothing happens. I get no error...
  13. I

    A very simple question

    Thank you, that sounds like a good idea. I haven't got Access on my home computers but I will try it out on Monday when I get back to work.
  14. I

    A very simple question

    Hi, Could you, please, write me down how to step one record forward/backward in a table using VB code? Thank you, Attila
  15. I

    Simple question: How to find a particular record?

    Yes, but I found no working sample code. And I cannot find a "table" object in VB Access object model. How to use these?
Back
Top Bottom