using CelticCalendarCalculator.Control; namespace CelticCalendarCalculator { public partial class MainForm : Form { public MainForm() { InitializeComponent(); Shown += CelticCalendarCalculatorShown; } private void CelticCalendarCalculatorShown(Object sender, EventArgs e) { Ics.createIcs(); } } }