[ADVANCED-DOTNET] AW: [ADVANCED-DOTNET] Fastest way to add contents of ArrayList to a DataTable

2004-01-17 Thread Dirk Reuss
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

Re: [ADVANCED-DOTNET] Connection pool help needed badly...

2002-09-02 Thread Dirk Reuss
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

Re: [ADVANCED-DOTNET] problem with the Shared Property Manager

2002-08-16 Thread Dirk Reuss
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

Re: [ADVANCED-DOTNET] Why has a MarshallByRefObject Stream.Read(..) byte[] as IN Parameter

2002-08-15 Thread Dirk Reuss
> 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

Re: [ADVANCED-DOTNET] Why has a MarshallByRefObject Stream.Read(..) byte[] as IN Parameter

2002-08-15 Thread Dirk Reuss
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 > >

[ADVANCED-DOTNET] Why has a MarshallByRefObject Stream.Read(..) byte[] as IN Parameter

2002-08-14 Thread Dirk Reuss
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