Options

Navision and MS-Agent (e.g. 'Genie')

sdvsdv Member Posts: 7
edited 2000-07-08 in Navision Financials
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

Comments

  • Options
    Luc_VanDyckLuc_VanDyck Member, Moderator, Administrator Posts: 3,633
    Excuse my ignorance ... but what is MS-Agent?
    No support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)
  • Options
    sdvsdv Member Posts: 7
    For more information about MS-Agent, see:
    http://www.microsoft.com/msagent

    and click:

    Try out Microsoft Agent.

  • Options
    SteveSteve Member Posts: 81
    I have automated Peedy in Navision. If you want specific help, I have a program that will read a MS-Agent and display a list of keywords. Once you have the keywords the automation is easy.
    E-MAIL me directly ----> SFlorko@gemko.com
    Steve
  • Options
    peter_van_lingenpeter_van_lingen Member Posts: 2
    steve,

    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
  • Options
    sdvsdv Member Posts: 7
    Here is the code you need to use MS-Agent in Navision Financials. Very important is that you use an english/u.s. windows version or else the speechengine won't work. Maybe in time I'll be able to find out how I can solve that problem.

    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;
Sign In or Register to comment.