30/09/2018, 17:25

Bị lỗi khi thêm 1 component trong c#

Mình không biết cách thêm cái control này trong c#

Các bạn có thể hướng dẫn mình được không?
Đây là code trong form.

public Form1()
        {
            InitializeComponent();

            axLiveX1.IpAddress = "webcam.geovision.com.tw";
            axLiveX1.UserName = "test";
            axLiveX1.Password = "test";
            axLiveX1.DataPort = 5550;
            axLiveX1.CommandPort = 4550;
            axLiveX1.AudioDataPort = 6550;
            axLiveX1.DefaultCam = 3;
            axLiveX1.OnGetPicture += new AxLIVEXLib._DLiveXEvents_OnGetPictureEventHandler(axLiveX1_OnGetPicture);
            axLiveX1.AutoLogin = true;
            axLiveX1.Connect();
            axLiveX1.StartGrapImage(true);
        }
        Bitmap bmp = new Bitmap(48, 32);
        private void button1_Click(object sender, EventArgs e)
        {
            pictureBox1.Image = bmp;
        }

        private void axLiveX1_OnGetPicture(object sender, _DLiveXEvents_OnGetPictureEvent e)
        {
            bmp = Bitmap.FromHbitmap(new System.IntPtr(e.mPict.Handle));
        }

Mình không tạo được cái axLiveX1 đó, Nó kết nối tới server :" webcam.geovision.com.tw để hiển thị hình ảnh camera.
Cảm ơn các bạn.

r0ysy0301 viết 19:38 ngày 30/09/2018

Giúp mình với, mình bị vướng chỗ này search không ra.

Bài liên quan
0