Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
What's the secret meaning of this piece of code?
Message
De
03/08/1997 12:14:56
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
 
 
À
03/08/1997 11:46:36
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00042899
Message ID:
00042989
Vues:
39
>>A few lines about this discussion. It's not true that the code does nothing. It releases a variable that may be declared local or public elsewhere.
>
>Params are PRIVATE in FoxPro. It means that if you RELEASE a parameter variable, this is released locally, regardless if the same variable exists on a higher level. So, it doesn't make any difference if this is the main ptogram or a called one.
>
>BTW, Barbara solved the "mistery": the programmer came from Clipper and in Clipper params are LOCAL and not PRIVATE.
>
>>Also you say it's at the beginning of a main program. But every main program could be a procedure for another main program that you forgot that you used before. So it makes it a lower call. Think of this scenario :
>>* Anothermain.prg
>>Cmd_param = doacheck()
>>do main.prg with Cmd_param
>>if type("cmd_param") = "U" && Released ?
>> ........
>>endif
>>
>>* This type of code also strange could be used in copy protection.
>>Cetin
>
>How can it be used? I don't see it. :(
>
>Vlad

Hey you're talking about only VFP ? What happened to line saying an old program written in 2.6. Should I go to a doctor for my eyes ?
Try it in FP 2.6 and older versions and see how can you release a public var passed as a parameter. Here is the code to try :

public myvar
myvar = 12
do main with myvar
do second

proc main
parameters myvar && You think it's private and secure now ?
myvar = 25
release myvar && You think again you're only releasing private myvar ?

proc second
? myvar && Which myvar - declare it first says FP

Still there are programmers like us that should support old FP versions too. Clipper is not the only one doing it that way. And I think you were talking about version 2.6
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform