0

I have made a Button addin for ArcMap in Visual Studio 2010, but I don't know how to deploy it.

I tried debugging it from ArcMap but nothing happens.

1
  • Deploy or debug? Commented Oct 8, 2012 at 2:38

1 Answer 1

5

For deploying without any setup tool, double-click the *.esriAddIn file. This file could be found in the debug folder, after build the project in Visual Studia 2010. Add-ins for ArcGIS Desktop 10

For deploying a custom component using a setup tool: How to deploy a custom component using a setup project

4
  • @ Emi :: Thanks for your help, the suggestion was really helpful. Commented Oct 8, 2012 at 4:58
  • Now i want to create an addin which launches some windows by clicking a button I've deployed in ArcMap, can you help me with that. Commented Oct 8, 2012 at 5:19
  • arcmap add-in button has "OnClick" event. you can show your form or window in this event. [sample code:] protected override void OnClick() { Form1 form = new Form1(); form.ShowDialog(); } Commented Oct 8, 2012 at 6:36
  • click on the right sign beside the answer(not comment) Commented Oct 8, 2012 at 8:40

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.