HI
Disconnect the DataGrid before you add the new rows. If the DataGrid is connected via
DataSource, to default view (or others) applies filter and sorting for each added row
Dirk
-Ursprüngliche Nachricht-
Von: Scott A. Lawrence [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 6. Januar 20
I had some problems with diffrent threads using the same connection (OleDbConnection),
even if the access to the object was synchronized. Maybe the behauvior is caused by
this. Try to use the connection only in one thread.
Dirk
> -Original Message-
> From: Blain Timberlake [mailto:[EM
maybe manually using tlbimp.exe and using the interop assembly generated helps.
options for tlbimp (subset):
/reference:FileName File name of assembly to use to resolve references
/publickey:FileName File containing strong name public key
/keyfile:FileNameFile contain
> back. To avoid this, you can provide a wrapper for the Read
> method on your server component.
I don't want to avoid the transfert back, I want to avoid the transfer to the server.
>
> HTH,
>
> Stefan
> - Original Message -
> From: Dirk Reuss
&g
offset, int count);
> >
> > in is not a valid parameter modifier in C#; so, I guess, this
> > qualifies as a documentation error.
> >
> > Anyway, the out modifier causes the buffer to be transferred
> > back. To avoid this, you can provide a wrapper for the Read
> >
Hello,
I implemented a Stream for transfering data over the network.
On the remote (client) side I have a proxy to a stream object.
Client Code:
Stream stream = remoteserverobject.GetStream();
byte [] buffer = new byte[1024*1024];
stream.Read(buffer,0,1024*1024) ;
The buffer is transferd (1MB) f