Click here to Skip to main content
15,900,475 members
Home / Discussions / C#
   

C#

 
GeneralRe: I have a problem with this error Pin
malkan Rahim Nazari25-Sep-07 20:36
malkan Rahim Nazari25-Sep-07 20:36 
GeneralRe: I have a problem with this error Pin
Malcolm Smart25-Sep-07 21:57
Malcolm Smart25-Sep-07 21:57 
QuestionDetecting key pressed on parent/childs MDI forms Pin
dsovino25-Sep-07 13:29
dsovino25-Sep-07 13:29 
AnswerRe: Detecting key pressed on parent/childs MDI forms Pin
Amjath Rahman25-Sep-07 15:22
Amjath Rahman25-Sep-07 15:22 
AnswerRe: Detecting key pressed on parent/childs MDI forms Pin
dsovino25-Sep-07 18:38
dsovino25-Sep-07 18:38 
GeneralRe: Detecting key pressed on parent/childs MDI forms Pin
dengboo25-Sep-07 18:47
dengboo25-Sep-07 18:47 
Question[Message Deleted] Pin
ahemoudi25-Sep-07 12:48
ahemoudi25-Sep-07 12:48 
AnswerRe: Virtual Reality Pin
Christian Graus25-Sep-07 13:40
protectorChristian Graus25-Sep-07 13:40 
GeneralRe: Virtual Reality [modified] Pin
Paul Conrad26-Sep-07 17:56
professionalPaul Conrad26-Sep-07 17:56 
GeneralRe: Virtual Reality Pin
leckey26-Sep-07 3:21
leckey26-Sep-07 3:21 
AnswerRe: Virtual Reality Pin
Sathesh Sakthivel25-Sep-07 19:31
Sathesh Sakthivel25-Sep-07 19:31 
QuestionDriver Programming with C#. Pin
hdv21225-Sep-07 12:02
hdv21225-Sep-07 12:02 
AnswerRe: Driver Programming with C#. Pin
Erik Funkenbusch25-Sep-07 12:55
Erik Funkenbusch25-Sep-07 12:55 
GeneralRe: Driver Programming with C#. Pin
hdv21225-Sep-07 13:52
hdv21225-Sep-07 13:52 
GeneralRe: Driver Programming with C#. Pin
ESTAN26-Sep-07 0:32
ESTAN26-Sep-07 0:32 
QuestionGridView Row Deleting Pin
ss.mmm25-Sep-07 10:21
ss.mmm25-Sep-07 10:21 
AnswerRe: GridView Row Deleting Pin
Jpuckett25-Sep-07 11:19
Jpuckett25-Sep-07 11:19 
GeneralRe: GridView Row Deleting Pin
ss.mmm25-Sep-07 11:28
ss.mmm25-Sep-07 11:28 
QuestionSpecial Control!!!!!! Pin
half-life25-Sep-07 10:04
half-life25-Sep-07 10:04 
AnswerRe: Special Control!!!!!! Pin
Dave Kreskowiak25-Sep-07 10:13
mveDave Kreskowiak25-Sep-07 10:13 
GeneralRe: Special Control!!!!!! Pin
half-life25-Sep-07 10:15
half-life25-Sep-07 10:15 
GeneralRe: Special Control!!!!!! Pin
Dave Kreskowiak25-Sep-07 11:01
mveDave Kreskowiak25-Sep-07 11:01 
AnswerRe: Special Control!!!!!! Pin
Christian Graus25-Sep-07 11:02
protectorChristian Graus25-Sep-07 11:02 
QuestionTableAdapter.Update will not save my data Pin
Christopher Thornburg25-Sep-07 9:23
Christopher Thornburg25-Sep-07 9:23 
Okay I can't get my update to work. here is my code:

namespace DBWinVoice
{
public partial class Company : Form
{

WinVoiceDataSet companyDS = new WinVoiceDataSet();

public Company()
{
InitializeComponent();
}

private void Company_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'winVoiceDataSet.Company' table. You can move, or remove it, as needed.
this.companyTableAdapter.Fill(this.winVoiceDataSet.Company);

}

private void button1_Click(object sender, EventArgs e)
{
try
{
this.companyBindingSource.EndEdit();
this.companyTableAdapter.Update(this.companyDS);
MessageBox.Show("Update Successful");
}
catch (System.Exception ex)
{
MessageBox.Show(ex.ToString());
}

}
}
}

I know I am doing something dumb...can anyone help me?

Thanks

Christopher J. Thornburg
Senior Systems Analyst
Ideal Card

AnswerRe: TableAdapter.Update will not save my data Pin
Dave Kreskowiak25-Sep-07 10:11
mveDave Kreskowiak25-Sep-07 10:11 

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.