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.API-Call:
...
Image Added
Figure 1
Image Added
Figure 2
Image Added
Figure 3
Image Added
Figure 4
API Calls
Delphi
Code Block |
---|
language | c#delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | C#Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
private void Main()
{
PlanSwiftprocedure main;
var
planswift: IPlanSwift;
settings: IItem;
property: IPropertyObject
begin
planswift := new PlanSwiftcoPlanSwift.Create();
IItem settings := planswift.GetItemgetItem(@"'\Settings"');
IPropertyObject property := settingsplanswift.GetProperty("'ShowWelcome"');
console. WriteLn(property.ResultAsString()) }
end |
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
//or
private void Main()
{
PlanSwiftprocedure main;
var planswift: IPlanSwift;
property:IPropertyObject;
begin
planswift := new PlanSwiftcoPlanSwift.Create();
IPropertyObject property := planswift.GetProperty(@"'\Settings"',"'ShowWelcome"');
console. WriteLn(property.ResultAsString()) }
end; |
C#
Code Block |
---|
language | delphic# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | DelphiUsing IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
procedureprivate main;
var
planswift: IPlanSwift;
settings: IItem;
property: IPropertyObject
begin
planswift := coPlanSwift.Createvoid Main()
{
PlanSwift planswift = new PlanSwift();
IItem settings := planswift.getItemGetItem('@"\Settings'");
IPropertyObject property := planswiftsettings.GetProperty('"ShowWelcome'");
console.WriteLn(property.ResultAsStringResultAsBoolean())
end
//or
procedure main;
var
planswift: IPlanSwift;
property:IPropertyObject;
begin
planswift := coPlanSwift.Create} |
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
private void Main()
{
PlanSwift planswift = new PlanSwift();
IPropertyObject property := planswift.GetProperty('@"\Settings'",'"ShowWelcome'");
console.WriteLn(property.ResultAsString())
end;ResultAsBoolean)
} |
VB/VBA (OLE)
Code Block |
---|
language | vb |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | VB \ VBA (OLE)Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
Sub main()
Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim settings = planswift.GetItem("\Settings")
Dim property = settings.GetProperty("ShowWelcome")
Console.WriteLn(property.ResultAsStringResultAsBoolean());
End Sub |
Code Block |
---|
language | vb |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
Sub Main()
//or Sub Main() Dim planswift = CreateObject("PlanSwift9.PlanCenter")
Dim nameProperty = planswift.GetProperty("\Settings","ShowWelcome")
Console.WriteLn(property.ResultAsStringResultAsBoolean)
End Sub |
Code Block |
---|
language | delphi |
---|
Pascal Scripting (OLE)
Code Block |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | PlanSwift ScriptingItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
settings := PlanSwift.getItem('\Settings');
property := settings.GetProperty(ShowMessage(GetResultAsBoolean(settings,'ShowWelcome');
ShowMessage(property.ResultAsString);
end
//or
begin
property := PlanSwift.GetProperty |
Code Block |
---|
theme | RDark |
---|
title | Root Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
ShowMessage(GetResultAsBoolean('\Settings','ShowWelcome');
ShowMessage(property.ResultAsString);
end
//or
begin
|
Pascal Scripting
Code Block |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
settings := PlanSwift.getItem('\Settings');
ShowMessage(GetResultAsString(settings, property := settings.GetProperty('ShowWelcome');
ShowMessage(property.ResultAsBoolean);
end
//or
begin
ShowMessage(GetResultAsString |
Code Block |
---|
theme | RDark |
---|
title | Using the PlanSwift Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
begin
property := PlanSwift.GetProperty('\Settings','ShowWelcome');
ShowMessage(property.ResultAsBoolean);
end |
Image Removed
Figure 1
Image Removed
Figure 2
Image Removed
Figure 3
Image Removed
...