Files
ChanSort/ChanSort.Loader.TllFile/PresetProgramNrDialog.cs
hbeham f762230b05 - support for 2013 LA-series (DVB-S only; deactivating TV-Data File Cleanup when there are preset DVB-S channels)
- support for LH3000 (which has same record size but different layout than all other known LH models)
- added various Assistant dialogs
- icons updated
2013-05-03 19:02:30 +02:00

24 lines
530 B
C#

using System.Windows.Forms;
using DevExpress.XtraEditors;
namespace ChanSort.Loader.LG
{
public partial class PresetProgramNrDialog : XtraForm
{
public PresetProgramNrDialog()
{
InitializeComponent();
}
private void linkDetails_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
try
{
BrowserHelper.OpenUrl(
"http://sourceforge.net/p/chansort/wiki/Channels%20disappear%20or%20change%20program%20numbers%20randomly/");
}
catch { }
}
}
}