docmd.openform "GrantExpenditures", openargs:=me.grantid &";" & me.agencyid
now use the load event of form "GrantExpenditures" to get values
private sub form_load()
if len(me.openargs)> 0 then
'pass the values accordingly
me.grantid=split(me.openargs,";")(0)
me.agencyid=split(me.openargs,";")(1)
end if
end sub