niiiice, that was/looks easy
Not sure how to play .mp3 and other stuff, though.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Media;
namespace meHides
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.WindowState = FormWindowState.Minimized;
this.ShowInTaskbar = false;
this.Hide();
this.Visible = false;
timer1.Start();
timer1.Interval = 600000;
timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
SoundPlayer simpleSound = new SoundPlayer("boot");
simpleSound.Play();
}
}
}
Just made this little neat program that plays a sound every minute. Just change 600000 to whatever you want.
Note: boot is a wave file.