hi i have on object (serverconnection from sqlserver Managament object ) i need send this object to other form to configure connection option and connect so object return but when i send this object t开发者_JAVA百科o form2 how return it or when i use form.ShowDialog() when this return or how return from this
You can introduce a property into your second form, e.g.:
if( form2.ShowDialog() == DialogResult.OK )
{
var configuration = form2.Configuration;
}
here the property is called Configuration
and holds the object you need.
精彩评论