一、安装控件
在C++Builder ide中选择菜单component,import activex control——import Activex下的列表框中
选择microsoft agent control 2.0(version 2.0),点击按钮install——在install对话框中点击
按钮ok——在confirm对话框中点击按钮yes——在对话框中点击按钮ok。至此,agent控件被添加到
C++Builder组件板activex页上。
二、具体代码
在头里加入:
bool load;
WideString wact;
BSTR act;
IAgentCtlCharacterExPtr numan;
TVariantInParam talk,path;
在程序中加入:
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
load=false;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
if(load==false)
{
wact="Merlin";
act=wact;
char tmp[100];
GetWindowsDirectory(tmp,100);
path=AnsiString(tmp)+"//MSAGENT//CHARS//MERLIN.ACS";
try
{
Agent1->Characters->Load(act,path);
}
catch(...)
{
ShowMessage("不能正常载入莫林助手!");
return;
}
numan=Agent1->Characters->Character(act);
numan->Show(0);
talk="大家好,我是莫林助手,有什么疑问尽管问我好了!";
numan->Speak(talk,"");
load=true;
}
else
ShowMessage("莫林助手已经载入了,请不要重复加载!");
}