il codice é:
solo che durante il beep non posso cliccare niente nel form altrimenti si blocca tutto.codice:Public Class Form1 Declare Function Beep Lib "kernel32.dll" (ByVal dwFreq As Integer, ByVal dwDuration As Integer) As Boolean Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Beep(294, 10000) End Sub End Class
Come faccio a evitarlo?

