Hi, when I try to insert a space between two merge fields a get a tab instead of a blank space.
But if I insert any other character it works fine. The problem is very simple I must insert a space
between NAME and SURNAME. Thank you, my best regards.
Luciano
See the code below.
builder.MoveToDocumentEnd()
builder.Document.DefaultTabStop = 144
builder.Writeln(Chr(10) & Chr(13) & "Company " & ControlChar.Tab & ControlChar.Tab & "CUSTOMER")
builder.InsertField("MERGEFIELD ENPLOYEE \* MERGEFORMAT", "")
builder.Write(ControlChar.Tab & ControlChar.Tab)
builder.InsertField("MERGEFIELD NAME \* MERGEFORMAT", "")
builder.InsertField("MERGEFIELD SURNAME \b "" "" \* MERGEFORMAT", "")
The result is the following:
NAME SURNAME
Instead of:
NAME SURNAME