I am trying to instantiate an object, but can't figure out how,
exactly... Normally, I would use the .Create method of the third-
party object, but there doesn't seem to be one.
In the company's C# example, the object is declared thusly:
private iCamIrisClass m_iCamIris;
m_iCamIris = new iCamIrisClass();
I've got the declaration in my Delphi app, that was easy enough. How
do I do the instantiation? If I try new, Delphi gives me errors.
Thanks in advance!