Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

Overview

Sample Plugin 1 is a simple example, created using Visual Basic 2005, which demonstrates the development of SAP2000 plugins. The plugin creates a new model, converts a line of text into frame objects, then adds these objects to the model. For testing purposes, if the text 'crash' is entered, and error message will generate.

...

Answer: The plugin is already compiled as the DLL library which follows:

Code Block

obj/Release/Sap2000Plugin_CSI_Sample1.dll

...

How is the regsvr32 error, shown below, resolved when registering the plugin?

 

 

Answer: The plugin should be registered using regasm, instead of regsvr32, by running the following command:

Code Block

c:\windows\Microsoft.NET\Framework\v2.0.50727\regasm /codebase /tlb /verbose  Sap2000Plugin_CSI_Sample1.dll

Warning RA0000, shown below, occurs when using regasm to register the plugin. How is this resolved?

 

 

Answer: The RA0000 warning may be ignored since the plugin will still function properly.

...