Go to centre

  • Thread starter Thread starter Box666
  • Start date Start date
B

Box666

I have vertually no coding knowledge, but I have an existing program
where they have used
& vbCrLf
which seems to take you to the next line, but what is the command to
go to the centre of the next line.?

With thanks

Bob
 
That is not exactly what vbCrLf does. It is just a constant for a Carriage
Return Line Leed code combination ( chr(13) & chr(10) ). It is a carry over
from the old days when you told the printer or the screen to start a new line
on the device. As it works today, it breaks a display. For example, if you
had a string like:
"This is the First Part and" & vbCrLf & "This is the Second Part"
It would display as

This is the First Part and
This is the Second Part

You will need to explain what you mean by go to the center of the next line.
There really is no such thing.
 
Back
Top