I'm trying to open a serial port on a PDA windows WIndows Mobile 5. All is working, i get the text from the GPS. But i got also a lot of message from windows. Like these (sorry it's in french):
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
Le thread 0x4a237176 s'est arrêté avec le code 0 (0x0).
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
Le thread 0x4a237176 s'est arrêté avec le code 0 (0x0).
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
Le thread 0x4a237176 s'est arrêté avec le code 0 (0x0).
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
IT mean the thread stopped with the code 0 (0x0).
Is it normal? I dont get this error before the "open". Here the code in his simplest form:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace DeviceApplication7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
System.IO.Ports.SerialPort pSerialPort = new System.IO.Ports.SerialPort();
pSerialPort.PortName = "COM5";
pSerialPort.BaudRate = 9600;
pSerialPort.Open();
}
}
}
Thanx
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
Le thread 0x4a237176 s'est arrêté avec le code 0 (0x0).
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
Le thread 0x4a237176 s'est arrêté avec le code 0 (0x0).
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
Le thread 0x4a237176 s'est arrêté avec le code 0 (0x0).
Le thread 0xca3b2fc2 s'est arrêté avec le code 0 (0x0).
IT mean the thread stopped with the code 0 (0x0).
Is it normal? I dont get this error before the "open". Here the code in his simplest form:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace DeviceApplication7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
System.IO.Ports.SerialPort pSerialPort = new System.IO.Ports.SerialPort();
pSerialPort.PortName = "COM5";
pSerialPort.BaudRate = 9600;
pSerialPort.Open();
}
}
}
Thanx