Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

New additions to v29 that I use the most

Aug
1,917
68
Here are several new additions to v29 that I am using the most.

PRINTF
- formatting output has become quite easy with this new command
Code:
set ppp=%{vb CreateObject("jlcutils.clsmath").ppp(6.59)}
printf "%8.2f" %ppp
set ppp=

Multiple Clipboards
- TCC creates the temporary files for me
- Functions have been updated to use multiple clipboards

@FILEDATE/@FILETIME
- Supports filenames on HTTP/S sites

START
/UNELEVATED
- I always run TCC as elevated.
/UNELEVATED makes testing easier.

%{}
I call VBScript functions frequently in my .btm's:
Code:
echo %{vb CreateObject("jlcutils.clsmath").ppp(6.59)}

is much more readable for me than

Code:
echo %@execstr[vb CreateObject("jlcutils.clsmath").ppp(6.59)]

Also, much less typing, especially at the command line.

REPEAT
- Less typing to run a command multiple times.

Joe
 
Back
Top