Hello,
Is there anybody that has experience with implementing MS-Agent in Navision Financials using the Automation server.
I am halfway there (I can connect to the MS-Agent Server) but I keep getting error messages (from Navision) when I try to access the Ms-Agent character.
I would be very happy with an example.
With regards,
Charl van der Mooren
0
Comments
http://www.microsoft.com/msagent
and click:
Try out Microsoft Agent.
E-MAIL me directly ----> SFlorko@gemko.com
PLease post your agent tool and navision code in the download area so we all can build further from your solution.
Thanx,
Peter
p.van.lingen@level-it.nl
The ms-agent files and drivers are available at www.microsoft.com/msagent.
Have fun with it !!
Charl
Globals:
(Name ; DataType ; Subtype)
Server ; Autom. ; 'MS Agent Control 2.0'.Agent
Peedy ; Autom. ; 'MS Agent Control 2.0'.IAgentCtlCharacter
Code:
On Push ()
CREATE(Server);
Server.Connected := TRUE;
Server.Characters.Load('Peedy','c:\windows\msagent\chars\peedy.acs');
Server.Characters.Item('Peedy').Show;
Server.Characters.Item('Peedy').MoveTo(500,400);
Peedy := Server.Characters.Item('Peedy');
Peedy.Speak('What do you want me to say?');
Peedy.Hide;