Recent content by datefruit

  1. D

    How to change zoom Box default font size

    The above mentioned method don't work in access 2010 - I can't find UTILITY.MDA. All I've managed to find is ACCDE database: c:\Program Files\Microsoft Office\Office14\ACCWIZ\UTILITY.ACCDA The above mentioned database has ZoomForm in it, but it's not editable: there is a message window: "You...
  2. D

    How to change zoom Box default font size

    I'm working in Access 2010. The default zoom Box (Shift+F2) font is too tiny for my screen and for an unknown reason it won't change when I press " the Font..." button. My question: Is there any way to change zoom Box font size permanently?
  3. D

    How to bind a control of main form to subform

    Attempt #2.2 I've followed the advice by "nanscombe" and added to subForm the following code: Private Sub Form_Current() Me.Parent.[mainFormControlName] = Me.[subformControlName] End Sub Result: Everything seems to work. Thanks a lot. Now I'm going to perform a test run of this code in...
  4. D

    How to bind a control of main form to subform

    Attempt #2 I've unbounded mainFormControl and coded like the following: Result: code by "nanscombe" partially worked for me. Now I'm able to update subformControl by changing data in mainFormControl, but when I choose the different record in subForm, the mainFormControl remains unchanged. I...
  5. D

    How to bind a control of main form to subform

    Attempt #1 OK. I need to “Reference the subform control as the control source of the related form control”. To refer to a control on a subform, I've tried to use the following Control Source: =Forms![mainFormName]![subformName].Form![subformControlName] Result: It didn't work. The...
  6. D

    How to bind a control of main form to subform

    How to bind a control of main form to subform field Explanation: In Access 2010 I've made a Main form1 with a linked subform1 (the subform1 linked using “Link Child Fields, Link Master Fields”). In form1 I’m able to select records from a query and display related records in subform1. My...
Top Bottom