S
sos00
Hi guys,
is it any method to get access to Undo Stack of Word ?
Thanks.
is it any method to get access to Undo Stack of Word ?
Thanks.
sos00 said:Hi guys,
is it any method to get access to Undo Stack of Word ?
Thanks.
You can clear the entire stack, or Undo n number of items.is it any method to get access to Undo Stack of Word ?
sos00 said:Hi guys,
is it any method to get access to Undo Stack of Word ?
Thanks.
You can get is the captions in the combo box' list:
Dim myC As CommandBarComboBox
Dim i As Long
Set myC = CommandBars.FindControl(ID:=128)
For i = 1 To myC.ListCount
Debug.Print myC.List(i)
Next i
Klaus Linke said:You can get is the captions in the combo box' list:
Dim myC As CommandBarComboBox
Dim i As Long
Set myC = CommandBars.FindControl(ID:=128)
For i = 1 To myC.ListCount
Debug.Print myC.List(i)
Next i
Regards,
Klaus