Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 02-11-2012, 11:17 AM
Capungo Capungo is offline How to generate special outline numbering list. Windows 7 64bit How to generate special outline numbering list. Office 2003
Novice
How to generate special outline numbering list.
 
Join Date: Feb 2012
Posts: 6
Capungo is on a distinguished road
Default How to generate special outline numbering list.


Hello All,

Is there a way to generate a special numbering list to use in every kind of new documents? I am Turkish and we have different letters to use in a numbering list such as ç, ı, ö and ü. But Word doesn't offer these letters in the list galleries and I guess the list templates are hard-coded in Word.

Any kind of help would be appreciated. Thanks in advance...

Note: I am not so bad at VBA...
Reply With Quote
  #2  
Old 02-11-2012, 12:30 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline How to generate special outline numbering list. Windows 7 64bit How to generate special outline numbering list. Office 2010 32bit
Moderator
 
Join Date: Aug 2011
Posts: 3,907
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

Look up the wdListNumberStyle constant in the Object Browser of the Visual Basic Editor. You'll notice that there are more numbering styles than offered in the user interface. For example:

Code:
 
Sub ApplyFormattingToNumList()
Dim lt As ListTemplate
Dim s As ListTemplate
For Each s In ActiveDocument.ListTemplates
If s.Name = "tryout" Then
Set lt = s
Exit For
End If
Next s
With lt
.ListLevels(1).NumberStyle = wdListNumberStyleLowercaseTurkish
'add code for other settings and for other levels here
End With
Selection.Range.ListFormat.ApplyListTemplate lt
End Sub
Code:
Sub CreateListTemplate()
Dim lt As ListTemplate
Set lt = ActiveDocument.ListTemplates.Add(OutlineNumbered:=True, Name:=tryout)
End Sub
Note that in this simplified example I have applied the list format directly to text, while it is wiser to attach each level to a paragraph style.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote
  #3  
Old 02-12-2012, 10:20 PM
Capungo Capungo is offline How to generate special outline numbering list. Windows 7 64bit How to generate special outline numbering list. Office 2003
Novice
How to generate special outline numbering list.
 
Join Date: Feb 2012
Posts: 6
Capungo is on a distinguished road
Default That exists only in Word 2010

Mr.Blom,

First of all, thank you very much for your answer. It's my fault not to have said that I use Word 2003 and 2007. I am sorry for that. In Word 2010, you can write down a list on a blank page and convert it to a list style by the means of the user interface. The link below says that's already a new object in Word 2010:

http://msdn.microsoft.com/en-us/library/ff834895.aspx

I am using Word 2007 at home and Word 2003 at work. That's my problem. I need to create a list style (as a template maybe) and keep it to use as default numbering style anytime I need it.
Reply With Quote
  #4  
Old 02-13-2012, 12:33 PM
Capungo Capungo is offline How to generate special outline numbering list. Windows 7 64bit How to generate special outline numbering list. Office 2003
Novice
How to generate special outline numbering list.
 
Join Date: Feb 2012
Posts: 6
Capungo is on a distinguished road
Default

Mr.Blom,

Thank you very much. I consider it solved at least for Word 2010.
Reply With Quote
  #5  
Old 02-13-2012, 12:57 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline How to generate special outline numbering list. Windows 7 64bit How to generate special outline numbering list. Office 2010 32bit
Moderator
 
Join Date: Aug 2011
Posts: 3,907
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

Sorry, I didn't pay attention to the version you were using. I believe you are right: the options are not available in earlier versions of Word. :-(
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to generate special outline numbering list. Generate chart from list of text values knownunknown Excel 6 04-24-2013 01:56 AM
How to generate special outline numbering list. Page numbering special request Ulodesk Word 1 12-07-2011 05:05 PM
Outline numbering: 2.1 coming out as 1.1 Remster Word 3 12-07-2011 12:16 PM
How to generate special outline numbering list. Microsoft Word '10: Outline Numbering Help Jerry31x Word 1 03-29-2011 09:34 AM
Problems with outline numbering in Word 07 rbilleaud Word 0 08-10-2009 12:23 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 09:47 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft