- Aug
- 2,799
- 144
Please find attached the file VBScript.zip
It contains;
VbScript.dll is a plugin that works on my
Windows 10 [Version 10.0.19045.7184] system
under TCC 36.00.42 x64
Template.vb is a sample file,
showing how to run a .vb .NET file using the VBScript plugin.
Joe
It contains;
Code:
E:\...\CsScript>zip /v vbscript.zip
2026-05-10 14:18 12,800 59% VbScript.dll
2026-05-10 14:20 5,100 71% template.vb
VbScript.dll is a plugin that works on my
Windows 10 [Version 10.0.19045.7184] system
under TCC 36.00.42 x64
Template.vb is a sample file,
showing how to run a .vb .NET file using the VBScript plugin.
Code:
U:\>vbscript
VBSCRIPT error: filename required
Usage: VBSCRIPT filename.vb [arg1 arg2 ...]
Code:
U:\>vbscript template.vb 10 20 30
Arguments received:
args(0) = 10
args(1) = 20
args(2) = 30
Sum: 10 + 20 = 30
Product: 10 * 20 = 200
String Examples:
Original: 10
Upper: 10
Lower: 10
Length: 2
Today's Date: 2026-05-10
Current Time: 10:38:12
Circle with radius 5: Area = 78.54
Is 121 a palindrome?
Yes
Names with length >= 4:
Three
TCC PShell get-date: May 10, 2026 10:38:12 AM
TCC PShell 2026-1960: 66
Original: 1, 2, 3, 4, 5
Squared: 1, 4, 9, 16, 25
10+12+13+14+14+18+20+21+24+30+46+50
Joe