Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Media;
- using System.Threading;
- using System.Windows.Forms;
- namespace R809ReproducirSonido
- {
- public partial class Programa : Form
- {
- public Programa()
- {
- InitializeComponent();
- }
- private void Programa_Load(object sender, EventArgs e)
- {
- Console.Beep();
- Thread.Sleep(500);
- Console.Beep(200, 300);
- Thread.Sleep(500);
- SystemSounds.Exclamation.Play();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement