Hi,
ich versuche eine Verbindung mit folgenden Code (C#) zum Stahl Module aufzubauen:
using RSTAB6;
using STEELM;
// Open R-Stab
IrsStructure RSStr = new RSTAB6.Structure();
IrsApplication RSApp = RSStr.rsGetApplication();
RSApp.rsLockLicence();
RSApp.rsShowApplication();
RSStr = RSApp.rsOpenStructure(OpenFilePath);//OpenFilePath ist ein Sting - Pfad wird weiter oben ausgewählt
//Get Structural Data of current File
IrsStructuralData RSStrData = RSStr.rsGetStructuralData(); //Oder RSTopo
//Start Steel
MODULE RSSteel = new MODULE();
RSSteel = RSStr.rsGetModule("STEELM");
Im Lila eingefärbten Teil, gibt mir Visual Studio (Express) folgenden Fehlermeldung:
Der Typ "object" kann nicht implizit in "STEELM.MODULE" konvertiert werden. Es ist bereits eine explizite Konvertierung vorhanden. (Möglicherweise fehlt eine Umwandlung.)
Wie bekomme ich trotzdem Zugriff aus das Modul???
Vielen Dank im Voraus,
Martin
ich versuche eine Verbindung mit folgenden Code (C#) zum Stahl Module aufzubauen:
using RSTAB6;
using STEELM;
// Open R-Stab
IrsStructure RSStr = new RSTAB6.Structure();
IrsApplication RSApp = RSStr.rsGetApplication();
RSApp.rsLockLicence();
RSApp.rsShowApplication();
RSStr = RSApp.rsOpenStructure(OpenFilePath);//OpenFilePath ist ein Sting - Pfad wird weiter oben ausgewählt
//Get Structural Data of current File
IrsStructuralData RSStrData = RSStr.rsGetStructuralData(); //Oder RSTopo
//Start Steel
MODULE RSSteel = new MODULE();
RSSteel = RSStr.rsGetModule("STEELM");
Im Lila eingefärbten Teil, gibt mir Visual Studio (Express) folgenden Fehlermeldung:
Der Typ "object" kann nicht implizit in "STEELM.MODULE" konvertiert werden. Es ist bereits eine explizite Konvertierung vorhanden. (Möglicherweise fehlt eine Umwandlung.)
Wie bekomme ich trotzdem Zugriff aus das Modul???
Vielen Dank im Voraus,
Martin
Kommentar