Search found 2 matches
- Mon Jul 20, 2009 4:04 pm
- Forum: Tips
- Topic: Integrating RegJump as a TextPad tool
- Replies: 2
- Views: 9000
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 key = "HKEY ...
- Thu Jun 18, 2009 6:57 pm
- Forum: Tips
- Topic: Open containing folder
- Replies: 4
- Views: 9112
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 ...