[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
declare_field_dupes
Syntax:
declare_field_dupes()
- No calling parameters.
Generates:
Private declarations for memvar duplicates of all input
fields. The declaration is done block-style, i.e.
private x,y,z... with semicolon continuations to make
the source readable. Also, if the total statement
length goes over 240 characters, a new 'private'
statement is generated. Note that if you're generating
for Clipper, this break, to avoid the 256 character per
line limit, isn't necessary.
Returns:
Nothing.
Example:
This function writes code for all input fields in the
general form of "m"+ field.name . To call it, use:
<<declare_field_dupes()>>
which will generate, say, for 5 fields on the form:
PRIVATE ;
mfield_1,mfield_2,mfield_3,mfield_4, ;
mfield_5
Remember that this function is GLOBAL! To declare
memvar dupes for specific boxes, use the function
declare_field_dupes_in_box(<box_obj>).
Library:
VARFUNS.TLB
Notes:
None.
See Also:
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson