Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
This is a windows problem. You need to reset the association. IIRC, Right click, choose "Open With" and then choose Arbortext and be sure to click the box that says "Always use this program to open files of this type." (I'm paraphrasing the whole thing here..)
Try Liz's suggestion.
Know, however, that Microsoft updates can "steal" the association back. Also, some third party applications will interfere (Documentum Webtop, for example) with and/or supercede normal Windows file associations.
We lauch Arbortext Editor via a batch file in order to control a number of environment variables, Arbortext APTxxxx variables, etc. One of the things we do if FORCE WITH A BIG DAMN HAMMER the .xml association to associate with Editor. I don't recommend this unless, of course, you can't get where you're going any other way. (You can probably get by without the registry lines except the icon for XML might not be the Editor icon.)
assoc .xml=xmlfile
reg add HKEY_CLASSES_ROOT\xmlfile\DefaultIcon /ve /d "C:\Program Files\Arbortext\Editor\bin\epic.exe,0" /f
reg delete HKEY_CLASSES_ROOT\xmlfile\shell\Open /f
ftype=""
ftype xmlfile="C:\Program Files\Arbortext\Editor\bin\epic.exe" "%%1"
Please also look into the adepters mailing list. Details can be found on adepters.org. Many, many, many experienced Arbortext users answer questions there 24/7/365.
Correcting an error in my batch file code.
ftype=""
should be:
ftype xmlfile=""
This error snuck into one of my environments and I copy/pasted here before we caught/corrected it.