Click here to Skip to main content
15,887,432 members
Home / Discussions / C#
   

C#

 
AnswerRe: question Pin
Pete O'Hanlon1-Sep-10 1:05
mvePete O'Hanlon1-Sep-10 1:05 
AnswerRe: question Pin
Smithers-Jones1-Sep-10 5:12
Smithers-Jones1-Sep-10 5:12 
GeneralRe: question Pin
Pete O'Hanlon1-Sep-10 7:45
mvePete O'Hanlon1-Sep-10 7:45 
GeneralRe: question Pin
AspDotNetDev1-Sep-10 9:16
protectorAspDotNetDev1-Sep-10 9:16 
AnswerRe: question Pin
Eddy Vluggen1-Sep-10 8:38
professionalEddy Vluggen1-Sep-10 8:38 
AnswerRe: question Pin
Dave Kreskowiak1-Sep-10 8:58
mveDave Kreskowiak1-Sep-10 8:58 
QuestionTrying to update sql table from datagrid Pin
mpanger1-Sep-10 0:31
mpanger1-Sep-10 0:31 
AnswerRe: Trying to update sql table from datagrid Pin
OriginalGriff1-Sep-10 6:16
mveOriginalGriff1-Sep-10 6:16 
You didn't "incorrectly" post this to Q&A, I think the answer from CG was suggesting that you might want to use the Message facility at the end of the article you referenced, rather than raise a new general question thread. However, since the article is about the use of a standard .NET component a general question is perfectly valid. Don't worry about CG - Quantas probably sucks again! And don't worry about that, CG is well known for sucky things...

The first thing I would say is: since you are doing a winforms project, I would avoid using DataGrid and use DataGridView instead - it's a little more advanced, and a bit easier to play with.

However, the error you are gettign is a bit specific:
cannot convert from 'System.Data.DataSet' to 'FirstCheckBookInSQL.CheckBookManagementDataSet . CheckbookUSBPersonalDataTable'

with your code
int modifiedRows = this.checkbookUSBPersonalTableAdapter.Update(myChangedDataSet);

What it means is "Update expects a DataTable, you are providing a CheckbookUSBPersonalDataTable. Please give me a DataTable instead".
When you defined CheckbookUSBPersonalDataTable, did you derive it from DataTable? Or does it contain a DataTable and you forgot to refer to it? Because if not, then you cannot supply it to the Update method.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.

GeneralRe: Trying to update sql table from datagrid Pin
mpanger1-Sep-10 7:20
mpanger1-Sep-10 7:20 
QuestionCasting a session object to a generic object Pin
Swiftain31-Aug-10 23:23
Swiftain31-Aug-10 23:23 
AnswerRepeat Pin
Not Active1-Sep-10 1:44
mentorNot Active1-Sep-10 1:44 
GeneralRe: Repeat Pin
Swiftain1-Sep-10 2:35
Swiftain1-Sep-10 2:35 
GeneralRe: Repeat Pin
Pete O'Hanlon1-Sep-10 3:09
mvePete O'Hanlon1-Sep-10 3:09 
GeneralRe: Repeat Pin
Swiftain1-Sep-10 2:36
Swiftain1-Sep-10 2:36 
GeneralRe: Repeat Pin
Not Active1-Sep-10 2:49
mentorNot Active1-Sep-10 2:49 
AnswerMessage Removed Pin
1-Sep-10 2:38
kevinnicol1-Sep-10 2:38 
GeneralRe: Casting a session object to a generic object Pin
Not Active1-Sep-10 2:52
mentorNot Active1-Sep-10 2:52 
GeneralRe: Casting a session object to a generic object Pin
Swiftain1-Sep-10 2:59
Swiftain1-Sep-10 2:59 
QuestionChange sql server product key through programming Pin
dalbhide bipin31-Aug-10 23:12
dalbhide bipin31-Aug-10 23:12 
AnswerRe: Change sql server product key through programming Pin
Goutam Patra1-Sep-10 1:41
professionalGoutam Patra1-Sep-10 1:41 
GeneralRe: Change sql server product key through programming Pin
dalbhide bipin1-Sep-10 2:54
dalbhide bipin1-Sep-10 2:54 
GeneralRe: Change sql server product key through programming Pin
phil.o1-Sep-10 3:59
professionalphil.o1-Sep-10 3:59 
GeneralRe: Change sql server product key through programming Pin
dalbhide bipin1-Sep-10 20:12
dalbhide bipin1-Sep-10 20:12 
Questionproblem in sending file with bluetooth Pin
behzadcp31-Aug-10 20:55
professionalbehzadcp31-Aug-10 20:55 
AnswerRe: problem in sending file with bluetooth Pin
Pete O'Hanlon31-Aug-10 22:33
mvePete O'Hanlon31-Aug-10 22:33 

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.