VBA-Programmierung in Microsoft Excel

Tutorial: Excel-Beispiele

VBA-Begriff: Beispiel zur LinkInfo-Methode

In diesem Beispiel wird ein Meldungsfeld angezeigt, falls die Verknüpfung automatisch aktualisiert wird.

If ActiveWorkbook.LinkInfo( _
        "Word.Document|Document1!'!DDE_LINK1", xlUpdateState, _
            xlOLELinks) = 1 Then
    MsgBox "Link updates automatically"
End If