Click here to Skip to main content
16,008,183 members
Home / Discussions / C#
   

C#

 
GeneralRe: Trancparency key in windows forms Pin
Kariem Soudy23-May-06 22:11
Kariem Soudy23-May-06 22:11 
GeneralRe: Trancparency key in windows forms Pin
Kariem Soudy23-May-06 22:14
Kariem Soudy23-May-06 22:14 
QuestionGrid Controls Committing Changes [modified] Pin
tjschilling22-May-06 12:30
tjschilling22-May-06 12:30 
AnswerRe: Grid Controls Committing Changes [modified] Pin
Sean8922-May-06 13:07
Sean8922-May-06 13:07 
GeneralRe: Grid Controls Committing Changes [modified] Pin
tjschilling23-May-06 4:45
tjschilling23-May-06 4:45 
GeneralRe: Grid Controls Committing Changes [modified] Pin
Sean8923-May-06 9:15
Sean8923-May-06 9:15 
GeneralRe: Grid Controls Committing Changes [modified] Pin
tjschilling23-May-06 10:13
tjschilling23-May-06 10:13 
GeneralResolved Pin
tjschilling23-May-06 12:10
tjschilling23-May-06 12:10 
Sean, you got me pointed in the right direction. I worked with one of the more experienced Windows developers here and we managed to cobble together the following which seems to be working. Evidently it needed a reference to the table adaptor and needed a select command added to the data adaptor.

Here is the code -

SqlDataAdapter dAdapter = new SqlDataAdapter();
SqlCommandBuilder cmdBuild = new SqlCommandBuilder(dAdapter);
dAdapter.SelectCommand = new SqlCommand("select * from Species");
dAdapter.SelectCommand.Connection = speciesTableAdapter.Connection;
dAdapter.Update(markingDBDataSet3,"Species");


Thank you very much for your help!Smile | :)
GeneralRe: Resolved Pin
Sean8924-May-06 10:11
Sean8924-May-06 10:11 
QuestionDataGridViewCheckBoxColumn values Pin
Elvia Gonzalez22-May-06 12:21
Elvia Gonzalez22-May-06 12:21 
Questiondatagridview Pin
kjosh22-May-06 10:13
kjosh22-May-06 10:13 
AnswerRe: datagridview Pin
led mike22-May-06 10:29
led mike22-May-06 10:29 
QuestionUsing expressions with resource only assembly Pin
koenjordens22-May-06 9:36
koenjordens22-May-06 9:36 
QuestionCatch WebException on async download Pin
Erikerikerikerikerassa22-May-06 8:46
Erikerikerikerikerassa22-May-06 8:46 
AnswerRe: Catch WebException on async download Pin
led mike22-May-06 9:27
led mike22-May-06 9:27 
GeneralRe: Catch WebException on async download Pin
Erikerikerikerikerassa22-May-06 10:00
Erikerikerikerikerassa22-May-06 10:00 
QuestionVS2005 Cross Thread Pin
donkaiser22-May-06 8:06
donkaiser22-May-06 8:06 
AnswerRe: VS2005 Cross Thread Pin
donkaiser22-May-06 8:07
donkaiser22-May-06 8:07 
GeneralRe: VS2005 Cross Thread [modified] Pin
led mike22-May-06 8:21
led mike22-May-06 8:21 
GeneralRe: VS2005 Cross Thread [modified] Pin
donkaiser22-May-06 8:28
donkaiser22-May-06 8:28 
GeneralRe: VS2005 Cross Thread [modified] Pin
led mike22-May-06 9:06
led mike22-May-06 9:06 
AnswerRe: VS2005 Cross Thread Pin
Judah Gabriel Himango22-May-06 9:25
sponsorJudah Gabriel Himango22-May-06 9:25 
GeneralRe: VS2005 Cross Thread Pin
donkaiser23-May-06 6:59
donkaiser23-May-06 6:59 
GeneralRe: VS2005 Cross Thread Pin
Judah Gabriel Himango23-May-06 15:37
sponsorJudah Gabriel Himango23-May-06 15:37 
GeneralRe: VS2005 Cross Thread Pin
donkaiser23-May-06 7:13
donkaiser23-May-06 7:13 

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.