Hi,
It's me again. Question the following bit of code:
for (int i = 0; i < Length; i++)
{
CommandSent = Command1.Substring(j, 1);
myComPort.Write(CommandSent);
//MessageBox.Show(CommandSent);
richTextBox1.Text += CommandSent;
j++;
}
myComPort.Write("\r\n");
works, while using the staight
myComPort.Write(Command1);
does not, is this due to a slight gap being introduced by the for loop? or am I wrong!