ShowWelcome
Boolean value determining whether the Welcome to PlanSwift screen (Figure 1) 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 2) and not be in Viewer-only mode (Figure 3).
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 (Figure 3). Any attempts to command the software will cause the Activate PlanSwift Professional window (Figure 4) to appear, requiring the entry of the Customer # and Pin # before PlanSwift can be put into its Professional mode.
       Figure 1
      Figure 2
      Figure 3
      Figure 4
API Calls
Delphi
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;
C#
private void Main()
{
PlanSwift planswift = new PlanSwift();
IItem settings = planswift.GetItem(@"\Settings");
IPropertyObject property = settings.GetProperty("ShowWelcome");
console.WriteLn(property.ResultAsBoolean())
}
private void Main()
{
PlanSwift planswift = new PlanSwift();
IPropertyObject property = planswift.GetProperty(@"\Settings","ShowWelcome")
console.WriteLn(property.ResultAsBoolean)
}
VB/VBA (OLE)
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("ShowWelcome")
Console.WriteLn(property.ResultAsBoolean());
End Sub
Sub Main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","ShowWelcome")
Console.WriteLn(property.ResultAsBoolean)
End Sub
Pascal Scripting (OLE)
begin
settings := getItem('\Settings');
ShowMessage(GetResultAsBoolean(settings,'ShowWelcome'));
end
begin
ShowMessage(GetResultAsBoolean('\Settings','ShowWelcome'));
end
Pascal Scripting
begin
settings := PlanSwift.getItem('\Settings');
property := settings.GetProperty('ShowWelcome');
ShowMessage(property.ResultAsBoolean);
end
begin
property := PlanSwift.GetProperty('\Settings','ShowWelcome');
ShowMessage(property.ResultAsBoolean);
end