Click here to Skip to main content
15,879,096 members
Home / Discussions / C#
   

C#

 
GeneralRe: Join data table with sql table Pin
Eddy Vluggen2-Jul-14 3:06
professionalEddy Vluggen2-Jul-14 3:06 
GeneralRe: Join data table with sql table Pin
Mohammad Soleimani2-Jul-14 6:22
Mohammad Soleimani2-Jul-14 6:22 
QuestionSystem.AccessViolationException When Using Win32 DLL Pin
Django_Untaken1-Jul-14 0:36
Django_Untaken1-Jul-14 0:36 
AnswerRe: System.AccessViolationException When Using Win32 DLL Pin
OriginalGriff1-Jul-14 2:40
mveOriginalGriff1-Jul-14 2:40 
GeneralRe: System.AccessViolationException When Using Win32 DLL Pin
Django_Untaken1-Jul-14 8:49
Django_Untaken1-Jul-14 8:49 
AnswerRe: System.AccessViolationException When Using Win32 DLL Pin
Bernhard Hiller1-Jul-14 20:38
Bernhard Hiller1-Jul-14 20:38 
GeneralRe: System.AccessViolationException When Using Win32 DLL Pin
Django_Untaken1-Jul-14 21:36
Django_Untaken1-Jul-14 21:36 
Questionhow to solve this Error...in insert query Pin
Nishant.Chauhan8030-Jun-14 21:50
Nishant.Chauhan8030-Jun-14 21:50 
VB
ERROR:-No mapping exists from object type System.Data.DataRowView to a known managed provider native type.


code following :-

con.Open();
SqlCommand cmd = new SqlCommand("addprd1", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Connection = con;
cmd.Parameters.AddWithValue("@id", label10.Text);
cmd.Parameters.AddWithValue("@srno", textBox1.Text);
cmd.Parameters.AddWithValue("@itm", comboBox1.SelectedItem);
cmd.Parameters.AddWithValue("@make", comboBox2.SelectedItem);
cmd.Parameters.AddWithValue("@dop", dateTimePicker1.Text);
cmd.Parameters.AddWithValue("@year", comboBox3.SelectedItem);
cmd.Parameters.AddWithValue("@mno", textBox6.Text);
cmd.Parameters.AddWithValue("@srm", textBox7.Text);
cmd.Parameters.AddWithValue("@off", textBox9.Text);
cmd.Parameters.AddWithValue("@usr", textBox8.Text);
cmd.ExecuteNonQuery();
con.Close();
label10.Visible = true;
MessageBox.Show("Insert Successfully");
Bind();
label10.Visible = false;
Clear();
AnswerRe: how to solve this Error...in insert query Pin
Rob Philpott30-Jun-14 22:40
Rob Philpott30-Jun-14 22:40 
AnswerRe: how to solve this Error...in insert query Pin
AjayJamwal2-Jul-14 3:20
professionalAjayJamwal2-Jul-14 3:20 
QuestionExecuting few lines of code on Windows Store app installation Pin
Sharath C V30-Jun-14 21:14
professionalSharath C V30-Jun-14 21:14 
AnswerRe: Executing few lines of code on Windows Store app installation Pin
Pete O'Hanlon30-Jun-14 23:19
mvePete O'Hanlon30-Jun-14 23:19 
GeneralRe: Executing few lines of code on Windows Store app installation Pin
Sharath C V1-Jul-14 0:34
professionalSharath C V1-Jul-14 0:34 
GeneralRe: Executing few lines of code on Windows Store app installation Pin
Pete O'Hanlon1-Jul-14 1:31
mvePete O'Hanlon1-Jul-14 1:31 
QuestionMSI installer, deployment Pin
ankum1630-Jun-14 18:17
ankum1630-Jun-14 18:17 
AnswerRe: MSI installer, deployment Pin
Bernhard Hiller30-Jun-14 20:24
Bernhard Hiller30-Jun-14 20:24 
QuestionHow to add ScrollViewer to usercontrol in MVVM by josh smith. Pin
vijendra malik30-Jun-14 16:45
vijendra malik30-Jun-14 16:45 
AnswerRe: How to add ScrollViewer to usercontrol in MVVM by josh smith. Pin
Kornfeld Eliyahu Peter30-Jun-14 19:18
professionalKornfeld Eliyahu Peter30-Jun-14 19:18 
Questionbetween two Datetimepicker using Pin
Nishant.Chauhan8029-Jun-14 19:30
Nishant.Chauhan8029-Jun-14 19:30 
AnswerRe: between two Datetimepicker using Pin
Eddy Vluggen29-Jun-14 22:28
professionalEddy Vluggen29-Jun-14 22:28 
AnswerRe: between two Datetimepicker using Pin
OriginalGriff29-Jun-14 22:59
mveOriginalGriff29-Jun-14 22:59 
GeneralRe: between two Datetimepicker using Pin
V.30-Jun-14 3:16
professionalV.30-Jun-14 3:16 
GeneralRe: between two Datetimepicker using Pin
OriginalGriff30-Jun-14 4:26
mveOriginalGriff30-Jun-14 4:26 
QuestionWinforms vs MFC Pin
shiftwik29-Jun-14 17:50
shiftwik29-Jun-14 17:50 
AnswerRe: Winforms vs MFC Pin
PIEBALDconsult29-Jun-14 18:10
mvePIEBALDconsult29-Jun-14 18:10 

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.