Author Topic: Macro to run clearcase version tree  (Read 10889 times)

billmcf

  • New Community Member
  • Posts: 1
  • Hero Points: 0
Macro to run clearcase version tree
« 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');
}


hs2

  • Senior Community Member
  • Posts: 2762
  • Hero Points: 292
Re: Macro to run clearcase version tree
« Reply #1 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