- March 24, 2007
- 12,073
- 7,459
- Home Country
- Germany
- Moderator
- #31
This is the failing scan log
public TvResult Scan(string userName, int idCard, out IUser user, IChannel channel, int idChannel)
{
user = null;
TvResult result = TvResult.UnknownError;
try
{
if (ValidateTvControllerParams(userName) && ValidateTvControllerParams(channel))
{
StopEPGgrabber();
user = new User(userName, UserType.Scanner, idCard);
....
if (idChannel < 1 && user.UserType != UserType.Scanner) // EGP scanner have no channel
{
throw new InvalidOperationException("idChannel is invalid");
}
I sadly dont have analog here.Thanks. The problem in this case is the analog part: it does Tune() , then Scan().
I changed the user now to type "Scanner" and I can pass the check. But scanning doesn't finish yet because of a message box:
"Unable to scan"
"Generic error: An error occurred while updating the entries"