Topic RSS10:42, EET
October 27, 2014
OfflineI’m using C++ Builder with the Sentrol SDK and I can’t define the OnError event because when I compile an error ocurred with this event. I wasn’t able to figure out the origin of this error. The error wich appears is:
[bcc32 Error] Model_ServerOPC.cpp(88): E2034 unable to convert ‘void (_fastcall * (_closure )(TObject *,const EPsOPCError *))(TObject *,const EPsOPCError *)’ in ‘TPsOPCErrorEvent’
I post the object code I use for the event declaration:
Header File
class ServerModel {
…
public:
…
void __fastcall ServerOPCError(TObject* Sender, const EPsOPCError* ErrorObject);
…
};
Code File
void ServerModel::addEvents() {
…
this->opcServer->OnError = ServerOPCError; //Here is when the compiler arise the error
…
}
void __fastcall ServerModel::ServerOPCError(TObject* Sender, const EPsOPCError* ErrorObject) {
ShowMessage(“Error”);
}
These error doesn’t appear when I define the error event on design time. What I’m missing?
1 Guest(s)

Log In
Register