I set :
private sub command_button click()
[VBA]dim doc as document
set doc = documents.add
[/VBA]
end sub
How can I preserve variable doc-value so that in other subs will be recognizable
(lets say doc is nov document1 and when sub ends it should stay doc = document1)
Thnx