Shifting Focus from one sub-form to the other.
Sample Form with two Sub-Forms:
The focus jump path.
Last week we saw how to set focus to a particular field in a sub-form from the main form field. I have not mentioned the relationships that bind these three forms in the earlier example. But here it is important to know before we attempt to leave Focus from a record in the first sub-form and set focus to its corresponding record in the second sub-form.
Two related Sub-Forms and two issues to solve.
- Two related sub-forms need to link together via the common Main Form. The first sub-form is directly linked to the main form.
- Set focus on the Amount TextBox in the second sub-form when the Tab key transfers focus from the last TextBox (the School-Year) on the first sub-form.
Assume that the current record on the first sub-form (frm_Session) is the Session ID (Primary Key) field value 1. Since the first sub-form is directly linked to the second sub-form (we will explore this aspect, i.e., establishing direct links between two sub-forms, a little later on this page), frm_Payments, the payment record with the Session ID (Foreign Key) field value 1 is displayed on that form too. We want to transfer focus from the first subform Session record to its corresponding Payment record Amount field in the second subform.
Normally, when you press the Tab key on the last field of the current record, the insertion point moves to the first field of the next record on the same Form (with Session ID value 2). Automatically, the Payment record linked to the Session record also changes to synchronize with the Session ID value 2, because it is directly linked with the frm_session.
So the control from the first record is lost with Session ID 1, and we cannot enter the Payment Value in the Amount field of the frm_Payment, for the same Session ID 1. We want the focus to move to the frm_Payment's Amount field to enter the payment value for Session ID 1. If you are lost in the details of the story, then check the second image diagram.
So, the question is how to jump focus from the first record in both subforms when the focus is lost from the last field of the first subform, and transfer the Focus to its corresponding record's Amount field on the second subform?
Linking Both Sub-Forms Together.
Before going into that, let us see how to link the sub-forms to synchronize related records on both subforms.
The first sub-form (frm_Session) is directly linked to the Main Form (frm_Students) by the common Field Student ID (Primary Key) of the Students Table, and Student ID (Foreign Key) of the Session Table.
The current student record on the main form can have several session records on the frm_Session Form. Each Session record on the Session sub-form will have one or more Payment records on the frm_Payment sub-form and Session ID as its Foreign Key.
The frm_Payments sub-form is directly linked to the frm_Session sub-form on the common field Session ID.
Linking Both Sub-Forms Together.
Two sub-forms cannot be linked together directly because a sub-form cannot be considered a Master Form by another Sub-Form. When this kind of link (or relationship) becomes necessary, similar to the above sub-forms, we can do this by simply transferring the first sub-form Key-field value into an Unbound Textbox on the Main form, and the Unbound Textbox that holds the Session ID value becomes part of the Main Form. The Name of this Textbox can be used in the Link Master Field property of the second sub-form to establish a relationship with the first sub-form.
Check the following Design View of the above Forms:
You can see an Unbound TextBox with a yellow background, specifically created to link the second sub-form (frm_Payments) to the first sub-form (frm_Session) through the Unbound Textbox on the frm_Students main Form. This Textbox Name Property value is set to Session_ID, somewhat different than the actual field names in the sub-forms: SessionID. The child Label Caption I have changed to Session_ID for information.
The Session_ID TextBox’s Control Source Property is set with the following expression, to copy the SessionID value automatically from the current record on the frm_Session sub-form:
=[frm_Session].Form!SessionID
Once this is done, you can link the frm_Payments sub-form with the frm_Session sub-form through the Session_ID Texbox by setting the Link Master Field and Link Child Field properties of the frm_Payments sub-form, as shown below.
Link Master Field = Session_ID (the unbound Textbox name) Link Child Field = SessionID (the Payments Form’s Foreign Key field name)
Tackling the Real Problem
Now that we know how the subforms are linked, we can concentrate on the real issue that I pointed out at the beginning of this Article. We must be able to transfer control from the last field of a record in the first sub-form to its corresponding record in the second sub-form, without changing the current record on the first sub-form. We need a small VBA program to do that job successfully.
Tip: You can try this with three simple tables (Students, Session & Payments) having sample fields as shown on the Forms. You may download a sample database, with the sample tables and forms, from the download link given at the bottom of this Article.
If you have the sample Tables and Forms organized as per the design shown above, you may open the frm_Students Main Form and do a sample run of what we are trying to achieve, without the VBA Code.
Tip: If you have downloaded the sample database from the link at the end of this page, open frm_Session in the design view, press F4 to display the Property Sheet, and click the School Year Field. You will find [Event Procedure] in the On Got Focus event property. Select this property and click on the Build (. . .) Button to open the VBA Module. Highlight and delete the entire code, except the first two lines: Option Compare Database & Option Explicit. Save and close the form. You can copy and paste the deleted code from this page.
Open the frm_Students in Normal View.
Select the first record on the frm_Session form to select the record with Session ID value 1.
Check for the related record on the frm_Payments sub-form, with Session ID value 1.
Press the Tab Key to move the focus to the last field, School Year.
Note: When you press the Tab Key one more time, the focus should jump from the current record on the frm_Session sub-form to its corresponding record with Session ID 1 on the frm_Payments sub-form, which must become active.
Now, press the Tab Key to move out of the last field, School Year, on frm_Session to go to the Amount field on frm_Payments.
But it didn’t happen as we expected; instead, the cursor moved down to the next record on frm_Session, with SessionID value 2. The related records in frm_Payments also changed the foreign key to SessionID value 2 to match the record in frm_Session.
We can do this task only with VBA Code. The steps of our program are given below:
When the focus is set on the School Year field on frm_Session, save the Session ID value into a memory variable SID.
When the Focus is Lost (i.e., when the user presses the Tab Key again) from the School Year, the Focus moves to the next record, and at this point the VBA Code searches the form’s RecordsetClone for the SessionID value Variable SID.
When the record is found, the RecordsetClone Bookmark is saved into the bkmk String Variable.
Copy the record set Bookmark into the frm_Session’s Bookmark control.
These steps reset the focus back to the previous record, from the second record, on the frm_Session sub-form. The frm_Payment record changed earlier, and before executing the code, returns to the one with the Session ID on the frm_Session record.
Set Focus on the frm_Payments.
When this happens, the frm_Payments field with Tab Index value 0 receives Focus. At this point, we can move the Focus to any other field, if needed. We will try this by setting the focus on the Amount field.
Set focus on the Amount field on frm_Payments.
If you have the above Form ready, then copy and paste the VBA Code given below into the frm_Session’s VBA Module.
- Open the frm_Session form in the design view.
Click on the School Year field to select it.
Press F4 to display the Property Sheet of the School Year field.
Find the On Got Focus event property and click to select it.
Select [Event Procedure] from the drop-down control.
Click on the Build (...) Button to open the Form’s VBA Module (Class Module). You may find the following lines of Code in the Class Module.
The VBA Code.
Option Compare Database Option Explicit Private Sub SchoolYear_GotFocus() End Sub
- Copy and paste the following lines of code, overwriting the existing lines of code in the Module:
Option Compare Database Option Explicit 'SID is declared as a global variable Dim SID As Long Private Sub SchoolYear_GotFocus() 'Save the SessionID value in a Global variable SID = Me!SessionID End Sub Private Sub SchoolYear_LostFocus() '---------------------------------------------- 'This subroutine runs when the Focus is shifted 'from the SchoolYear field. '---------------------------------------------- 'Author : a.p.r. pillai 'Date : Jan/2013 'All Rights Reserved by www.msaccesstips.com '---------------------------------------------- Dim ctrl As Control, ctrl2 As Control Dim bkmk As String, rst As Recordset, j As Long Dim rstSID As Long 'The following lines of code prevents shifting the focus 'to the next record on the frm_Session sub-form, when the focus 'is lost from the last field of frm_Session, in preparation to set focus 'on a particular field on the corresponding record on the 'frm_Payments sub-form. Set rst = Me.RecordsetClone 'frm_session's recordset rst.MoveFirst For j = 1 To rst.RecordCount rstSID = rst![SessionID] If rstSID = SID Then 'find the record matching the current record on frm_session 'when match found save the record's recordset bookmark bkmk = rst.Bookmark 'copy the recordset bookmark to the form 'this will set the focus back on the same record 'this will also ensure that the SessionID related Payment record 'will be current on the frm_Payment form Me.Bookmark = bkmk 'set focus on the first field Me.SessionID.SetFocus 'break the loop Exit For End If rst.MoveNext Next rst.Close 'transfer control to the frm_Payments Sub-form 'Now the field with Tabindex number 0 have the default focus Set ctrl = Forms![frm_Students].Controls("frm_Payments") ctrl.SetFocus 'Once the focus is shifted on the field with tabindex 0 within frm_Payment sub-form 'we can move the focus to any other field within that form, if required Set ctrl2 = Forms![frm_Students]![frm_Payments].Form.Controls("Amount") ctrl2.SetFocus End Sub Save and Close the Form.
Try out your Forms.
Open the frm_Students in the normal view.
Click on the first record on the frm_Session Form.
Press the Tab Key to move focus to the School Year field and check the corresponding record on the frm_Payments form.
Press the Tab Key one more time to jump the focus to the frm_Payments sub-form record, with the same Session ID value, and set the Focus directly on the Amount field.












