https://bz.apache.org/ooo/show_bug.cgi?id=105060

Czesław Wolański <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
             Latest|---                         |4.1.13
    Confirmation in|                            |

--- Comment #4 from Czesław Wolański <[email protected]> ---
(In reply to oodenis from comment #0)
> 
> If you add spaces around the GivenWord variable like this:
> givenWord= "hello"
> MsgBox("Found """& givenWord &"""")
> 
> You get the intended result.
Trailing & may indicate the variable type Long integer.

To get the intended result a space is needed 
only _after_ the GivenWord variable i.e.

MsgBox("Found """&givenWord &"""")



Other workarounds:

MsgBox("Found """&(givenWord)&"""")

MsgBox("Found """&givenWord+"""")

-- 
You are receiving this mail because:
You are on the CC list for the issue.
You are the assignee for the issue.

Reply via email to