| Macro to Specify Starting Number for Numbered ListsLast reviewed: February 5, 1998Article ID: Q135076 | 
| The information in this article applies to: 
 
 SUMMARYThis article provides a macro that can be used to restart numbering for a selection. The macro displays a prompt in the status bar, asking you to specify a starting number. The macro requires at least one unnumbered paragraph above the selected paragraphs. 
 MORE INFORMATION
 Word 7
 'Function to trap ESC key
Declare Function GetAsyncKeyState Lib "USER32"(kState As Long) As Integer
Sub MAIN
DisableInput                                   'Disable ESC canceling macro
                                               'and posting errmsg.
Dim dlg As FormatNumber : GetCurValues dlg     'Variable to hold new
                                               'sequence number.
a$ = dlg.StartAt                               'Prompt on status bar.
Line Input "Start numbering at:  ", a$         'If ESC is not pressed.
If GetAsyncKeyState(27) = 0 ThenFormatNumber .StartAt = Str$(Int(Val(a$)))     'This construction will trap
                                               'for non-integer values.
                                               'Number selected paragraphs
                                               'beginning with number
                                               'entered on status bar.
EndIf : End Sub
 Word 6
 'Function to trap ESC key
Declare Function GetAsynchKeyState Lib "USER"(KState As Integer) As Integer
Sub MAIN
DisableInput                                   'Disable ESC canceling macro
                                               'and posting errmsg.
Dim dlg As FormatNumber : GetCurValues dlg     'Variable to hold new
                                               'sequence number.
a$ = dlg.StartAt                               'Prompt on status bar.
Line Input "Start numbering at:  ", a$         'If ESC is not pressed.
If GetAsyncKeyState(27) = 0 ThenFormatNumber .StartAt = Str$(Int(Val(a$)))     'This construction will trap
                                               'for non-integer values.
                                               'Number selected paragraphs
                                               'beginning with number
                                               'entered on status bar.
EndIf : End SubWARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. 
 | 
| KBCategory: kbusage kbmacro 
 © 1998 Microsoft Corporation. All rights reserved. Terms of Use. |