smart-tags

Excel Smart Tags

Can someone point me to a good tutorial for implementing Excel Smart Tags in Visual Studio? Either with C# or VB.NET. ...

How do I specify smart tags for my control?

Title says it all: If I am creating a custom ASP.NET control (or, I suppose, a Windows Forms control), how do I specify one or more Smart Tags for it, and the behavior that goes with it? I want to provide some rich designer support. EDIT: Prefer C# code, but not necessary. ...

Programmatically Enable Smart Tag in Outlook 2007

There's a "global" checkbox titled "label text with smart tags" in Outlook that enables/disables the entire list of smart tag recognizers, under Tools/Options/Mail Format/Editor Options/Proofing/AutoCorrect Options/Smart Tags. I can programmatically enable the individual recognizers in the list, but the million dollar question is, how to...

create design time controls with smart tag

Ok I have been working on this idea of a control that I have. I want the control to be able to add other controls to the form that it is on at design time. I am having a hell of a time trying to figure this out. I decided if nothing else I will just serialize to the code behind file myself. The only issue is I can't seem to get the l...

Does anyone has a working smart tag solution for autolinking bug numbers from emails?

I'm looking for a solution that will auto add hyper-links to Outlooks emails (including incoming) when the email does contain a text like "bug # 1234" or similar. There are some information on this MSDN article but I wasn't able to find any working solution so far. ...

Detecting Visual Studio Smart-tags events

Is it possible to detect with VSX when any (or a particular) smart tag event is happening? I mean, every time we rename a variable, for example, a smart tag is available that allows us to change it through a form. I'd like to know if I can access that "text is changing" event. I don't mean to have to check for myself if the text is bei...

smart tags (aka ActionList) crash in visual studio

Adding smart tags in VS2010 (or VS2008 for that matter) to my control makes VS crash. The following designer is used for the action list: internal class DataEditorDesigner : ComponentDesigner { [...] public override DesignerActionListCollection ActionLists { get { var lists = new DesignerActionListCollection(); ...

Using VS2010, is it possible to alter the size of the smart tags popup on a control?

I'm coding a control with SmartTags support. Works fine however the size of the popup is too small. Is there a way to increase it either programmatically or from the IDE itself? ...

How to add a SmartTag to Outlook 2010 ?

I would like to add smart tag support in the read message window of Outlook 2010. What's the best way of doing so? Are there examples anywhere? ...