SAP2000 ?preprocessor?
SAP2000 ?preprocessor?
(OP)
hi,
does anybody know if there is any way to automatically launch a sap2000 analysis from another program?
thanks a lot
does anybody know if there is any way to automatically launch a sap2000 analysis from another program?
thanks a lot





RE: SAP2000 ?preprocessor?
Are you writing a new pre-processor for SAP and trying to have SAP act as only an analysis engine?
I *think* the SAP analysis engine is within the executable and not in a dll, so you may have some trouble communicating directly with the engine.
If all you want to do is launch the executable from within your program, it should not be difficult. The implementation specifics will depend on the language you are using. If you are using any Microsoft language, www.msdn.com (Microsoft Developer's Network) is an excellent resource.
RE: SAP2000 ?preprocessor?
what i am actually trying to do, is creating a Macro (using excel or whatever) that allow me to launch SAP2000 wit the input parameters i modify at each step
it could be a
-batch file
-excel macro
-...whatever
can you help me?
RE: SAP2000 ?preprocessor?
I do know that you can perform basic operations such as launching or killing an application. The AppActivate statement works like this:
Dim MyAppID, ReturnValue
MyAppID = Shell("C:\sap2k\sap2k.exe", 1)
AppActivate MyAppID
Hope this helps.