...
- Create a New Forms Application
- Add a PlanSwift to the References (Planswift_Tlb)
- Add a button to the form
- Copy code below to the onclick event of the button
- Compile and run
API
...
Calls
Delphi
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
var
ps: IPlanswift;
begin
ps := Planswift;
ps.About;
end; |
C#
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
public partial class MyForm : Form
{
// PlanSwift Object
private PlanSwift Planswift { get; }
public MyForm()
{
InitializeComponent();
// Instantiate new PlanSwift Object
Planswift = new PlanSwift();
}
private void BtnShowAbout_Click(object sender, EventArgs e)
{
// Show About Page in PlanSwift
Planswift.About();
}
} |
VB/VBA (OLE)
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
Coming soon
|
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
Coming soon |