Hi Don and Pual,
Thanks for your replies, I couldn't make it work

1- Can you please tell me the TX and RX pins on Arduino is connected to which pin on on LCD?
LCD pins are:
Vss,
VDD,
Vo,
RS,
R/W
E,
DB0-DB7
2- I want to type in characters in Aurdino software and be able to display it on LCD in real time using USB cable.
3- I am using the below code, am I using correct code ? I have tried pin 2 & 3 on Arduino but don't know where should they be connected on LCD.
#include <NewSoftSerial.h>
NewSoftSerial mySerial(0, 1);
void setup()
{
Serial.begin(9600);
Serial.println("Goodnight moon!");
// set the data rate for the NewSoftSerial port
mySerial.begin(9600);
mySerial.println("Hello, world?");
}
void loop() // run over and over again
{
if (mySerial.available()) {
Serial.print((char)mySerial.read());
}
if (Serial.available()) {
mySerial.print((char)Serial.read());
}
}
Thanks in advance for your help.
Cheers,
Yashar