Hello,

If i navigate to a Search screen, which has a grid, from which i pick a
row, what are the typical ways of taking the row's values back to the
calling form ?

Thanks.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.788 / Virus Database: 533 - Release Date: 11/1/2004

Re: How to carry a row back to the calling form ? by Tal

Tal
Tue Nov 09 15:52:20 CST 2004

Hi

I think the best way is do it like you would do if you would open a file
with the file dialog box. That?s:

Save the pick in the a property of the Search form. Then, from the calling
form ask if the user picked a row, if yes, read the property:

SearchForm.ShowModal();

If (SearchForm.OK){

int picked = SearchForm.selectedRow;

}

Tal

"chak" <r_chakravarthy@hotmail.com> wrote in message
news:OR%23D3OnxEHA.1392@tk2msftngp13.phx.gbl...
> Hello,
>
> If i navigate to a Search screen, which has a grid, from which i pick a
> row, what are the typical ways of taking the row's values back to the
> calling form ?
>
> Thanks.
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.788 / Virus Database: 533 - Release Date: 11/1/2004
>
>