To open any link in a new tab, preserving your position in the current article, just hold down the <CTRL> key on your keyboard before clicking the link or click using your mouse wheel.

NewJobEx

NewJobEx



Starts a "new" job in the PlanSwift application.



Syntax:

Procedure: NewJobEx(const JobName: WideString = ''): Wordbool;


API Calls

Delphi

Using PlanSwift Object Model
PlanSwift Code:


var
  bJobStarted: boolean;
begin
  bJobStarted := PlanSwift.NewJobEx;
end;


FreshDesk Code:

procedure TForm1.psNewJobEX(Sender: TObject);
var
  ps: IPlanSwift;
begin
  //Create the PlanSwift Interface
  ps := CoPlanswift.Create;
  //Open The "New Job" Dialog box
  ps.NewJobEx('My Test Job');
  // Free the Planswift Interface
  ps := nil;
end;

C#

Using IItem Object Model
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}
Using PlanSwift Object Model
Coming soon

VB/VBA (OLE)

Using IItem Object Model
Coming soon


Using PlanSwift Object Model
Coming soon


Copyright 2023 ConstructConnect