Attribute VB_Name = "Module1" Sub CSAGreek() ' ' CSAGreek Macro ' Macro recorded 10/20/2005 by Mark V Hoffman ' Selection.Font.Name = "Cardo" With Options .CheckSpellingAsYouType = False .CheckGrammarAsYouType = False .SuggestSpellingCorrections = True .SuggestFromMainDictionaryOnly = False .CheckGrammarWithSpelling = True .ShowReadabilityStatistics = False .IgnoreUppercase = True .IgnoreMixedDigits = True .IgnoreInternetAndFileAddresses = True .AllowCombinedAuxiliaryForms = True .EnableMisusedWordsDictionary = True .AllowCompoundNounProcessing = True .UseGermanSpellingReform = True End With ActiveDocument.ShowGrammaticalErrors = True ActiveDocument.ShowSpellingErrors = True Languages(wdEnglishUS).SpellingDictionaryType = wdSpelling With CustomDictionaries .ClearAll .Add( _ "C:\Documents and Settings\Mark\Application Data\Microsoft\Proof\CUSTOM.DIC" _ ).LanguageSpecific = False .ActiveCustomDictionary = CustomDictionaries.Item( _ "C:\Documents and Settings\Mark\Application Data\Microsoft\Proof\CUSTOM.DIC" _ ) End With Application.Keyboard (1032) With AutoCorrect .CorrectInitialCaps = True .CorrectSentenceCaps = False .CorrectDays = True .CorrectCapsLock = True .ReplaceText = True .ReplaceTextFromSpellingChecker = True .CorrectKeyboardSetting = False .DisplayAutoCorrectOptions = True .CorrectTableCells = False End With With Options .AutoFormatAsYouTypeApplyHeadings = False .AutoFormatAsYouTypeApplyBorders = True .AutoFormatAsYouTypeApplyBulletedLists = True .AutoFormatAsYouTypeApplyNumberedLists = True .AutoFormatAsYouTypeApplyTables = True .AutoFormatAsYouTypeReplaceQuotes = False .AutoFormatAsYouTypeReplaceSymbols = True .AutoFormatAsYouTypeReplaceOrdinals = True .AutoFormatAsYouTypeReplaceFractions = True .AutoFormatAsYouTypeReplacePlainTextEmphasis = False .AutoFormatAsYouTypeReplaceHyperlinks = True .AutoFormatAsYouTypeFormatListItemBeginning = True .AutoFormatAsYouTypeDefineStyles = False .TabIndentKey = True End With End Sub Sub CSARestoreEnglish() ' ' CSARestoreEnglish Macro ' Macro recorded 10/20/2005 by Mark V Hoffman ' Application.Keyboard (1033) Selection.Font.Reset With Options .CheckSpellingAsYouType = True .CheckGrammarAsYouType = True .SuggestSpellingCorrections = True .SuggestFromMainDictionaryOnly = False .CheckGrammarWithSpelling = True .ShowReadabilityStatistics = False .IgnoreUppercase = True .IgnoreMixedDigits = True .IgnoreInternetAndFileAddresses = True .AllowCombinedAuxiliaryForms = True .EnableMisusedWordsDictionary = True .AllowCompoundNounProcessing = True .UseGermanSpellingReform = True End With ActiveDocument.ShowGrammaticalErrors = True ActiveDocument.ShowSpellingErrors = True Languages(wdEnglishUS).SpellingDictionaryType = wdSpelling With CustomDictionaries .ClearAll .Add( _ "C:\Documents and Settings\Mark\Application Data\Microsoft\Proof\CUSTOM.DIC" _ ).LanguageSpecific = False .ActiveCustomDictionary = CustomDictionaries.Item( _ "C:\Documents and Settings\Mark\Application Data\Microsoft\Proof\CUSTOM.DIC" _ ) End With With AutoCorrect .CorrectInitialCaps = True .CorrectSentenceCaps = False .CorrectDays = True .CorrectCapsLock = True .ReplaceText = True .ReplaceTextFromSpellingChecker = True .CorrectKeyboardSetting = False .DisplayAutoCorrectOptions = True .CorrectTableCells = False End With With Options .AutoFormatAsYouTypeApplyHeadings = False .AutoFormatAsYouTypeApplyBorders = True .AutoFormatAsYouTypeApplyBulletedLists = True .AutoFormatAsYouTypeApplyNumberedLists = True .AutoFormatAsYouTypeApplyTables = True .AutoFormatAsYouTypeReplaceQuotes = True .AutoFormatAsYouTypeReplaceSymbols = True .AutoFormatAsYouTypeReplaceOrdinals = True .AutoFormatAsYouTypeReplaceFractions = True .AutoFormatAsYouTypeReplacePlainTextEmphasis = False .AutoFormatAsYouTypeReplaceHyperlinks = True .AutoFormatAsYouTypeFormatListItemBeginning = True .AutoFormatAsYouTypeDefineStyles = False .TabIndentKey = True End With End Sub Sub CSAHebrew() ' ' CSAHebrew Macro ' Macro recorded 10/23/2005 by Mark V Hoffman ' Selection.Font.Name = "SBL Hebrew" With Options .CheckSpellingAsYouType = False .CheckGrammarAsYouType = False .SuggestSpellingCorrections = True .SuggestFromMainDictionaryOnly = False .CheckGrammarWithSpelling = True .ShowReadabilityStatistics = False .IgnoreUppercase = True .IgnoreMixedDigits = True .IgnoreInternetAndFileAddresses = True .AllowCombinedAuxiliaryForms = True .EnableMisusedWordsDictionary = True .AllowCompoundNounProcessing = True .UseGermanSpellingReform = True End With ActiveDocument.ShowGrammaticalErrors = True ActiveDocument.ShowSpellingErrors = True Languages(wdEnglishUS).SpellingDictionaryType = wdSpelling With CustomDictionaries .ClearAll .Add( _ "C:\Documents and Settings\Mark\Application Data\Microsoft\Proof\CUSTOM.DIC" _ ).LanguageSpecific = False .ActiveCustomDictionary = CustomDictionaries.Item( _ "C:\Documents and Settings\Mark\Application Data\Microsoft\Proof\CUSTOM.DIC" _ ) End With Application.Keyboard (1037) With AutoCorrect .CorrectInitialCaps = True .CorrectSentenceCaps = False .CorrectDays = True .CorrectCapsLock = True .ReplaceText = True .ReplaceTextFromSpellingChecker = True .CorrectKeyboardSetting = False .DisplayAutoCorrectOptions = True .CorrectTableCells = False End With With Options .AutoFormatAsYouTypeApplyHeadings = False .AutoFormatAsYouTypeApplyBorders = True .AutoFormatAsYouTypeApplyBulletedLists = True .AutoFormatAsYouTypeApplyNumberedLists = True .AutoFormatAsYouTypeApplyTables = True .AutoFormatAsYouTypeReplaceQuotes = False .AutoFormatAsYouTypeReplaceSymbols = True .AutoFormatAsYouTypeReplaceOrdinals = True .AutoFormatAsYouTypeReplaceFractions = True .AutoFormatAsYouTypeReplacePlainTextEmphasis = False .AutoFormatAsYouTypeReplaceHyperlinks = True .AutoFormatAsYouTypeFormatListItemBeginning = True .AutoFormatAsYouTypeDefineStyles = False .TabIndentKey = True End With End Sub