How do I get a text on the LCD screen of the Edu05 without the Textbox to type? Or button operation
The text should there come to be as the progamme boot.
For example, “My name”
Idebertan
How do I get a text on the LCD screen of the Edu05 without the Textbox to type? Or button operation
The text should there come to be as the progamme boot.
For example, “My name”
Idebertan
In Visual Basic you can do it with:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
InOutMode(0)
LCDWriteString("My Name", 0)
End Sub
I am just find out Thank you.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
OpenDevice()
InOutMode(0)
LCDClear()
LCDWriteString("Its Bertran", CInt("1"))
End Sub]
Is working verry well.
Bertran
Visual Basic has numbers, so you don’t need to convert text to a number
Thank you
Beginner…Hiii