Code Editor
Refine your logic. View Reference →
The Test Runner is your rapid prototyping and debugging cockpit. It allows you to execute any function or subroutine from your compiled bytecode in a sterile environment, ensuring your logic is flawless before you ever touch a spreadsheet or document.

Testing in VBA Padlock Studio is significantly faster than testing in Office because it bypasses the application overhead.
Pass multiple arguments to your routines using a simple comma-separated format:
| Data Type | Input Example | Notes |
|---|---|---|
| Numeric | 42, 3.1415 | Supports integers and floating points. |
| String | "VBA Padlock" | Wrap text in double quotes. |
| Boolean | True, False | Case-insensitive logical values. |
| Mixed | 101, "Admin", True | Separate multiple arguments with commas. |
Code Editor
Refine your logic. View Reference →
Script Functions
Check return type requirements. View Reference →