"Jacky" <jl@[EMAIL PROTECTED]
> wrote in message news:47661e1f$1@[EMAIL PROTECTED]
> As told by Jason, yes I can find the help files, is there anyway i can
> extract the "prototypes" to a "text" file.
You could do it manually by copy-then-paste (into a text editor window) of
the function prototypes that are shown in the IDE help. Though I don't
really know why you would want to to this.
When I am writing code and I want to use a certain function for which I
can't remember the parameters for then I will often:
(1) Use [Ctrl]+[F1] on the name of the function I want to use, or find the
function via the Help:Index ([****ft]+[F1]).
(2) Read the help screen to refresh my failing memory, then copy the
function declaration from the help screen into my source file.
(3) Run though the pasted prototype, replacing its formal parameters with
the actual parameters I want to pass it.
The above perhaps sounds more complicated than it actually is, since the
whole process is very quick and easy in practice.
--
Jay
Jason Burgon - author of Graphic Vision
http://homepage.ntlworld.com/gvision


|