On the PC that has the TV card installed, open MP Config and TV Config (from the shortcuts). doublecheck u have the correct TV->TV Client name (should be the same name as the TV database name (for me its my PC hostname).
Probably the issue is that _channelList is null. A better fix would be to add a check *inside* PositionGuideCursorToCurrentChannel() like so:
Code:if (_channelList == null) { return; }
...or alternatively, have some logic to set the _channelList as the first channel group in this case.
Edit: _currentChannel could also be null, so that should be checked too.
if (_channelList == null) return;
if (_currentChannel == null) return;
private void PositionGuideCursorToCurrentChannel()
{
_cursorX = 0;
_cursorY = 1; // cursor should be on the program guide item
ChannelOffset = 0;
if (_channelList == null || _currentChannel == null) return;
Will try to do that this morning
Mark, can you attach your modified file ?
Thanks.
I have the same problem. I want to connect my 1.3beta client to the 1.2.3 server. Is that even possible?