word-vba-tips-learning.blogspot.com
Word VBA - Tips, Learning, Tutorial: Sorting data using Word VBA
http://word-vba-tips-learning.blogspot.com/2010/01/q.html
Word VBA - Tips, Learning, Tutorial. Thursday, January 7, 2010. Sorting data using Word VBA. Q How to sort the data Alphanumerically using Word VBA? Function that can be used as per requirements. Expression. Sort(ExcludeHeader, FieldNumber, SortFieldType, SortOrder, FieldNumber2, SortFieldType2, SortOrder2, FieldNumber3, SortFieldType3, SortOrder3, SortColumn, Separator, CaseSensitive, BidiSort, IgnoreThe, IgnoreKashida, IgnoreDiacritics, IgnoreHe, LanguageID). The default value is False.
word-vba-tips-learning.blogspot.com
Word VBA - Tips, Learning, Tutorial: Built In Document Property using Word VBA
http://word-vba-tips-learning.blogspot.com/2010/01/built-in-document-property-using-word.html
Word VBA - Tips, Learning, Tutorial. Thursday, January 7, 2010. Built In Document Property using Word VBA. Q How to check the Title of the ActiveDocument using Word VBA? MsgBox ActiveDocument.BuiltInDocumentProperties("Title").Value. Q How to update the Title of the ActiveDocument using Word VBA? ActiveDocument.BuiltInDocumentProperties("Title").Value = "Test Title". Below are the available Built In Document Properties of document which can be used via Word VBA code. Number of hidden Slides.
word-vba-tips-learning.blogspot.com
Word VBA - Tips, Learning, Tutorial: January 2010
http://word-vba-tips-learning.blogspot.com/2010_01_01_archive.html
Word VBA - Tips, Learning, Tutorial. Thursday, January 7, 2010. Sorting data using Word VBA. Q How to sort the data Alphanumerically using Word VBA? Function that can be used as per requirements. Expression. Sort(ExcludeHeader, FieldNumber, SortFieldType, SortOrder, FieldNumber2, SortFieldType2, SortOrder2, FieldNumber3, SortFieldType3, SortOrder3, SortColumn, Separator, CaseSensitive, BidiSort, IgnoreThe, IgnoreKashida, IgnoreDiacritics, IgnoreHe, LanguageID). The default value is False. MsgBox ActiveDo...