M
mikeFin
Hello!
Here a procedure I have:
- - -
Sub naming(shpObj As Visio.Shape, txt As String)
ActiveWindow.Selection(1).text = ActiveWindow.Selection(1).text & txt
End Sub
- - -
I would like to have line break between both strings.
How could I do that?
I just know that with "vbCr" ...
ActiveWindow.Selection(1).text = ActiveWindow.Selection(1).text & vbCr &txt
.... I get a whitespace between the strings.
Thanks !
Here a procedure I have:
- - -
Sub naming(shpObj As Visio.Shape, txt As String)
ActiveWindow.Selection(1).text = ActiveWindow.Selection(1).text & txt
End Sub
- - -
I would like to have line break between both strings.
How could I do that?
I just know that with "vbCr" ...
ActiveWindow.Selection(1).text = ActiveWindow.Selection(1).text & vbCr &txt
.... I get a whitespace between the strings.
Thanks !