Hente text fra bookmark hvor display:none;
Jeg har et worddocument som har en style "Place" denne Place har display:none; mso-hide:all; når jeg køre kodenneden under får jeg "D" ved appWD.Selection.Text... Men hvordan henter jeg den text ud som står i det felt?
s = "Place"
Set appWD = CreateObject("Word.Application.11")
appWD.Visible = True
appWD.Selection.HomeKey (wdStory)
appWD.Selection.Find.ClearFormatting
appWD.Selection.Find.Style = s
With appWD.Selection.Find
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
appWD.Selection.Find.Execute
appWD.Selection.Text