If I have the following code, what do I have to change to
make it return more than one value?
public string Records
{
get { return textBoxName.Tex t; }
//return textBoxAddress. Text;
//return textBoxNotes.Te xt;
}
I can only return one value from my dialog box, but I would like
to return a few more values.
Thanks
Steve
make it return more than one value?
public string Records
{
get { return textBoxName.Tex t; }
//return textBoxAddress. Text;
//return textBoxNotes.Te xt;
}
I can only return one value from my dialog box, but I would like
to return a few more values.
Thanks
Steve
Comment