A
Ammo
Hi,
I have created form called frm_GrantApplicant that
consists of following fields:
GrantApplicant, AmountGrantAppliedFor,
ReasonForGrantApplication, GrantStatus
User input a value for the AmountGrantAppliedFor and
check/tick the GrantStatus field if grant application is
successful.
I then have another form called frm_GrantPot that consists
of the following fields:
GrantPotName, AvailableGrant, TotalGrantRemaining
and the following subforms:
DateGrantAllocated, GrantRecipient, ReasonGrantAllocated,
AmountGrantAllocated
The 'TotalGrantRemaining' field consists of the following
control source: =[AvailableGrant]-[frm_GrantAllocation
Subform].Form!TotalGrantAllocated
The 'GrantRecipient' field is set to combo box and
consists of the following row source property:
SELECT [tbl_GrantApplicants].[GrantApplicant],
[tbl_GrantApplicants].[GrantStatus] FROM
tbl_GrantApplicants WHERE ((([tbl_GrantApplicants].
[GrantStatus])=Yes));
On the frm_GrantPot form when I select a GrantRecipient
from the combo box I would like the
corresponding 'AmountGrantAppliedFor'
and 'ReasonForGrantApplication' values to appear that is
entered in the frm_GrantApplicant form for that record. I
would really be greatful if someone could help me on this.
Please also copy your replies to the email specified in
the 'Senders Email' field. Thank You.
Kind Regards
Ammo
I have created form called frm_GrantApplicant that
consists of following fields:
GrantApplicant, AmountGrantAppliedFor,
ReasonForGrantApplication, GrantStatus
User input a value for the AmountGrantAppliedFor and
check/tick the GrantStatus field if grant application is
successful.
I then have another form called frm_GrantPot that consists
of the following fields:
GrantPotName, AvailableGrant, TotalGrantRemaining
and the following subforms:
DateGrantAllocated, GrantRecipient, ReasonGrantAllocated,
AmountGrantAllocated
The 'TotalGrantRemaining' field consists of the following
control source: =[AvailableGrant]-[frm_GrantAllocation
Subform].Form!TotalGrantAllocated
The 'GrantRecipient' field is set to combo box and
consists of the following row source property:
SELECT [tbl_GrantApplicants].[GrantApplicant],
[tbl_GrantApplicants].[GrantStatus] FROM
tbl_GrantApplicants WHERE ((([tbl_GrantApplicants].
[GrantStatus])=Yes));
On the frm_GrantPot form when I select a GrantRecipient
from the combo box I would like the
corresponding 'AmountGrantAppliedFor'
and 'ReasonForGrantApplication' values to appear that is
entered in the frm_GrantApplicant form for that record. I
would really be greatful if someone could help me on this.
Please also copy your replies to the email specified in
the 'Senders Email' field. Thank You.
Kind Regards
Ammo