Create basic addon for Archicad 22 - archicad

I install Archicad 22 and Visual Studio 2017. I have Developer API for Archicad. I try to see how it works the example from Archicad Development Kit but when i import from example DC_test is Visual Studio i recive errors.
Can you help me please how to connect Visual Studio example to Archicad? Just bacis .. a line for example.
I want to learn C++ and C#
I want to create an addon like a "eptar reinforcement"
I try to decompile but i cant
Sorry for my bad english.
bogdanproiectare#gmail.com
Thank you very mutch
EDIT:
I want to create an addon as in the image with ARCHICAD, image 3.
Should not there be an open window in the visual studio as in C #? Which can you edit?
Or does Visual Studio somehow connect to Archicad, make changes and they appear in Archicad? In addon?
Image 1
Image 2
Image 3
Image 4
Image 5

Related

Visual Studio 2017 Xaml intellisense not working with tag "Style"

I have Visual Studio 2017 rel. 15.4.2 with Xamarin 4.7.10.33 (s.o. Windows 7 64 bit).
I create a simple app for Android and iOS and I try to use styles resources.
When I try to define a style inside a ResourceDictionary (in Application.Resources), the intellisense do not show tag "Style".
I have to insert it manually and I don't see nothing oh style's properties.
I see only this
How can I solve this problem?
Thanks in advance
I can reproduced this in my side and I have reported it to the VS Product Team to seek for a better support, please check this: Visual Studio 2017 Xaml intellisense not working with tag “Style”
and you can add your comments and vote it, then you can get any updates from the VS Product Team engineers to know the detail progress.

Reporting template in Visual Studio 2017

The Reporting template seems missing in VS2017 (I am using Visual Basic). Any way to get it back?
I have already tried installing SQL Server Data tools and the rdlc extension from the marketplace, but it still doesn't show up.
The template is available in the Add New Item window. Select Visual C# and then look for the Report and Report Wizard templates. These templates are only visible under Visual C#, not under any subitem.
Try updating ReportViewer to version 14.0.0.0 and installing Microsoft.RdlcDesigner. This worked for me for Visual C# and then just like J.Bunch said there is no sub item Reporting like there was before so you just scroll down thorough all items. Also try this although the example is for C# I think it should at least help you with VB.Net as well. Hope it helps.

Visual Studio 2013 update 3, Designer won't load

I have the following situation. I installed Visual Studio Update 3 last night. Now I have a problem that when I open my projects (Universal Apps) which i have done while i had update 2, my designer won't load and it throws an exception:
Does anyone knows how to solve this? I guess this is not a bug because probably everything was tested by Microsoft, and this is not RC update. Im about to delete this update if i don't figure out the solution. I'm guessing that it might have to do with xaml if anything changed?
I figured out from the connect bulletin that there are two folders in your Windows profile that need to have their contents cleared out in order for the Visual Studio designer to work with Visual Studio 2013 Update 3.
The two folders are:
For Blend: AppData\Local\Microsoft\VisualStudio\12.0\Blend\ShadowCache
For Visual Studio 2013: AppData\Local\Microsoft\VisualStudio\12.0\Designer\ShadowCache
Don't delete these folders, just delete the content of those folders and you will be back to working happily with the XAML designer again.
Clearing the ShadowCache did not resolve this for me. Found a clue from an MSDN article and checked the event viewer for exceptions, look for XDesProc.exe.
The problem was an out of date driver for my graphics card.
Once that was updated all started working again

I upgraded a Visual Basic 6 project to Visual Basic 2008 project and got unknown errors

I've recently upgraded my project to Visual Basic 2008 and I'm getting the following errors which I cannot identify, I hope someone can help:
AxThreed.AxSSCommand is not defined
AxActiveInput.AxSSDropDownEdit is not defined
AxPVTEXT3DLib.AxPVText3D is not defined
Any idea what this is and how to fix it?
It looks these are references to 3rd Party ActiveX controls. ActiveThreed, Protoview Date Control, etc
You may need to Add/Re-Add the relevant control to your project. Right click on the toolbox so select the items to want to use. If you don't see them in the list to may need to register/re-register them on that machine
Have a look at this page for more info: http://msdn.microsoft.com/en-us/library/ms973200.aspx
Number 3 here seems to indicate how to fix the problem... I believe some of your controls are not loading.

How can I use a DLL from one project in a second project in Visual Studio 2010 using vb.net

I am working with Visual Studio 2010 on a Windows 7 64-bit system. I am coding in vb.net. I am trying to use the SpreadsheetGear DLL (D:\VS2010Code\Report Depository\Bin\SpreadsheetGear.dll) in my DashInApps (D:\TWhitsett\DashInApps) project to load my output data to Excel. Can someone assist and guide me in the right direction to get this done?
Right click on your project and click 'Add Reference'. Then point to the SpreadsheetGear DLL in question. You can't just put it in the bin directory and expect it to work without loading it into the project first.