Can anyone tell me why my stamp text keeps appearing on two lines? I am calling the stamp from code not using the annotation tool.

Code:
'*************************************
        'Add Annotation for Query
        'Only StampText works
        '*************************************
        '.AddAnnotationGroup "TOP"
        .AnnotationType = wiTextStamp
        .AnnotationStampText = sText
        .AnnotationFontColor = vbBlack
        .AnnotationFont.Size = 8
        '*************************************
        
        '*************************************
        'Update, Display and Draw
        '.Zoom = 75
        .MousePointer = wiMPArrowHourglass
        .Display
            .Draw 50, 200 'Prints alongside the Logo
            '.Refresh
            If bDoPrint Then
                'Debug.Print sFile & ": " & sText
                .PrintImage 1, 1, 1, True, Printer.DeviceName, Printer.DriverName, Printer.Port
            End If
Here's hoping . . .