'
Private Sub NoAutoCorrect() 'MH 08.12.10
'schaltet alle Autokorrektur-Optionen ab
Application.DisplayAutoCompleteTips = False
With AutoCorrect
.CorrectInitialCaps = False
.CorrectSentenceCaps = False
.CorrectDays = False
.CorrectCapsLock = False
.ReplaceText = False
.ReplaceTextFromSpellingChecker = False '**
.CorrectKeyboardSetting = False
.DisplayAutoCorrectOptions = False
.CorrectTableCells = False
End With 'AutoCorrect
With Options
.TabIndentKey = False
.LabelSmartTags = False
.DisplaySmartTagButtons = False
.AutoFormatAsYouTypeApplyHeadings = False
.AutoFormatAsYouTypeApplyBorders = False
.AutoFormatAsYouTypeApplyBulletedLists = False
.AutoFormatAsYouTypeApplyNumberedLists = False
.AutoFormatAsYouTypeApplyTables = False
.AutoFormatAsYouTypeReplaceQuotes = False
.AutoFormatAsYouTypeReplaceSymbols = False
.AutoFormatAsYouTypeReplaceOrdinals = False
.AutoFormatAsYouTypeReplaceFractions = False
.AutoFormatAsYouTypeReplacePlainTextEmphasis = False
.AutoFormatAsYouTypeReplaceHyperlinks = False
.AutoFormatAsYouTypeFormatListItemBeginning = False
.AutoFormatAsYouTypeDefineStyles = False
.AutoFormatApplyHeadings = False
.AutoFormatApplyLists = False
.AutoFormatApplyBulletedLists = False
.AutoFormatApplyOtherParas = False
.AutoFormatReplaceQuotes = False
.AutoFormatReplaceSymbols = False
.AutoFormatReplaceOrdinals = False
.AutoFormatReplaceFractions = False
.AutoFormatReplacePlainTextEmphasis = False
.AutoFormatReplaceHyperlinks = False
.AutoFormatPreserveStyles = False
.AutoFormatPlainTextWordMail = False
End With 'Options
End Sub 'NoAutoCorrect
'
Sub NormalOptions() 'MH 14.12.10
'speichert die Anpassungen unter Extras - Optionen, weil XP die immer wieder vergißt
On Error Resume Next 'damit Ulrike sich nicht wundert
With Application
.DisplayStatusBar = True
.ShowWindowsInTaskbar = False
.ShowStartupDialog = False
.DefaultSaveFormat = ""
.DisplayRecentFiles = True
.UserName = "xxx"
.UserInitials = "MH"
.UserAddress = "yyy" & Chr(10) & "zzz"
.RecentFiles.Maximum = 9
.Languages(1031).SpellingDictionaryType = 0 '1031=wdGerman,0=wdSpelling
With CustomDictionaries
.ClearAll
.Add("C:\Users\z\AppData\Roaming\Microsoft\Proof\BENUTZER.DIC").LanguageSpecific = False 'Benutzerwörterbuch
.Add("C:\Users\z\AppData\Roaming\Microsoft\Proof\MSSP3GEP.EXC").LanguageSpecific = False 'Ausnahmewörterbuch
.ActiveCustomDictionary = CustomDictionaries.Item("C:\Users\z\AppData\Roaming\Microsoft\Proof\BENUTZER.DIC")
End With 'CustomDictionaries
End With 'Application
With ActiveDocument
.ReadOnlyRecommended = False
.EmbedTrueTypeFonts = False
.SaveFormsData = False
.SaveSubsetFonts = False
.DoNotEmbedSystemFonts = False
.Password = ""
.WritePassword = ""
.DisableFeatures = False
.EmbedSmartTags = False
.SmartTagsAsXMLProps = False
.EmbedLinguisticData = False
.PrintPostScriptOverText = False
.PrintFormsData = False
.ClickAndTypeParagraphStyle = "Standard"
.ShowGrammaticalErrors = True
.ShowSpellingErrors = True
End With 'ActiveDocument
With Options
.Pagination = True
.WPHelp = False
.WPDocNavKeys = False
.ShortMenuNames = False
.RTFInClipboard = True
.BlueScreen = False
.EnableSound = False
.ConfirmConversions = False
.UpdateLinksAtOpen = True
.SendMailAttach = True
.MeasurementUnit = 1 'wdCentimeters
.AllowPixelUnits = False
.AnimateScreenMovements = False '**
.VirusProtection = False
.ApplyFarEastFontsToAscii = False
.InterpretHighAnsi = 1 'wdHighAnsiIsHighAnsi
.BackgroundOpen = False
.AutoCreateNewDrawings = False
.CheckSpellingAsYouType = True
.CheckGrammarAsYouType = False
.SuggestSpellingCorrections = True
.SuggestFromMainDictionaryOnly = False
.CheckGrammarWithSpelling = False
.ShowReadabilityStatistics = False
.IgnoreUppercase = False
.IgnoreMixedDigits = False
.IgnoreInternetAndFileAddresses = False
.AllowCombinedAuxiliaryForms = True
.EnableMisusedWordsDictionary = True
.AllowCompoundNounProcessing = True
.UseGermanSpellingReform = True
.ReplaceSelection = True
.AllowDragAndDrop = True
.AutoWordSelection = True
.INSKeyForPaste = False
.PasteSmartCutPaste = True
.AllowAccentedUppercase = True
.PictureEditor = "Microsoft Word"
.TabIndentKey = False
.Overtype = False
.AllowClickAndTypeMouse = True
.CtrlClickHyperlinkToOpen = False
.AutoKeyboardSwitching = False
.PictureWrapType = 0 'wdWrapMergeInline
.DisplayPasteOptions = False
.PromptUpdateStyle = True
.FormatScanning = False
.ShowFormatError = False
.SmartParaSelection = False
.PasteAdjustWordSpacing = True
.PasteAdjustParagraphSpacing = False
.PasteAdjustTableFormatting = False
.PasteSmartStyleBehavior = False
.PasteMergeFromPPT = False
.PasteMergeFromXL = False
.PasteMergeLists = False
.UpdateFieldsAtPrint = True
.UpdateLinksAtPrint = True
.DefaultTray = "Druckereinstellungen verwenden"
.PrintBackground = True
.PrintProperties = False
.PrintFieldCodes = False
.PrintComments = False
.PrintHiddenText = False
.PrintDrawingObjects = True
.PrintDraft = False
.PrintReverse = False
.MapPaperSize = False
.PrintOddPagesInAscendingOrder = False
.PrintEvenPagesInAscendingOrder = False
.LocalNetworkFile = False
.AllowFastSave = False
.BackgroundSave = True
.CreateBackup = False
.SavePropertiesPrompt = True
.SaveInterval = 0
.SaveNormalPrompt = True
.DisableFeaturesbyDefault = False
End With 'Options
With ActiveWindow
.StyleAreaWidth = 0 'CentimetersToPoints(0)
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayVerticalRuler = True
.DisplayLeftScrollBar = True
.DisplayRightRuler = True
.DisplayScreenTips = True
With .View
.ShowAnimation = True
.Draft = False
.WrapToWindow = False
.ShowPicturePlaceHolders = False
.ShowFieldCodes = False
.ShowBookmarks = False
.FieldShading = 0 'wdFieldShadingNever
.ShowTabs = True
.ShowSpaces = True
.ShowParagraphs = True
.ShowHyphens = True
.ShowHiddenText = True
.ShowAll = True
.ShowDrawings = True
.ShowObjectAnchors = True
.ShowTextBoundaries = False
.ShowHighlight = True
.DisplayPageBoundaries = True
.DisplaySmartTags = False
End With '.View
End With 'ActiveWindow
MsgBox "Optionen eingestellt"
End Sub 'NormalOptions
'
Private Sub ResetAllListGalleries() 'René Probst, 2007
'setzt alle ListGalleries zurück.
Dim oGallery As ListGallery, i As Long
For Each oGallery In Application.ListGalleries
For i = 1 To oGallery.ListTemplates.Count
oGallery.Reset Index:=i
Next i
Next oGallery
End Sub 'ResetAllListGalleries