在宅仕事日記

在宅仕事日記

PR

Keyword Search

▼キーワード検索

Calendar

Profile

tanpopo3416

tanpopo3416

Comments

tanpopo3416 @ Re:Excel VBA グループ解除、再グループ化(07/20) 「VBA オートシェイプのグループを再帰的…
jone@ Re:Excel VBA グループ解除、再グループ化(07/20) ワークシート版も考えてみました。 図A,…
tanpopo3416 @ Re[1]:Excel VBA グループ解除、再グループ化(07/20) jone さんへ 「オートシェイプをコピーし…
tanpopo3416 @ Re:Excel VBA グループ解除、再グループ化(07/20) コメントありがとうございます。 >図…
jone@ Re:Excel VBA グループ解除、再グループ化(07/20) 私も挑戦していました。久しぶりのプログ…

Freepage List

Oct 23, 2023
XML
カテゴリ: Word VBA
追記:2023年12月4日
マクロの記事は下記のサイトで書くことにしました。
Word VBA/マクロ 備忘録


ハイパーリンクの一覧(ページ、表示文字列、アドレス)を作成します。

Sub GetHyperlinkList()
    Dim hpLink As Hyperlink, hprList As String
    Dim dcNew As Document
    If ActiveDocument.Hyperlinks.Count = 0 Then
        MsgBox "ハイパーリンクはありません"
        Exit Sub
    End If
    For Each hpLink In ActiveDocument.Hyperlinks
        hprList = hprList & hpLink.Range.Information(wdActiveEndPageNumber) & vbTab & _
        hpLink.TextToDisplay & vbTab & hpLink.Address & vbCrLf
    Next
    Set dcNew = Documents.Add
    With dcNew.PageSetup
        .TopMargin = MillimetersToPoints(20)
        .BottomMargin = MillimetersToPoints(20)
        .LeftMargin = MillimetersToPoints(20)
        .RightMargin = MillimetersToPoints(20)
    End With
    dcNew.Range(0, 0).InsertBefore hprList
    With Selection
        .WholeStory
        .ConvertToTable Separator:=wdSeparateByTabs, NumColumns:=3, _
            NumRows:=3, AutoFitBehavior:=wdAutoFitFixed
        .InsertRowsAbove 1
        .TypeText Text:="ページ"
        .MoveRight Unit:=wdCell
        .TypeText Text:="表示文字列"
        .MoveRight Unit:=wdCell
        .TypeText Text:="アドレス"
        With .Tables(1)

            .PreferredWidthType = wdPreferredWidthPercent
            .PreferredWidth = 100
            .Columns(1).PreferredWidth = 5
            .Columns(2).PreferredWidth = 35
            .Columns(3).PreferredWidth = 60
        End With
        .Font.Size = 9
    End With
End Sub





お気に入りの記事を「いいね!」で応援しよう

Last updated  Dec 4, 2023 10:16:34 AM
コメント(0) | コメントを書く


【毎日開催】
15記事にいいね!で1ポイント
10秒滞在
いいね! -- / --
おめでとうございます!
ミッションを達成しました。
※「ポイントを獲得する」ボタンを押すと広告が表示されます。
x
X

© Rakuten Group, Inc.
X
Design a Mobile Site
スマートフォン版を閲覧 | PC版を閲覧
Share by: