Search found 2 matches

by ssmith22x0
Mon Jul 20, 2009 4:04 pm
Forum: Tips
Topic: Integrating RegJump as a TextPad tool
Replies: 2
Views: 11038

Re: Integrating RegJump as a TextPad tool

If you want to roll your own RegJump... This is for vb6-. I use this version in a multi purpose utility. This was originally adapted from vbs code.

Private Sub Main()
Dim WshShell As WshShell, key$

On Error Resume Next

Set WshShell = New WshShell
key$ = Trim$(Command())
If key = "" Then ...
by ssmith22x0
Thu Jun 18, 2009 6:57 pm
Forum: Tips
Topic: Open containing folder
Replies: 4
Views: 11565

Re: Open containing folder

I should have thought of that a very long time ago: what a great tip, THANK YOU!!! Let me return the favor. This little bit of code has saved me 1,000's of key stokes over the years...

1. Write up something like the 6 lines of VB6 code below. Then, compile it to CopyPath2Clipboard.exe into any dir ...