Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
languagec#delphi
themeRDark
firstline1
titleC#Using IItem Object Model
linenumberstrue
collapsetrue
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
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
//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
languagedelphic#
themeRDark
firstline1
titleDelphiUsing IItem Object Model
linenumberstrue
collapsetrue
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
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
private void Main()
{
	PlanSwift planswift = new PlanSwift();
	IPropertyObject property := planswift.GetProperty('@"\Settings'",'"ShowWelcome'"); 
	console.WriteLn(property.ResultAsString()) 
end;ResultAsBoolean)
}

VB/VBA (OLE)

Code Block
languagevb
themeRDark
firstline1
titleVB \ VBA (OLE)Using IItem Object Model
linenumberstrue
collapsetrue
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
languagevb
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
Sub Main()
//or  Sub Main() 	Dim planswift = CreateObject("PlanSwift9.PlanCenter")
   	 Dim nameProperty = planswift.GetProperty("\Settings","ShowWelcome")
	    Console.WriteLn(property.ResultAsStringResultAsBoolean)
End Sub
Code Block
languagedelphi

Pascal Scripting (OLE)

Code Block
themeRDark
firstline1
titlePlanSwift ScriptingItem Object Model
linenumberstrue
collapsetrue
begin
    	settings := PlanSwift.getItem('\Settings');
	property   := settings.GetProperty(ShowMessage(GetResultAsBoolean(settings,'ShowWelcome');
	ShowMessage(property.ResultAsString);
end

//or

begin
	property := PlanSwift.GetProperty


Code Block
themeRDark
titleRoot Object Model
linenumberstrue
collapsetrue
begin
   ShowMessage(GetResultAsBoolean('\Settings','ShowWelcome');
	ShowMessage(property.ResultAsString);
end
//or

begin
	

Pascal Scripting

Code Block
themeRDark
firstline1
titleItem Object Model
linenumberstrue
collapsetrue
begin
    settings := PlanSwift.getItem('\Settings');
	ShowMessage(GetResultAsString(settings,    property := settings.GetProperty('ShowWelcome');
    ShowMessage(property.ResultAsBoolean);
end

//or

begin
   ShowMessage(GetResultAsString


Code Block
themeRDark
titleUsing the PlanSwift Object Model
linenumberstrue
collapsetrue
begin
    property := PlanSwift.GetProperty('\Settings','ShowWelcome');
    ShowMessage(property.ResultAsBoolean);
end

Image Removed

             Figure 1

Image Removed

            Figure 2

Image Removed

            Figure 3

Image Removed

...