1. I am adding the help menu for my add-in using Quick Tips API's but the menu is not coming as sub menu of SolidWorks.
The steps followed:
1. As the ISwQuickTips API must be implemented,
public partial class SwAddin : ISwAddin, IDisposable, ISwQuickTip
{
public SW.ISldWorks SwApp { get; private set; }
//Some code
ISwQuickTip properties and method implementation
SwApp .InstallQuickTipGuide(this);
// some code
}
It is not giving any exception but the menu is not coming.
2. Can we add our add-in help in SolidWorks help as shown in image?
Thanks
SolidworksApi/macros