Search results

  1. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Works like a charm :) Thank you so much! I really, really appreciate your help!!
  2. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Aww, your like gold- thanks for helping me with the wrapping issue too! :D I'd like to use the record buttons I have created- the previous/next ones on the parent form Private Sub Previous_Disease_Condition_Button_Click() On Error GoTo Err_Previous_Disease_Condition_Button_Click...
  3. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Thank you! Honestly- I am so grateful right now. You spent the entire day on this and found the solution for me. THANK YOU. The only thing left for me to do is find how to wrap the record buttons so that they don't produce the error message you can't go to the specified record, but instead just...
  4. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    I was, I was completely applying the code to the record button on the child form. Thank you for taking the time to catch that! When I run the parent form I recieve the error: the action or method requires a Form Name arguement. This is how I put the code: 'This is the code that executes when...
  5. A

    help! trying to link IDs b/w parent frm and child frm

    Hi! I have a parent frm that uses a command button to open a child form with the code Private Sub Pathophysiology_command_Click() On Error GoTo Err_Pathophysiology_command_Click Dim stDocName As String Dim stLinkCriteria As String stDocName = "Secondary Nutrition Information...
  6. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Hey :) I've added that code in: Private Sub Previous_Disease_Condition_Button_Click() On Error GoTo Err_Previous_Disease_Condition_Button_Click Forms![Nutrition Diseases/Conditions]!ID.Value DoCmd.GoToRecord , , acPrevious Exit_Previous_Disease_Condition_Button_C: Exit Sub...
  7. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Thank you for the suggestion, I have tried it and on the parent form I still get the error: object required: Private Sub Pathophysiology_command_Click() On Error GoTo Err_Pathophysiology_command_Click Dim stDocName As String Dim stLinkCriteria As String stDocName = "Secondary...
  8. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Thank you for the help- I tried using the code but I received some errors. Prehaps I did it wrong? On the parent form when I click the command button to access the child form I get the error: object required using this code Private Sub Pathophysiology_command_Click() On Error GoTo...
  9. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    I was attempting to link up the ID field from my parent frm to my child frm so that when my parent frm was on ID#3 and I clicked the command button Pathophysiology my child form would automatically be on ID#3 as well. This worked for me and I am happy with this, but I would also like to be...
  10. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Sure- I have a command button on the parent form that opens up the child form. The main form is called Nutrition Diseases/Conditions The command button is called Pathophysiology The second form is called Secondary Nutrition Information (Pathophysiology) Private Sub...
  11. A

    Help! record buttons do not work on child frm when frm accessed through parent frm

    Hi! I am incrediably new to forms and Access 2003 (thank you for the advice on formatting!). I've run into a problem with the command buttons on one of my forms. I have a main form that has a command button that opens up a second form. On the second form my Record Navigation 'go to previous...
  12. A

    VBA code for Command buttons on child form

    Thank you for the response, I tried your suggestion and unfortunately I am still having the same problem.
  13. A

    VBA code for Command buttons on child form

    record buttons do not work on child frm when frm accessed through parent frm Hi! I am very new to Access 2003 and I've run into a problem with the command buttons on one of my forms. I have a main form that has a command button that opens up a second form, on the second form my Record...
  14. A

    Hi everyone!

    Hi! I am teaching myself how to build a database in Access 2003 and I am looking forward to becoming more familiar with Access and expanding my knowledge!
Top Bottom