HOME > .NET Framework > Forum > NullReferenceException was unhanddle : Object reference not set to an instance of an object. คืออะไรครับ เขียนติดต่อ Fingerprint USB
NullReferenceException was unhanddle : Object reference not set to an instance of an object. คืออะไรครับ เขียนติดต่อ Fingerprint USB
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (axZKFPEngX1.InitEngine() == 0)
{
label1.Text = "เชื่อมแต่ได้";
//MessageBox.Show("เชื่อมต่อได้","เริ่มระบบ",MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk);
}else {
label1.Text = "เชื่อมแต่ผิดพลาด";
//MessageBox.Show("ไม่สามารถเชื่อมต่อได้","เริ่มระบบ",MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk);
}
}
}
}