Hello Gang !
I am trying to understand Class in Windev.
I guess I understand the Meaning of PUBLIC, PROTECTED and PRIVATE.
But didn't know When to put or not to put GLOBAL in front of them .
For Example
What would be the difference between these Two ?
GLOBAL PRIVATE
PRIVATE
___________________________________
or these two??
PRIVATE CONSTANT
GLOBAL PRIVATE CONSTANT
____________________________________
Same is for PUBLIC and PROTECTED too ??
Further What would be the Result if Structure , Constants and other Variables is declared Before declaring Class ??
For Example
===============
CONSTANT
cstA = "A"
End
MyClass is class
End
I am trying to understand Class in Windev.
I guess I understand the Meaning of PUBLIC, PROTECTED and PRIVATE.
But didn't know When to put or not to put GLOBAL in front of them .
For Example
What would be the difference between these Two ?
GLOBAL PRIVATE
PRIVATE
___________________________________
or these two??
PRIVATE CONSTANT
GLOBAL PRIVATE CONSTANT
____________________________________
Same is for PUBLIC and PROTECTED too ??
Further What would be the Result if Structure , Constants and other Variables is declared Before declaring Class ??
For Example
===============
CONSTANT
cstA = "A"
End
MyClass is class
End