Introduction
Sub-Form on the Main Form is the common design that we follow to display several related records on the record on the Main Form. Order Detail records related to Orders, Bank accounts and their transactions, Mark-List and Student's Id, and in short almost all databases have this kind of one-to-many relationship, and records are displayed in this way to get a quick view of maximum information.
When we open a form with a Table or Query as Record Source the Form when loaded opens a parallel record set in memory with unique bookmarking of each record. We can search through this virtual record set in memory without directly touching the actual Table or Query. But, when we add or update a record in this virtual record set that change is saved in the actual table. We call this virtual record set the RecordsetClone of the Form.
Working with Recordset Clone.
The sample VBA Code given below shows how to address the Form's RecordsetClone to find a record based on some criteria.
Private Sub FindPID_Click() 'Find Record matching Product ID Dim m_find, rst As Recordset 'validation check of search key value m_find = Me![xFind] If IsNull(m_find) Then Me.FilterOn = False Exit Sub End If 'validation check of search key value If Val(m_find) = 0 Then MsgBox "Give Product ID Number..!" Exit Sub End If 'Find a record that matches the ProductID 'and make that record current using the recordset bookmark. If Val(m_find) > 0 Then Set rst = Me.RecordsetClone 'declare the recordset of the form rst.FindFirst "ProductID = " & m_find If Not rst.NoMatch Then '<if record found then make that record current Me.Bookmark = rst.Bookmark End If rst.Close End If End Sub
We have a Blog Post on Data search and filter on Form through the above code. If you would like to take a look at it then click here.
In the above example, we were using the RecordsetClone Object of the Main Form on the main form module itself. But how do we address the RecordsetClone Object of the Sub-Form, from Main-Form, to update the current record set on the Sub-Form? Here, what we have to keep in mind is that the records, which appear in the Sub-Form Datasheet View are related to the current record on the Main Form and only those records can be accessed for whatever operation we planned to do with them. Not all the records of the Record Source Table/Query.
On the Main Form, all records of the Record Source Table/Query can be accessed through the RecordsetClone object, for search or update operations. But, the RecordsetClone of the sub-form will have only those records displayed on the sub-form, related to the current record on the main form.
Accessing Sub-Form Recordset from Main Form.
Let us try an example to learn how to access the sub-form record set from the main form and update records.
Import the following two Tables from the Northwind (or Northwind.mdb) database:
- Orders
- Order Details
Create a New Field for testing purposes.
Open the Order Details Table in the design view.
Add a new field: Sale Value with Data Type Number and Field Size Double.
Save the Order Details Table with the new field.
Design the Main form for Orders Table in column format.
If you have used the Form Wizard and created a Split Form then delete the Datasheet sub-form or table (Access2007). Display the Property Sheet of the Form, find the Default View property, and change the Split Form value in Single Form.
Create a Sub-Form.
Design a Datasheet Sub-Form for Order Details Table.
Expand the Footer of the Sub-Form and create a Text box there.
Change the Name Property value to TotSale.
Write the expression =Sum([Sale Value]) in the Control Source property.
Save and close the Form with the name: Order Details.
Insert the Order Details sub-form in the Detail Section of the Orders Form below the Orders Form controls. See the image given below:
Sub-Form Link with the Main form.
While the Sub-Form is still in the selected state display its Property Sheet (F4).
Set the Link Master Field property value to [Order ID].
Change the Link Child Field property value to [Order ID].
Add a Command Button above the sub-form as shown on the design above
.Display the Property Sheet of the Command Button (F4 or Alt+Enter.
Change the Name property value to cmdUpdate
Select the On Click Event property and select [Event Procedure] from the drop-down list.
Click on the Build (. . .) Button at the right end of the property to open the VBA Module of the Form.
Copy and Paste the following VBA Code into the VBA Module overwriting the skeleton lines of the Sub-Routine there.
Sub-form Module Code.
Private Sub cmdUpdate_Click() Dim rst As dao.Recordset Dim m_UnitPrice As Double Dim m_Discount As Double Dim m_Quantity As Long Dim m_SaleValue As Double 'Address the recordset on the Sub-Form [Order Details] Set rst = [Order Details].Form.RecordsetClone rst.MoveFirst Do While Not rst.EOF m_UnitPrice = rst![Unit Price] m_Discount = rst![Discount] m_Quantity = rst![Quantity] m_SaleValue = m_Quantity * ((1 - m_Discount) * m_UnitPrice) rst.Edit rst![SaleValue] = m_SaleValue rst.Update [Order Details].Form.Bookmark = rst.Bookmark rst.MoveNext Loop rst.Close Set rst = Nothing End Sub
Create a Textbox to the right of the Command Button.
Set the Caption property value of the Child Label to Order Value:
Write the expression =[Order Details].[Form]![totSale]. The idea of this expression is to bring the Summary Value from the Text box, we have created in the Footer Section of the sub-form, into the Order Form.
Save and close the Orders Form.
Open the Order Form.
- Open the Orders Form in normal View.
If the Sale Value column is not appearing in the visible area of the Datasheet then move the bottom scroll bar to the right, highlight the Sale Value column, click and hold the mouse button and drag it to the left and place it into the visible area.
You can now see the Sub-Form shows some records related to the Order ID on the main Form. The new Text box we have created to the right of the Command Button is empty because we have not updated the [Sale Value] field on the Datasheet.
Click on the Command Button to calculate and update the Sale Value of each record on the Datasheet Sub-Form.
Now you will find the Sale Value column of all records on the sub-form, updated and the Summary value of all records appearing in the Text box to the right of the Command Button. The records updated are only those Order Detail records related to Order Id on the Orders Form. If you move the Orders table record forward their related record sale value is not updated. They will be updated only when you click on the Command Button.
The statement in the above code Set rst = [Order Details].Form.RecordsetClone is setting a reference to the RecordsetClone Object of the Sub-Form [Order Details]. Subsequent lines calculate the Sale Value after Discount, if any, and update the sale value into the new field [Sale Value] we have created in the Order Details Table.
The statement [Order Details].Form.Bookmark = rst.Bookmark overwrites the form's Bookmark with the record set's current record Bookmark. The result of this action is that the current record processed in the record set clone becomes the current record on the sub-form. If you have several records on the sub-form you can see some visible action on the sub-form moving the cursor from one record to another very fast, starting from the first record to the last one by one as the updating action progress through the records.
No comments:
Post a Comment
Comments subject to moderation before publishing.