Search results for query: *

  • Users: rali08
  • Content: Threads
  • Order by date
  1. R

    Threading Performance gain

    i implemented a thread using the code below. The get device sql query takes 12 seconds to execute and then binds to a dropdownlist. i figured if i spawn it on a different thread, i would gain time becuase it is executing in paralell. I havent seen those gains. Can you help Dim...
  2. R

    threading

    I have a data extract control, where on a button clikc i create text files and then sends an email to the user of the ftp site to get the files. Right now the user has to sit and wait. I want to be able to spawn a thread which does all this work and then dies on its own. The user can browse...
  3. R

    Threading issues impersonate

    We are using windows authentication and impersonation. We have an oracle backend. When i try to spawn a thread, it doesnot impersonate the user of the current thread. I have gone to the iis logs and seen that the thread spawned is the asp_net user of my computer. Here is the code behind Dim...
  4. R

    Interop Issues

    I am trying to use this old c dll I loaded it in c# and created a dll which i use in vb.net to reference i created these structs in hte C# dll [StructLayout( LayoutKind.Sequential, CharSet=CharSet.Ansi ) ] public struct RdciKeysRecord { [MarshalAs(UnmanagedType.ByValTStr,SizeConst=21)]...
Back
Top