<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>23 Apr 2015 14:36:00 Z</lastBuildDate><pubDate>20 Apr 2015 12:31:00 Z</pubDate><description>Dear Windev Coders,&#13;
I am struggling to convert the below C# code into Windev code, using Windev 18.&#13;
I am seeking for support..&#13;
=============================================&#13;
&#13;
&#13;
Main reader object = RFIDReader&#13;
// --Reader declarations -----&#13;
RFIDReader reader;&#13;
// ---------------------------------&#13;
Initialize and Connect to RFID reader&#13;
// --Reader initializations -----&#13;
reader = new RFIDReader(“157.235.88.253", 0, 0);&#13;
reader.Connect();&#13;
// ---------------------------------&#13;
Disable ‘AttachTagDataWithReadEvent’&#13;
&#13;
// ---------------------------------&#13;
reader.Events.AttachTagDataWithReadEvent = false;&#13;
// ---------------------------------&#13;
Register for read notifications&#13;
// ---------------------------------&#13;
reader.Events.ReadNotify +=&#13;
new Events.ReadNotifyHandler(Events_ReadNotify);&#13;
// ---------------------------------&#13;
Start polling&#13;
// ---------------------------------&#13;
reader.Actions.Inventory.Perform();&#13;
// ---------------------------------&#13;
&#13;
&#13;
&#13;
Callback function&#13;
// ---------------------------------&#13;
void Events_ReadNotify(object sender,&#13;
Events.ReadEventArgs e)&#13;
{&#13;
TagData[ ] tagData = reader.Actions.GetReadTags(1000);&#13;
if ((tagData != null) &amp;&amp; (tagData.Length &gt; 0))&#13;
{&#13;
foreach(TagData t in tagData)&#13;
{&#13;
UpdateListBox(t.TagID+" : "+t.AntennaID.ToString());&#13;
}&#13;
}&#13;
}&#13;
&#13;
// ---------------------------------&#13;
Stop polling&#13;
// ---------------------------------&#13;
reader.Actions.Inventory.Stop();&#13;
// ---------------------------------&#13;
Disconnect from RFID reader&#13;
// --Reader initializations -----&#13;
reader.Disconnect();&#13;
// ---------------------------------&#13;
&#13;
=============================================</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading/read.awp</link><title>Motorola FX7400 RFID reading</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51749/read.awp</comments><pubDate>23 Apr 2015 14:36:00 Z</pubDate><description>Hi Mitchell,&#13;
&#13;
My own .Net experience is not very large (in fact, it is minimalist). In WinDev you simply add the .Net package …</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51749/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51749/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading/read.awp">Motorola FX7400 RFID reading</source><title>Re: Motorola FX7400 RFID reading</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51737/read.awp</comments><pubDate>23 Apr 2015 06:13:00 Z</pubDate><description>thanks alex,&#13;
RFIDReader class is a .net class which I imported into Windev, still in trouble here...</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51737/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51737/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading/read.awp">Motorola FX7400 RFID reading</source><title>Re: Motorola FX7400 RFID reading</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51696/read.awp</comments><pubDate>21 Apr 2015 14:42:00 Z</pubDate><description>Hi Mitchell,&#13;
&#13;
Do you get somewhere?&#13;
&#13;
Many information are missing in the code snippet. What is actually the RFIDReader class…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51696/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading-51696/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/51649-motorola-fx7400-rfid-reading/read.awp">Motorola FX7400 RFID reading</source><title>Re: Motorola FX7400 RFID reading</title></item></channel></rss>
