...
Delphi
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
var ps: IPlanswift; begin ps := Planswift; ps.About; end; |
...
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 |