Click here to Skip to main content
15,914,608 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: error in connecting to database from Client's PC Pin
MissionSuccess28-Nov-06 20:18
MissionSuccess28-Nov-06 20:18 
AnswerRe: error in connecting to database from Client's PC Pin
Dave Kreskowiak29-Nov-06 4:00
mveDave Kreskowiak29-Nov-06 4:00 
AnswerRe: error in connecting to database from Client's PC Pin
Steven J Jowett30-Nov-06 0:14
Steven J Jowett30-Nov-06 0:14 
Questionhow to write code for paging in datagrid when the source of the datagrid is a Stored procedure Pin
tirumal123128-Nov-06 19:39
tirumal123128-Nov-06 19:39 
QuestionWeb Browser Pin
riyaz_786_p28-Nov-06 19:09
riyaz_786_p28-Nov-06 19:09 
Questionado.net Pin
185528-Nov-06 18:31
185528-Nov-06 18:31 
AnswerRe: ado.net Pin
Dave Kreskowiak29-Nov-06 5:51
mveDave Kreskowiak29-Nov-06 5:51 
GeneralRe: ado.net Pin
185529-Nov-06 16:53
185529-Nov-06 16:53 
Thanks, it worked.

I had to handle each row individualy, like this:
...
da.Fill(dsLocal)

Dim dsServ As DataSet = New DataSet
myDataAdapter.FillSchema(dsServ, SchemaType.Source)

Dim dw As DataRow
For Each dw In dsLocal.Tables(0).Rows
dsServ.Tables(0).Rows.Add(dw.ItemArray)
Next
myDataAdapter.Update(dsServ)
...
I take it that's what you meant?

QuestionNeeding Ideas Pin
Tretanya28-Nov-06 18:20
Tretanya28-Nov-06 18:20 
AnswerRe: Needing Ideas Pin
Christian Graus28-Nov-06 20:29
protectorChristian Graus28-Nov-06 20:29 
GeneralRe: Needing Ideas Pin
Tretanya29-Nov-06 2:19
Tretanya29-Nov-06 2:19 
GeneralRe: Needing Ideas Pin
Christian Graus29-Nov-06 8:27
protectorChristian Graus29-Nov-06 8:27 
GeneralRe: Needing Ideas Pin
Tretanya29-Nov-06 9:46
Tretanya29-Nov-06 9:46 
GeneralRe: Needing Ideas Pin
Dave Kreskowiak29-Nov-06 9:56
mveDave Kreskowiak29-Nov-06 9:56 
GeneralRe: Needing Ideas Pin
Paul Conrad29-Nov-06 10:04
professionalPaul Conrad29-Nov-06 10:04 
GeneralRe: Needing Ideas Pin
Dave Kreskowiak29-Nov-06 10:13
mveDave Kreskowiak29-Nov-06 10:13 
GeneralRe: Needing Ideas Pin
Paul Conrad29-Nov-06 10:17
professionalPaul Conrad29-Nov-06 10:17 
GeneralRe: Needing Ideas Pin
Tretanya29-Nov-06 11:14
Tretanya29-Nov-06 11:14 
GeneralRe: Needing Ideas Pin
Dave Kreskowiak29-Nov-06 12:06
mveDave Kreskowiak29-Nov-06 12:06 
GeneralRe: Needing Ideas Pin
Christian Graus29-Nov-06 10:12
protectorChristian Graus29-Nov-06 10:12 
GeneralRe: Needing Ideas Pin
Tretanya29-Nov-06 11:18
Tretanya29-Nov-06 11:18 
GeneralRe: Needing Ideas Pin
Paul Conrad29-Nov-06 11:25
professionalPaul Conrad29-Nov-06 11:25 
AnswerRe: Needing Ideas Pin
Paul Conrad29-Nov-06 6:35
professionalPaul Conrad29-Nov-06 6:35 
GeneralRe: Needing Ideas Pin
Tretanya29-Nov-06 9:17
Tretanya29-Nov-06 9:17 
GeneralRe: Needing Ideas Pin
Paul Conrad29-Nov-06 10:02
professionalPaul Conrad29-Nov-06 10:02 

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.