View Single Post
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

see response in .programming

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Davids" wrote in message
...
Hi all!

I work with Excel functions and I want write descpription for the function
and for its parameter (like the Excel's Sum() function).
For the function I use:

public function myFunct(p1 as string) as string
Attribute myFunct.vb_Description="Description of myFunct"
' ...

myFunct = "Hello!"
end function

How it's possible to write the description for p1?

Thanx in advance!

Davids