Hi ,
Imagine this is my code :
cvsGraph.DrawLine(230dip, 299dip, 200dip, 1dip, Colors.white, 2dip)
But i want to make the "2dip" variable in function of something else.
I suppose that i have to concatenate this as a string myself,
such as :
dim t as string = thicknessCounter & "dip"
cvsGraph.DrawLine(230dip, 299dip, 200dip, 1dip, Colors.white, t)
Is this state of the art?
thx,
Paul
Imagine this is my code :
cvsGraph.DrawLine(230dip, 299dip, 200dip, 1dip, Colors.white, 2dip)
But i want to make the "2dip" variable in function of something else.
I suppose that i have to concatenate this as a string myself,
such as :
dim t as string = thicknessCounter & "dip"
cvsGraph.DrawLine(230dip, 299dip, 200dip, 1dip, Colors.white, t)
Is this state of the art?
thx,
Paul