CipherLab 9400 Series User Manual page 222

Hide thumbs Also See for 9400 Series:
Table of Contents

Advertisement

9400 .NET Programming
public MsgWindow(Form1 msgform)
{
this.msgform = msgform;
decodeMsg = Win32API.RegisterWindowMessage("WM_DECODEDATA");
}
protected override void WndProc(ref Message msg)
{
if (msg.Msg == decodeMsg)
{
}
base.WndProc(ref msg);
}
}
}
public class Win32API
{
[DllImport("coredll.dll", SetLastError = true)]
public static extern uint RegisterWindowMessage(string lpString);
}
}
214
Guide
switch (msg.WParam.ToInt32())
{
case 7:
b1 = Reader.ReaderEngineAPI.GetDecodeData(ref tmp);
this.msgform.label4.Text = tmp;
break;
default:
break;
}

Advertisement

Table of Contents
loading

Table of Contents