Click here to Skip to main content
15,897,518 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi guy i have a problem that i try every way to make Posting search results to textbox but always return nothing this is my code
C#
private void btnNamesearch_Click(object sender, EventArgs e)
      {

         bool temp = false;
          SqlConnection con = new SqlConnection("Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Educational System;Data Source=DREAMS");
          con.Open();
          SqlCommand cmd = new SqlCommand("SELECT EmpName, ExcutionOrder FROM Employee WHERE EmpName  ='" + txtusernameSearch.Text.Trim() + "'", con);
          SqlDataReader dr = cmd.ExecuteReader();
          while (dr.Read())
          {
              txtemployee.Text = dr["EmpName"].ToString();
              txtExcutionOrder.Text = dr["ExcutionOrder"].ToString();

              temp = true;
          }
          if (temp == false)
              MessageBox.Show("not found");

          con.Close();
          dr.Close();

      }

its work and when i make breakpoints it gets date but nothing display
and i have another problem that i have got 4 com boxes which fill in form load
suppose when i make search it should display the value of selected from search and this will make problem because it loads with form load ?? plz help really i think more but still need experiences through windows form thanks a lot
Posted

C#
while (dr.Read())
            {
if(dr.HasRows)
{
     txtemployee.Text = dr["EmpName"].ToString();
     txtExcutionOrder.Text = dr["ExcutionOrder"].ToString();

}
else
{
        MessageBox.Show("not found");
}
}
 
Share this answer
 
thanks a lot the problem was in another code in the from where it conflict with this code but i need to know to fill combobox from select order by searched item
 
Share this answer
 
Comments
Thomas Daniels 26-Dec-12 4:23am    
If you've a comment to an answer, click on the "Have a Question or Comment?" button, but please don't post a comment as an answer.
ost3z 26-Dec-12 11:36am    
OK this my first time to participate thanks a lot

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900