Hello,
I am creating word paragraphs ( part of access report ), the below way I create a paragraph.
Set oPara4 = wddoc.Content.Paragraphs.Add
With oPara4.Range
.InsertParagraphAfter
.Text = "this is paragraph where in there would be text url in within a paragraph"
.Paragraphformat.Alignment = 0
.Paragraphformat.TabIndent (1)
With .Font
.Name = "Verdana"
.Size = "9"
'.Bold = True
End With
End With
there may be N number of paragraphs, and there could be N number of text URLs ( not hyperlinked ) within paragraph or in set of paragraphs, would it be possible to make them as HYPERLINK using programmatic way ? precisely using VBA.
I am creating word paragraphs ( part of access report ), the below way I create a paragraph.
Set oPara4 = wddoc.Content.Paragraphs.Add
With oPara4.Range
.InsertParagraphAfter
.Text = "this is paragraph where in there would be text url in within a paragraph"
.Paragraphformat.Alignment = 0
.Paragraphformat.TabIndent (1)
With .Font
.Name = "Verdana"
.Size = "9"
'.Bold = True
End With
End With
there may be N number of paragraphs, and there could be N number of text URLs ( not hyperlinked ) within paragraph or in set of paragraphs, would it be possible to make them as HYPERLINK using programmatic way ? precisely using VBA.