Hallo Zusammen,
wie lassen sich die zwei Zeilen in Delphi konvertieren?
{MS Visula C++ 6.0}
IiwAdress iwAdress;
iwAdress.AttachDispatch( iwGeoAdress.GetAdress(), FALSE );
{Delphi}
???????????????????
CreateDispatch habe ich so kovertiert:
Code:
{MS Visula C++ 6.0}
IiwGeoPoint iwGeoPoint;
iwGeoPoint.CreateDispatch("IwGeoObjects.iwGeoPoint.1");
{Delphi}
var
iwGeoPoint: IiwGeoPoint;
begin
iwGeoPoint := CreateComObject(CLASS_iwGeoPoint) as IiwGeoPoint;
iwGeoPoint := nil;
Hat jemand eine Idee?
Gruß Gitta.