Alex

Alex

  • NA
  • 1
  • 0

proplem with threading

Jul 28 2006 10:43 AM
static void Main() { videostreaming(); } it work perfect. but when i let videostreaming() run in seperate thread: static void Main() { Thread thread = new Thread(videostreaming); thread.Start(); } public void videostreaming() { verbindet mit Video Server und führt video streaming aus. } there is Probelm: The COM-Object of Type "System.__ComObect" can not be converted.... some one can help me ? thanks for all of the Tip. Alex