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.

Empfohlene Antworten

Veröffentlicht

Hallo zusammen,

ich habe eine Frage zu Visual Studios wie es schon im Titel steht.

Ich schreibe für meine Firma ein Programm das Daten aus mehreren Datenbanken zusammensucht und als Word Dokument ausgibt. Das klappt so weit ohne Probleme.

Zum Schluss such ich einen bestimmten Artikelnamen aus dem Dokument und ersetze ihn durch den Artikelname in Großbuchstaben. Das geht auch. Hier der Code zum ersetzen.

objDoc.Content.Find.Execute(FindText:="Artikelname", ReplaceWith:="ARTIKELNAME", Replace:=Word.WdReplace.wdReplaceAll)

Jetzt meine Frage ist es möglich den Ersetzenden Text (also im meinen Fall 'ARTIKELNAME') auch fett im Word Dokument dar zu stellen?

Ich hoffe ihr versteht was ich meine und könnt mir helfen

Schon mal Danke im vor raus

  • Autor

Das hab ich schon ausprobiert, leider ohne Erfolg :(.

Entweder wurde das gesamte Dokument fett oder die Formatierung wurde ignoriert.

objDoc.Content.Find.Execute(FindText:="Artikelname", ReplaceWith:="ARTIKELNAME", Format:=Font.Bold = true, Replace:=Word.WdReplace.wdReplaceAll)

oder binde ich es falsch ein?

  • 3 Wochen später...
  • Autor

Ich hab eine Lösung gefunden :)

objWord.Selection.Find.Format = False

objWord.Selection.Find.Replacement.Font.Bold = True

With objWord.Selection.Find

.Text = "Artikelname"

.Replacement.Text = "ARTIKELNAME"

.Forward = True

.Format = True

.MatchCase = True

objWord.Selection.Find.Execute(Replace:=Word.WdReplace.wdReplaceAll)

End With

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

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.