Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub antiplagiat()
  2. Application.ScreenUpdating = False
  3. For i = 1 To ActiveDocument.Range.Characters.Count
  4.     Selection.MoveRight Unit:=wdCharacter, Count:=1
  5.     Selection.TypeText Text:="."
  6.     Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
  7.     Selection.Font.Size = 1
  8.     Selection.Font.Color = wdColorWhite
  9.     Selection.MoveRight Unit:=wdCharacter, Count:=1
  10.     Next i
  11. Application.ScreenUpdating = True
  12. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement