curExt Function

Retrieves the extension used for the current company.


str curExt()

The extension for the current company.

Use this function instead of appl.company.ext to avoid a call to the server tier.

static void curExtExample(Args _arg)
{
    str s;
    ;
 
    // Sets s to the extension of the current company.
    s = curExt(); 
    print "Current extension is " + s;
    pause;
}

Community Additions

ADD
Show: