Welcome!

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

SignUp Now!

Edit command

Jun
4
0
Hi,

I am using TCC LE x64 14.0

How do I add Edit command to context menu for .btm files?
Why is it not there by default?
 
You want to end up with something like this.

1637118216668.png



If you have

Code:
v:\> assoc .btm
.btm=TCC.Batch

you could use a .REG file like this after changing the editor (and its path) to your preferred editor. Or you could use REGEDIT to manually create the Shell\Edit and Shell\Edit\Command keys and enter the appropriate data.

Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\TCC.Batch]

[HKEY_CLASSES_ROOT\TCC.Batch\Shell]

[HKEY_CLASSES_ROOT\TCC.Batch\Shell\Edit]

[HKEY_CLASSES_ROOT\TCC.Batch\Shell\Edit\Command]
@="d:\\textpad7\\textpad.exe \"%1\""

If .BTM is not associated with TCC.Batch, run TCCBATCH.BTM (in TCC.EXE's directory) and answer 'Y' when asked "Do you want to make TCC the default handler for .BTM files". Then use one of the methods above.
 

Attachments

  • 1637116944408.png
    1637116944408.png
    6.7 KB · Views: 181

Similar threads

Back
Top