Search results

  1. P

    how to make a subform in a hidden form the active object

    I have a subform in a hidden form. I want it to become the active object so that i could use the docmd.gotorecords acactivedataobject
  2. P

    how to reference a subform within a subform

    i also tried a docmd method: DoCmd.GoToRecord acDataForm, Forms!frmCompany!frmCompanySub!frmCompanyPackageSub.Form, , acNext it has an error: An expression you entered is in the wrong data type for one of the arguments
  3. P

    how to reference a subform within a subform

    This is my code: i want to reference subform2:"frmCompanyPackageSub". i think this is not working For Each ctl In Forms!frmCompany If ctl.Name = "frmCompanyPackageSub" Then Set rst = ctl.Form.RecordsetClone rst.MoveFirst Do Until rst.EOF If Con2(36) = True Then For I = 1...
  4. P

    how to reference a subform within a subform

    this is only for subforms, i have a subform within a subform. could i docmd do? Docmd.gotorecord acdataform Forms!frmCompany!subfrmCompanyExam!Package,,nextrecord The reference to the subform does not seem to work...shall i continue with this or a For Each ctl in.....?
  5. P

    how to reference a subform within a subform

    i have a form- frmCompany. It has a subform- subfrmExams. Then the subfrmExams has another subform within it- subfrmPackage. I opened the main form-frmCompany in hidden view using another Form. I want to control the subform-- subfrmPackage, so that it would go to the next record. How do i...
Back
Top Bottom