I'm doing a noddy program and I want to add a couple of strings together to make up a longer string, but I need to ensure that the strings I'm adding line up under label headings.
i.e
dim a as string * 10
dim b as string * 10
dim c as string
a = "overclockers"
b = "forums"
c = a + space(5) + b
and it will look like this
WEBSITE LOCATION
overclockers forums
but instead its moving things left depending on the a string,
any ideas?
i.e
dim a as string * 10
dim b as string * 10
dim c as string
a = "overclockers"
b = "forums"
c = a + space(5) + b
and it will look like this
WEBSITE LOCATION
overclockers forums
but instead its moving things left depending on the a string,
any ideas?