[Resolved] VB6 with Uno serialprint to text box

Paul

Is this what you suggested to be placed in the UNO?

      //send data to serial port for debugging/read data at the PC                       
      Serial.print("sensorValue");Serial.println(sensorValue);
      Serial.print("speedstartValue");Serial.println(speedstartValue);
      Serial.print("speedcurveValue");Serial.println(speedcurveValue);
      Serial.print("brakeValue");Serial.println(brakeValue);
      Serial.print("brakecurve");Serial.println(brakecurveValue);
      Serial.print("sensorMin");Serial.println(sensorMin);
      Serial.print("sensorMax");Serial.println(sensorMax);
      Serial.print("modelName");Serial.println(modelName);

BTW I got the other code working. It hang on the fact the VBTAB was there and was hurting the splitting. As soon as I changed the seperator VBTAB to letter "x" it worked. So you are right vbtab was not the correct seperator at the end of datafield.
Now on to the next challange reading the above values to the text boxes.

Paco