private void insert()
{
try
{
float salfij= double.Parse(textBoxsalfij.Text);
float salxhor= double.Parse(textBoxsalhor.Text);
SqlConnection sqlConn = new SqlConnection("server=servidor;uid=usuario;pwd=keyword;database=dbase");
string strsql = "Exec guardar'{0}',{1},{2}";
strsql = string.Format(strsql,textBoxname.Text,salxhor,salfij);
SqlCommand sqlCmdAgregar = new SqlCommand(strsql,sqlConn);
sqlConn.Open();
SqlDataAdapter dtaBuscar = new SqlDataAdapter();
dtaBuscar.SelectCommand = new SqlCommand(strsql, sqlConn);
DataSet dtsBuscar = new DataSet();
dtaBuscar.Fill(dtsBuscar);
sqlConn.Close();
dtsBuscar.Clear();
}
catch(SqlException s){MessageBox.Show("Error: "+s.Message);}
}