concatenation in a label

  • Thread starter Thread starter Murt
  • Start date Start date
M

Murt

How can I concatenate a string in the below label,

sportype is my string

thank you,

'Display label

lblsports.Text = "Data for the sport type" sporttype
 
Why don't you label it so it makes good English. like this
lblsports.Text = "Data for " & sporttype & ", listed below."
 
Hi Murt,

You get a lot of answers I think

lblsports.Text = "Data for the sport type " & sporttype

Cor
 
* "Murt said:
How can I concatenate a string in the below label,

sportype is my string

thank you,

'Display label

lblsports.Text = "Data for the sport type" sporttype

\\\
lblSports.Text = "Data ... type" & sporttype
///
 
Back
Top