You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 3
Next »
Boolean value determining whether the Welcome to PlanSwift screen (Figure ??) is displayed. The Welcome screen requires the user to enter a Customer # and a PIN # in order to log in to the PlanSwift Professional mode (Figure ??) and not be in Viewer-only mode (Figure ??0).
When checked (true), the Welcome screen will be displayed when the software starts up, whether the software has been activated or not.
If it is not checked and the user has activated PlanSwift, then the Welcome screen will not appear at startup.
If it is not checked and PlanSwift has not been activated, then PlanSwift will load in the Viewer mode. Any attempts to command the software will cause the Activate PlanSwift Professional window to appear, requiring the entry of the Customer # and Pin # before PlanSwift can be put into its Professional mode.
API-Call:
private void Main()
{
PlanSwift planswift = new PlanSwift();
IItem settings = planswift.GetItem(@"\Settings");
IPropertyObject property = settings.GetProperty("ShowWelcome");
console.WriteLn(property.ResultAsString())
}
//or
private void Main()
{
PlanSwift planswift = new PlanSwift();
IPropertyObject property = planswift.GetProperty(@"\Settings","ShowWelcome")
console.WriteLn(property.ResultAsString)
}
procedure main;
var
planswift: IPlanSwift;
settings: IItem;
property: IPropertyObject
begin
planswift := coPlanSwift.Create();
settings := planswift.getItem('\Settings');
property := planswift.GetProperty('ShowWelcome');
WriteLn(property.ResultAsString())
end
//or
procedure main;
var
planswift: IPlanSwift;
property:IPropertyObject;
begin
planswift := coPlanSwift.Create();
property := planswift.GetProperty('\Settings','ShowWelcome');
WriteLn(property.ResultAsString())
end;
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("ShowWelcome")
Console.WriteLn(property.ResultAsString());
End Sub
//or
Sub Main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","ShowWelcome")
Console.WriteLn(property.ResultAsString)
End Sub
begin
settings := PlanSwift.getItem('\Settings');
property := settings.GetProperty('ShowWelcome');
ShowMessage(property.ResultAsString);
end
//or
begin
property := PlanSwift.GetProperty('\Settings','ShowWelcome');
ShowMessage(property.ResultAsString);
end
//or
begin
settings := getItem('\Settings');
ShowMessage(GetResultAsString(settings,'ShowWelcome'));
end
//or
begin
ShowMessage(GetResultAsString('\Settings','ShowWelcome'));
end
Figure xx
Figure ??
Figure ??