- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Sử dụng Microsoft Agent in Windows 7, 10 Winform
Xin chào các bạn, bài viết hôm nay mình sẻ hướng dẫn các bạn cách sử dụng Microsoft Agent trên Windows 7, 10 trong lập trình C#, Winform.
[C#] Using Microsoft Agent in Windows 7, 10
Microsoft Agent là các trợ lý ảo, thời còn hệ điều hành Microsoft Windows XP (Anh em thời 8x, 9x chắc không còn xa lạ với mấy em này)
Từ Windows 7 trở đi, Microsoft đã không còn sử dụng bộ này nữa, nếu các bạn muốn sử dụng và chạy nó trên Windows hiện tại.
Ở bên dưới source code của mình có file DoubleAgent_x86.msi, các bạn cài đặt vào để sử dụng lại bộ này nhé.
Dưới đây là hình ảnh của Biệt đội siêu anh hùng một thời trên Windows XP:
Video demo ứng dụng Microsoft Agent C#:
Source code sử dụng Microsoft Agent:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp2
{
public partial class Form1 : Form
{
private AgentObjects.IAgentCtlCharacter Avatar;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
axAgent1.Characters.Load("Merlin", Application.StartupPath + "\Merlin.acs");
Avatar = axAgent1.Characters["Merlin"];
Avatar.Show(0);
Avatar.MoveTo(850, 200);
Avatar.Speak("Tôi tên là Merlin!");
axAgent1.Characters.Load("Robby", Application.StartupPath + "\Robby.acs");
Avatar = axAgent1.Characters["Robby"];
Avatar.Show(0);
Avatar.MoveTo(950, 250);
Avatar.Speak("Tôi tên là Robby!");
axAgent1.Characters.Load("genie", Application.StartupPath + "\genie.acs");
Avatar = axAgent1.Characters["genie"];
Avatar.Show(this.Location);
Avatar.MoveTo(250, 250);
Avatar.Speak("Tôi tên là Genie!");
axAgent1.Characters.Load("Peedy", Application.StartupPath + "\Peedy.acs");
Avatar = axAgent1.Characters["Peedy"];
Avatar.Show(this.Location);
Avatar.Speak("Xin chào Lập trình VB.NET, chúng tôi đến từ Windows XP!");
Avatar.MoveTo(350, 250);
axAgent1.Characters.Load("clipy", Application.StartupPath + "\clipy.acs");
Avatar = axAgent1.Characters["clipy"];
Avatar.Show(this.Location);
Avatar.MoveTo(450, 250);
axAgent1.Characters.Load("OFFCAT", Application.StartupPath + "\OFFCAT.ACS");
Avatar = axAgent1.Characters["OFFCAT"];
Avatar.Show(this.Location);
Avatar.MoveTo(550, 250);
axAgent1.Characters.Load("MNATURE", Application.StartupPath + "\MNATURE.ACS");
Avatar = axAgent1.Characters["MNATURE"];
Avatar.Show(this.Location);
Avatar.MoveTo(650, 250);
axAgent1.Characters.Load("ROCKY", Application.StartupPath + "\ROCKY.ACS");
Avatar = axAgent1.Characters["ROCKY"];
Avatar.Show(this.Location);
Avatar.MoveTo(750, 250);
axAgent1.Characters.Load("F1", Application.StartupPath + "\F1.ACS");
Avatar = axAgent1.Characters["F1"];
Avatar.Show(this.Location);
Avatar.MoveTo(1050, 250);
}
}
}
Thanks for watching!