Search found 2 matches

by sara1967
Tue 11. Feb 2025, 20:39
Forum: Software
Topic: PCAN Explorer 6 Add-Ins
Replies: 1
Views: 2749

Re: PCAN Explorer 6 Add-Ins

Also, I don't understand why this would then work:


var msgs = app.TransmitMessages.FindID(msgId);
var sb = new StringBuilder();

var msgsList = new List<IPEMessage>();

foreach (IPEMessage message in msgs)
{
msgsList.Add(message);
sb.AppendLine($"{message.ID}\n");
}
MessageBox.Show(sb ...
by sara1967
Tue 11. Feb 2025, 19:35
Forum: Software
Topic: PCAN Explorer 6 Add-Ins
Replies: 1
Views: 2749

PCAN Explorer 6 Add-Ins

Hello,

I am trying to access a transmitting message via .NET add-in that I am testing for PCAN Explorer 6. How could I access a transmit message and its signals/raw data if possible? I am experimenting with IPEApplication.TransmitMessages.FindID() and it does find the message I need (in a ...