PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → Static Method of Class
Static Method of Class
Started by Mark, Jul., 15 2008 12:38 PM - 1 reply
Posted on July, 15 2008 - 12:38 PM
Hi folks,
Can anyone explain, when the windev help mentions "Static Method of a Class" what static actually means? Cannot find an explanation to this in the Windev help anywhere.
Mark
Posted on June, 11 2019 - 4:31 PM
You can use "GLOBAL" Parameter.
For example:

In a class "Test" you declare:
PROCEDURE GLOBAL MethodTest()

in your project, you can call this method without an istance:
Test.MethodTest()