S
Senad Isanovic
strDnr = "2828;1212;11;22;33;"
strDnr = Replace(strDnr, ";", vbCrLf)
ActiveDocument.Variables("bDnr") = strDnr & " "
Then from the document I use the field {DocVariable "bDnr"} to display the
value from the variable but the problem is that instead of showing new line
I can only see square which is not what I want. Later in the code I also
need to replace vbCrLf with ";"
strDnr = Replace(strDnr, ";", vbCrLf)
ActiveDocument.Variables("bDnr") = strDnr & " "
Then from the document I use the field {DocVariable "bDnr"} to display the
value from the variable but the problem is that instead of showing new line
I can only see square which is not what I want. Later in the code I also
need to replace vbCrLf with ";"