The usual way to do it is store the current setting in a variable and then use it afterwards
Code:
Sub WindowViewSettings()
'Macro to fix occasional "tiny cursor" error
With ActiveWindow.View
.Type = wdPrintView 'Print Layout View
iPref = .Zoom.Percentage
.Zoom.Percentage = 500 'Fix tiny cursor bug in Word 2003
.Zoom.Percentage = iPref 'Specify user's percentage
End With
End Sub