Threadstart
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 9 articles for 0.000 sec
Re: DirectSound - record audio problem: static recorded....     

Group: microsoft.public.win32.programmer.directx.audio · Group Profile · Search for Threadstart in microsoft.public.win32.programmer.directx.audio
Author: hzgt9b
Date: Sep 28, 2007 08:10

...Me.tCaptureBufferEvent Is Nothing AndAlso Me.tCaptureBufferEvent.IsAlive Then Me.tCaptureBufferEvent.Abort() Me.tCaptureBufferEvent = New Thread(New ThreadStart(AddressOf Me.Process_HandleCaptureBufferEvent)) Me.tCaptureBufferEvent.Priority = ThreadPriority.Highest Me.tCaptureBufferEvent.SetApartmentState(ApartmentState.STA) Me.tCaptureBufferEvent.Start...
Show full article (7.16Kb) · Show article thread
DirectSound - record audio problem: static recorded....     

Group: microsoft.public.win32.programmer.directx.audio · Group Profile · Search for Threadstart in microsoft.public.win32.programmer.directx.audio
Author: hzgt9b
Date: Sep 26, 2007 21:09

...Me.tCaptureBufferEvent Is Nothing AndAlso Me.tCaptureBufferEvent.IsAlive Then Me.tCaptureBufferEvent.Abort() Me.tCaptureBufferEvent = New Thread(New ThreadStart(AddressOf Me.Process_HandleCaptureBufferEvent)) Me.tCaptureBufferEvent.Priority = ThreadPriority.Highest Me.tCaptureBufferEvent.SetApartmentState(ApartmentState.STA) Me.tCaptureBufferEvent.Start...
Show full article (15.41Kb)
RE: SQLXML Bulk Load "Error connecting to data source"     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Threadstart in microsoft.public.sqlserver.xml
Author: Monica Frintu [MSFT]
Date: Jun 11, 2007 13:13

..., ContextCallback callback, Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart() ************************************** I have searched high and low, and I see no reason why my connection string shouldn't be working. It works in the ...
Show full article (2.50Kb) · Show article thread
SQLXML Bulk Load "Error connecting to data source"     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Threadstart in microsoft.public.sqlserver.xml
Author: Gomez, Chris
Date: May 30, 2007 11:17

... executionContext, ContextCallback callback, Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart() ************************************** I have searched high and low, and I see no reason why my connection string shouldn't be working. It works in the ...
Show full article (2.13Kb)
Play is Skipping whenever there is some activity on PC     

Group: microsoft.public.win32.programmer.directx.audio · Group Profile · Search for Threadstart in microsoft.public.win32.programmer.directx.audio
Author: Vic
Date: Mar 22, 2007 04:39

...) throw new NullReferenceException(); // Create a thread to monitor the input notify events if (null == InputNotifyThread) { InputNotifyThread = new Thread(new ThreadStart(WaitThread)); Capturing = true; InputNotifyThread.Start(); // Create a notification event, for when the sound stops playing NotificationEvent = new AutoResetEvent(false); }...
Show full article (18.80Kb)
CaqptureSound: why empty notifications?     

Group: microsoft.public.win32.programmer.directx.audio · Group Profile · Search for Threadstart in microsoft.public.win32.programmer.directx.audio
Author: Beemer Biker
Date: Feb 26, 2007 06:42

... the events up: ========start of code segment====== // Create a thread to monitor the notify events if (null == NotifyThread) { NotifyThread = new Thread(new ThreadStart(WaitThread)); Capturing = true; NotifyThread.Start(); // Create a notification event, for when the sound stops playing NotificationEvent = new AutoResetEvent(false); } // Setup ...
Show full article (3.47Kb)
Re: program no longer works except in debug mode     

Group: microsoft.public.win32.programmer.directx.audio · Group Profile · Search for Threadstart in microsoft.public.win32.programmer.directx.audio
Author: Beemer Biker
Date: Feb 16, 2007 12:13

...(null == applicationBuffer) throw new NullReferenceException(); // Create a thread to monitor the notify events if (null == NotifyThread) { NotifyThread = new Thread(new ThreadStart(WaitThread)); Capturing = true; NotifyThread.Start(); // Create a notification event, for when the sound stops playing NotificationEvent = new AutoResetEvent(false); } ...
Show full article (5.02Kb)
Re: Visual of sound wave during capture     

Group: microsoft.public.win32.programmer.directx.audio · Group Profile · Search for Threadstart in microsoft.public.win32.programmer.directx.audio
Author: Mark
Date: Jul 21, 2006 16:19

...if (null == applicationBuffer) throw new NullReferenceException(); // Create a thread to monitor the notify events if (null == NotifyThread) { NotifyThread = new Thread(new ThreadStart(WaitThread)); Capturing = true; NotifyThread.Start(); // Create a notification event, for when the sound stops playing NotificationEvent = new AutoResetEvent(false); } // Setup ...
Show full article (10.74Kb) · Show article thread
Visual of sound wave during capture     

Group: microsoft.public.win32.programmer.directx.audio · Group Profile · Search for Threadstart in microsoft.public.win32.programmer.directx.audio
Author: Mark
Date: Jul 13, 2006 16:06

...if (null == applicationBuffer) throw new NullReferenceException(); // Create a thread to monitor the notify events if (null == NotifyThread) { NotifyThread = new Thread(new ThreadStart(WaitThread)); Capturing = true; NotifyThread.Start(); // Create a notification event, for when the sound stops playing NotificationEvent = new AutoResetEvent(false); } // Setup ...
Show full article (8.42Kb)