[RESOLVED] What is the next line code like enter?
Hi, everyone , i have a question. What code should i type in order to give this kind of display below, when i send a message to phone.
I want this kind of display:
welcome
1) select
2) cancel
But not this kind of display:
welcome 1) select 2) cancel
Thanks for help.
Re: What is the next line code like enter?
from vb6? or Messenger client
if VB6 then simply use vbCrlf wherever you want to have line break
Re: What is the next line code like enter?
Or the & sign if you wish to concantenate the string all onto one line.
Re: What is the next line code like enter?
I use VB6. Is it like that:
Text2.Text = "Welcome" + vbCrLf + " 1)Select " + vbCrLf + " 2)Cancel "
Re: What is the next line code like enter?
You should use & instead of + when adding strings together, but otherwise you've got it.
Re: What is the next line code like enter?
OK , i get it thanks all of u.