Click here to Skip to main content
15,892,746 members
Home / Discussions / C#
   

C#

 
QuestionWhen to use .PerformClick() Pin
MAW301-Oct-12 15:07
MAW301-Oct-12 15:07 
AnswerRe: When to use .PerformClick() Pin
DaveyM691-Oct-12 16:05
professionalDaveyM691-Oct-12 16:05 
GeneralRe: When to use .PerformClick() Pin
MAW301-Oct-12 16:55
MAW301-Oct-12 16:55 
AnswerRe: When to use .PerformClick() Pin
Dave Kreskowiak2-Oct-12 1:32
mveDave Kreskowiak2-Oct-12 1:32 
GeneralRe: When to use .PerformClick() Pin
DaveyM692-Oct-12 3:02
professionalDaveyM692-Oct-12 3:02 
AnswerRe: When to use .PerformClick() Pin
Ravi Bhavnani2-Oct-12 6:22
professionalRavi Bhavnani2-Oct-12 6:22 
Questionwhy i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Kay Pee Singh1-Oct-12 12:46
Kay Pee Singh1-Oct-12 12:46 
AnswerRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Smart Arab2-Oct-12 2:45
Smart Arab2-Oct-12 2:45 
1 - Use Pre Tag To format your code, and make it readable.

2- In The Catch use
C#
MessageBox.Show ( ex.Message) 

So we can know what kind of error you get.

2 - Show me the Your Table Structure and Your Stored Procedure Code.

C#
private void Form8registration_Load(object sender, EventArgs e)
 {
 conn.Open();
  
 }
  

 private void ExecuteInsert(string empname, string desgination, string emailid, string phone, string skype, string address, string shifttime, string panel)
 {
 if (conn.State == ConnectionState.Closed)
 {
 conn.Open();
 }
  
 using (conn)
 {

 try 
 {

  
 SqlCommand cmdd = new SqlCommand();
 //cmdd.CommandType = CommandType.StoredProcedure;
 cmdd.CommandText = "Insert into registrationn values (@empname,@desgination,@emailid,@phone,@skype,@address,@shifttime,@panel)";
 cmdd.CommandType = CommandType.Text;
 cmdd.Connection = conn;
  
 // cmdd.Parameters.Add("@empid", SqlDbType.VarChar, 150).Value = textBox7_empid.Text;
  

  
 cmdd.Parameters.Add("@empname", SqlDbType.VarChar, 150).Value = empname;
 cmdd.Parameters.Add("@desgination", SqlDbType.VarChar, 150).Value = desgination;
 cmdd.Parameters.Add("@emailid", SqlDbType.VarChar, 150).Value = emailid;
 cmdd.Parameters.Add("@phone", SqlDbType.VarChar, 150).Value = phone;
 cmdd.Parameters.Add("@skype", SqlDbType.VarChar, 150).Value = skype;
 cmdd.Parameters.Add("@address", SqlDbType.VarChar, 150).Value = address;
 cmdd.Parameters.Add("@shifttime", SqlDbType.VarChar, 150).Value = shifttime;
 cmdd.Parameters.Add("@panel", SqlDbType.VarChar, 150).Value = panel;
 SqlParameter p1 = new SqlParameter("@ret", SqlDbType.VarChar, 150);
 p1.Direction = ParameterDirection.ReturnValue;
  

  

 cmdd.ExecuteNonQuery();
 cmdd.Dispose();
 }
  
 catch (Exception ex)
 {
 string msg = "insert error ";
 msg += ex.Message;
 throw new Exception(msg);

 }
  
 finally
 {
 conn.Close();
  
 }
  
 }
  
 }

  

  
 private void button2_reset_Click(object sender, EventArgs e)
 {
 Reset();
 }
  
 private void Reset()
 {
 textBox1_add.Text = "";
 textBox3_phoneno.Text = "";
 textBox4_emailid.Text = "";
 textBox5_desgination.Text = "";
 textBox6_name.Text = "";
 textBox7_empid.Text = "";
 comboBox1_shifttime.SelectedText= "";
 textBox1_skpid.Text = "";
 }
  
 private void button3_cancel_Click(object sender, EventArgs e)
 {
 Close();
 }
  

  


  
 private void button1_submit_Click(object sender, EventArgs e)
 {
 if (radioButton1_employe.Checked == true)
 {
 ExecuteInsert(textBox6_name.Text, textBox5_desgination.Text, textBox4_emailid.Text, textBox3_phoneno.Text, textBox1_skpid.Text, textBox1_add.Text, comboBox1_shifttime.SelectedItem.ToString(), radioButton1_employe.Checked.ToString());
 }
 else
 {

 MessageBox.Show("data not stored ");
 }
 }

GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Eddy Vluggen2-Oct-12 3:24
professionalEddy Vluggen2-Oct-12 3:24 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Kay Pee Singh2-Oct-12 6:52
Kay Pee Singh2-Oct-12 6:52 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Eddy Vluggen2-Oct-12 8:06
professionalEddy Vluggen2-Oct-12 8:06 
Generalcan u tell me where is the error in this code so i can change .....?? Pin
Kay Pee Singh2-Oct-12 10:08
Kay Pee Singh2-Oct-12 10:08 
AnswerRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Eddy Vluggen2-Oct-12 3:25
professionalEddy Vluggen2-Oct-12 3:25 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Kay Pee Singh2-Oct-12 6:51
Kay Pee Singh2-Oct-12 6:51 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Pete O'Hanlon2-Oct-12 7:34
mvePete O'Hanlon2-Oct-12 7:34 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Kay Pee Singh2-Oct-12 9:52
Kay Pee Singh2-Oct-12 9:52 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Kay Pee Singh2-Oct-12 10:02
Kay Pee Singh2-Oct-12 10:02 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Pete O'Hanlon2-Oct-12 10:24
mvePete O'Hanlon2-Oct-12 10:24 
Generalhow can i check my entered value is going to SQL server or not ???? Pin
Kay Pee Singh2-Oct-12 10:56
Kay Pee Singh2-Oct-12 10:56 
GeneralRe: how can i check my entered value is going to SQL server or not ???? Pin
Pete O'Hanlon2-Oct-12 11:16
mvePete O'Hanlon2-Oct-12 11:16 
GeneralRe: how can i check my entered value is going to SQL server or not ???? Pin
Kay Pee Singh2-Oct-12 11:27
Kay Pee Singh2-Oct-12 11:27 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Kay Pee Singh2-Oct-12 11:16
Kay Pee Singh2-Oct-12 11:16 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Pete O'Hanlon3-Oct-12 0:15
mvePete O'Hanlon3-Oct-12 0:15 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Kay Pee Singh3-Oct-12 4:55
Kay Pee Singh3-Oct-12 4:55 
GeneralRe: why i cant store values in database but my data is correct its not showing any error help me .....?? Pin
Pete O'Hanlon3-Oct-12 5:24
mvePete O'Hanlon3-Oct-12 5:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.