Tim,
Thanks for the suggestion. While the suggestion did not work because the called method cannot have a string literal as an argument, your post prompted me to use constants to define the values I wanted to pass, making the code much neater.
method ShowHints(const Hint String)
message(Hint)
HintText = Hint
HintBox.visible = true
endMethod
Then called it with predefined constants
ShowHint(Report01) where Report01 is a constant declared at the form level.
Thanks Again,
Stephen