Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Word 2010: Vorlag erstenn, die alle Bilder ausblendet

Empfohlene Antworten

Veröffentlicht

Hi. Ich habe ein Problem!

1. Was will ich machen?

- Ich will eine Vorlage für Word Dokumente erstellen, bei der alle Bilder automatisch ausgeblendet sind.

2. Wozu?

- Ich habe eine Software, die verschiedene Arten von Hilfen generieren kann (also praktisch Handbücher). Das Problem an der Sache ist, dass ich bei einer bestimmten Hilfe keine Bilder haben möchte. In den Einstellungen der Software ist es nicht möglich nur die Bilder auszublenden. Die verschiedenen Eigenschaften der Hilfen werden jeweils über Word Vorlagen gespeichert.

In den Word-Optionen gibt es einen Punkt, der bestimmt, ob Bilder mit ausgedruckt werden. Der lässt sich (glaube ich) mittels VBA über


Options.PrintDrawingObjects

steuern. Wenn das nicht ausreicht, könntest du dir in einer separaten Datei das folgende Makro abspeichern.

Option Explicit


Sub BilderEntfernen()

Dim i As Shape

Dim u As InlineShape


MsgBox "Anzahl Grafiken: " & ActiveDocument.Shapes.Count

For Each i In ActiveDocument.Shapes

    i.Delete

Next i


MsgBox "Anzahl Grafiken: " & ActiveDocument.InlineShapes.Count

For Each u In ActiveDocument.InlineShapes

    u.Delete

Next u


End Sub

Das löscht alle Bilder aus dem aktiven Dokument. Das ganze sollte nicht in einer Vorlage oder dem eigentlichen Dokument sein, damit Makros an einer zentralen Stelle sind z. B. nicht mit versendet werden.

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.