Helping others on the forum is my hobby and I'm not a service provider therefore I don't do calls. But if you have questions that I can help you with just tag me and I will help if I can. For your opening question.
I will not give you links to AU classes or the site of Brian but I do have a link to a blog post. In that blog article, I describe how you can create an addin with Visual Studio/VB.net. Creating a button is also included in that post. (Although there is a separate post for adding icons to those buttons.) In the post, I also assume that you want to reuse ribbon tabs/panels from Inventor. If that is not the case you would need to change the "MyButton.AddButtonDefinitionToRibbon()". Insetad of using the item functions you should use the add functions something like this:
Private Sub AddButtonDefinitionToRibbon()
Dim ribbon As Ribbon = _inventor.UserInterfaceManager.Ribbons.Item("Assembly")
Dim ribbonTab As RibbonTab = ribbon.RibbonTabs.Add("DisplayName", "InternalName", "ClientId")
Dim ribbonPanel As RibbonPanel = ribbonTab.RibbonPanels.Add("DisplayName", "InternalName", "ClientId")
ribbonPanel.CommandControls.AddButton(_settingsButton)
End Sub
Now here are the links 🙂
http://www.hjalte.nl/tutorials/60-creating-an-inventor-addin
http://www.hjalte.nl/tutorials/61-adding-icons-to-your-buttons
and here you will find all the parts of the tutorial.
http://www.hjalte.nl/tutorials
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

Blog: hjalte.nl - github.com