Continuous form issue

foxtet

Registered User.
Local time
Today, 14:18
Joined
May 21, 2011
Messages
129
Hi Guys,
Appreciating your help I would like to get assistance from you guys to work on the issue mentioned.

In the project database attached I want;

When double clicked MAWB# I want tabDeliveryAndBilling be visible and should display matching data to selected MAWB
tabDeliveryAndBilling has two tabs;

1) PageDeliveryDetails and
2) PageBillingDetails

When chkBill is checked pageBillingDetails should display only with selected MAWB#

foxtet
 

Attachments

On top of the tabs, you have a subForm with linked keys set to the master key.
On tabCtl_change event, change the child.sourceObject to the form/query you need.

Code:
Select case tabCtl.value
   Case 0 
       Child.sourceObject ="query.qsPayments"
   Case 1
        Child.sourceObject = "frmData"
End select
 
On top of the tabs, you have a subForm with linked keys set to the master key.
On tabCtl_change event, change the child.sourceObject to the form/query you need.

Code:
Select case tabCtl.value
   Case 0 
       Child.sourceObject ="query.qsPayments"
   Case 1
        Child.sourceObject = "frmData"
End select

could you work out the attached db to achieve functionality.
 

Users who are viewing this thread

Back
Top Bottom