Versions Compared

Key

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

NewJobEx


...

Starts a "new" job in the PlanSwift application.

...

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


API

...

Calls

Delphi

Code Block
languagedelphi
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
collapsetrue
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#

Code Block
languagec#
themeRDark
firstline1
titleUsing IItem Object Model
linenumberstrue
collapsetrue
public class PlanswiftApi
{
    private PlanSwift Planswift { get; }
    public PlanSwiftApi()
    {
        Planswift = new PlanSwift();
    }
}


Code Block
languagec#
themeRDark
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Coming soon

VB/VBA (OLE)

Code Block
languagevb
firstline1
titleUsing IItem Object Model
linenumberstrue
Coming soon



Code Block
languagevb
firstline1
titleUsing PlanSwift Object Model
linenumberstrue
Coming soon