when i have the following situation...
X = 1
Y = 2
Z = 3
and do the following.....
dim ST1 as string
ST1 = X & " " & Y & ".........." & Z
the value of ST1 is returned as "1 2 ..........3"
how do i maintain the blank or "white" spaces between 1(X) and 2(Y)?
X = 1
Y = 2
Z = 3
and do the following.....
dim ST1 as string
ST1 = X & " " & Y & ".........." & Z
the value of ST1 is returned as "1 2 ..........3"
how do i maintain the blank or "white" spaces between 1(X) and 2(Y)?