Recent content by hfrupn

  1. H

    Disable security warning to "enable content"?

    You are correct. Once you have attached the certificate to the DB you can then give it to other users. When the other users open the DB on their local PC for the first time the user will get a message stating that there is an unknown certificate, they will have the option to trust or discard the...
  2. H

    Disable security warning to "enable content"?

    Go to Start menu\All programs\Microsoft office\Microsoft Office Tools\Digital Certificates for VBA Projects. When the Create Digital Certificate pop up opens, give it a simple name, don't use spaces, and then press OK. Next open your DB and find the Visual Basic Editor, should be for older...
  3. H

    reference a Subform from Another Subform

    I use this with good results [Forms]![frmParent]![frmSubform2].Requery If you have a parent form with multiple sub-forms use a separate line for each form to be re-queried, e.g. [Forms]![frmParent].Requery [Forms]![frmParent]![frmSubform1].Requery [Forms]![frmParent]![frmSubform2].Requery
Top Bottom