Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
What is the last letter in the word "SlickEdit":
How many LETTERS are in the following? "a1b2c3":
Which number is missing?  "12345689":

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: hs2
« on: July 20, 2006, 11:19:03 AM »

_command void ccvtree () name_info (','READ_ONLY_ARG2|EDITORCTL_ARG2)
{
   _str cmdline="clearvtree.exe " maybe_quote_filename(p_buf_name);
   shell(cmdline,"AP");
}

HS2
Posted by: billmcf
« on: July 20, 2006, 09:47:08 AM »

As a macro novice, I was attempting to add an additional menu item to the default ClearCase menu list. This bit is OK. But I wanted to invoke the ClearCase version tree dialogue for the current file. It doesn't work within slick edit and I don't understand why.

Here's wat I have. All help welcome.

_command VersionTree() name_info(','VSARG2_MACRO|VSARG2_MARK|VSARG2_READ_ONLY|VSARG2_REQUIRES_MDI_EDITORCTL)
{
   _macro('R',1);
   execute('C:/Program Files/Rational/ClearCase/bin/clearvtree.exe %F');
}