Click here to Skip to main content
15,890,609 members
Home / Discussions / C#
   

C#

 
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 
GeneralRe: TableAdapter.Update will not save my data Pin
Christopher Thornburg25-Sep-07 10:32
Christopher Thornburg25-Sep-07 10:32 
GeneralRe: TableAdapter.Update will not save my data Pin
Jpuckett25-Sep-07 10:44
Jpuckett25-Sep-07 10:44 
GeneralRe: TableAdapter.Update will not save my data Pin
Christopher Thornburg25-Sep-07 10:51
Christopher Thornburg25-Sep-07 10:51 
Questionhow to find image on the screen Pin
doktorno25-Sep-07 9:17
doktorno25-Sep-07 9:17 
AnswerRe: how to find image on the screen Pin
Christian Graus25-Sep-07 11:03
protectorChristian Graus25-Sep-07 11:03 
GeneralRe: how to find image on the screen Pin
Dan Neely25-Sep-07 11:15
Dan Neely25-Sep-07 11:15 
GeneralRe: how to find image on the screen Pin
Christian Graus25-Sep-07 11:22
protectorChristian Graus25-Sep-07 11:22 
QuestionHow to cause volume fragmentation? Pin
MammPo25-Sep-07 8:02
MammPo25-Sep-07 8:02 
AnswerRe: How to cause volume fragmentation? Pin
Dave Kreskowiak25-Sep-07 10:07
mveDave Kreskowiak25-Sep-07 10:07 
GeneralRe: Thank you! -- How to cause volume fragmentation? Pin
MammPo26-Sep-07 9:43
MammPo26-Sep-07 9:43 
AnswerRe: How to cause volume fragmentation? [modified] Pin
Luc Pattyn25-Sep-07 15:59
sitebuilderLuc Pattyn25-Sep-07 15:59 
GeneralRe: Thank you! -- How to cause volume fragmentation? Pin
MammPo26-Sep-07 9:45
MammPo26-Sep-07 9:45 
Questioni need some help Pin
matched25-Sep-07 7:54
matched25-Sep-07 7:54 
AnswerRe: i need some help Pin
Guffa25-Sep-07 8:37
Guffa25-Sep-07 8:37 
AnswerRe: i need some help Pin
InvalidTypecast25-Sep-07 8:55
InvalidTypecast25-Sep-07 8:55 
QuestionInvoke a Property's Method using Reflection Pin
maxJared25-Sep-07 6:36
maxJared25-Sep-07 6:36 

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.