--- In [email protected], "Axapter"
<[EMAIL PROTECTED]> wrote:
> Does anyone have experienced in connect Axapta through Delphi using
COM ??

> Can u send me the code example ? and how to add the AxCom.dll to
Delphi ??

Go to Project -> Import Type Library, and select Axapta COM Connector.
If it's not on the list, you might have to register the DLL in
Windows.  This will give you three new components; Axapta, Axapta2,
and AxaptaParameterList.

  You'll need to use the components in AxCom to attach to the Axapta
Business Connector.

Type
  TForm1                : Class(TForm)
    Ax                  : TAxapta;
  End

...

  Try
    Ax.Logon(FsUser, '', '', FsAxaptaConfig);
    Ax.CallStaticClassMethod( .... );
  Finally
    Ax.Logoff;
  End;

-ll






YAHOO! GROUPS LINKS




Reply via email to