P8047 DataLogger

Is it possible to poll the channels individually or must it be done as an array?
As far as I can see the “ReadData” command in the dll does not offer any choice.
I am using VB as program language and can not assign a channel to a variable. any help would be grateful, thanks

Yes, the ReadData function reads all the data to an array.
This is the only way to read the data.

Here an example how you can “extract” channel 1 data from the array to a variable:

Dim DataBuffer(0 To 7) As Integer Dim CH1 As Integer ReadData(DataBuffer(0)) CH1 = DataBuffer(2) ListBox1.Items.Add(Str(CH1))

Thanks very much, I will give that a try.