Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
One useful behaviour unsupported
Message
From
22/10/2004 03:52:01
 
General information
Forum:
Visual FoxPro
Category:
Visual FoxPro Beta
Miscellaneous
Thread ID:
00953256
Message ID:
00953646
Views:
15
Hi sergey,

Well, we hope that someone of the VFPT has a little of charity and it corrects it.

Fabio

>Hi Fabio,
>
>It looks like a bug to me. There's no documented limitations on how you can or cannot format parameters in the methods. BTW, I don't use inline comments at all because they make code less readable.
>
>>Because VFP don't support ( at IDE level )
>>an help of development of the application
>>( where i can add my development description, my classes and methods,
>>VFP and my bugs, comment ... )
>>
>>Then I try to describe the method's parameters within the program.
>>
>>Example;
>>on a class i define a myMethod, like this:
>>
>>* myMethod
>>LPARAMETERS   ;
>>   parName1   ; && IN      is the name of the ....
>>,  parName2   ; && IN/OUT  is the partial sum, add other values ....
>>,  aParName3    && OUT     a array where put ....
>>
>>... code
>>
>>
>>Now, when i subclassing this class,
>>I expected that VFP preserve the parameters layout with comments.
>>
>>But this does not happen, and VFP cuts the parameters after the first comment.
>>
>>Reassuming:
>>
>>
>>* This is supported partially
>>PARAMETERS   ;
>>   parName1   ;
>>,  parName2   ;
>>,  aParName3    && OUT    a array where put ....
>>
>>* but it is show with a single line in subclassed method
>>
>>LPARAMETERS   parName1,parName2,aParName3 && OUT    a array where put ....
>>
>>* This is not supported
>>PARAMETERS   ;
>>   parName1   ;
>>,  parName2   ; && IN/OUT  is the partial sum, add other values ....
>>,  aParName3  ; && OUT    a array where put ....
>>
>>* and it is cut after the first comment
>>
>>LPARAMETERS   parName1,parName2 ; && IN/OUT  is the partial sum, add other values ....
>>
>>
>>Sin!
Previous
Reply
Map
View

Click here to load this message in the networking platform