Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use VB.net to create an office word document -

Public Sub PrintDocument()

    Dim oWord As Word.Application
    Dim oDoc As Word.Document

    'Start Word and open the document template.
    oWord = CreateObject("Word.Application")
    oWord.Visible = True
    oDoc = oWord.Documents.Add
    oDoc.Paragraphs.Format.Alignment = WdParagraphAlignment.wdAlignParagraphRight
    oDoc.PageSetup.SectionDirection = WdSectionDirection.wdSectionDirectionRtl

    Dim oParaName As Word.Paragraph = oDoc.Paragraphs.Add()
    Dim oParaData As Word.Paragraph = oDoc.Paragraphs.Add()
    Dim oParaIngr As Word.Paragraph = oDoc.Paragraphs.Add()
    Dim oParaInst As Word.Paragraph = oDoc.Paragraphs.Add()

    With oParaName
        .Range.Font.Bold = True
        .Range.Font.Underline = True
        .Range.Font.Name = "David"
        .Range.Font.Size = 24
        .Range.Text = lblName.Text

        .Format.RightIndent = True
        .Format.SpaceAfter = 24    '24 pt spacing after paragraph.

        .Range.InsertParagraphAfter()
    End With

The code above works just fine when the text is in English, but if the text is in Hebrew some properties, such as the font size, have no effect. Looking at it within Word I can see that there are actually different settings for 'complex scripts' - how can I control these via code?

enter image description here

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.