RE: Vendor form which show information for a sepecific vendor account
Thanks to both of you,
I done this requirement by writing display method on all data sources in the form let say for vendor account i wrote the below logic
display VendAccount getvendaccount()
{
VendTable vendtable;
select AccountNum from vendtable
where vendtable.InvoiceAccount=='0197-1';
return vendtable.AccountNum;
}
Then i dropped this display method to form design and in property datasource i add vend table and method property getvendaccount done.
Thanks for both of you.
Shabir Ahmad