PdcCalculation.Author
Declaration
Author as String
Description
Returns the author
Notes
This property returns the user that created the calculation.
Code example
This code example returns the author of an active calculation.
Sub sGetAuthor
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.Author
set objCalc = nothing
End Sub