I have send you a email.. but just is case you don't read it
===========================================
Hi Gibman
I have found a lot of problems with your last changes con"IsRecordingActual" on tvrecorded.cs
if (isRec)
{
if (aRecording.Title.Equals("manual"))
{
return true;
if I'm currently recording on the same chanell and on the "recorded database " there is a "manual" recording then is marked as recording.. what is wrong
also, on the same "IsRecordingActual"
IList prgList = (IList)Program.RetrieveByTitle(aRecording.Title);
if (prgList.Count > 0)
{
foreach (Program prg in prgList)
{
if (aRecording.StartTime <= prg.EndTime)
{
return true;
if there is a schedule "alwais record on this channel" and a recorded show if found is also marked a "recording"
There is another bug
private void OnDeleteRecording(int iItem)
Line FileInfo fInfo = new FileInfo(g_Player.currentFileName);
if I select a show to delete, sometime g_player.currentFileName is "" so there is a exception and the show is not deleted
Hope this helps!
Iosu
===========================================
Hi Gibman
I have found a lot of problems with your last changes con"IsRecordingActual" on tvrecorded.cs
if (isRec)
{
if (aRecording.Title.Equals("manual"))
{
return true;
if I'm currently recording on the same chanell and on the "recorded database " there is a "manual" recording then is marked as recording.. what is wrong
also, on the same "IsRecordingActual"
IList prgList = (IList)Program.RetrieveByTitle(aRecording.Title);
if (prgList.Count > 0)
{
foreach (Program prg in prgList)
{
if (aRecording.StartTime <= prg.EndTime)
{
return true;
if there is a schedule "alwais record on this channel" and a recorded show if found is also marked a "recording"
There is another bug
private void OnDeleteRecording(int iItem)
Line FileInfo fInfo = new FileInfo(g_Player.currentFileName);
if I select a show to delete, sometime g_player.currentFileName is "" so there is a exception and the show is not deleted
Hope this helps!
Iosu