Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
Declare Function MessageBeep Lib "user32.dll" (uType As Integer) As Boolean
Notes:
You can delete all lines beginning with \\\ or keep it if you are generating documentation from code comments
beepType.SimpleBeep cannot be casted directly to an uint. You need to either:
1. assign it to a local variable and then cast it as uint, or
2. replace -1 with 0xffffffff in the enum declaration.
Tips & Tricks:
Just add the sample code and a using system.runtime.interopservices;
With the enum beepType you get intellisense when you type "beep." and you can then select the kind of beep you want
Sample Code:
/// <summary>
/// Enum type that enables intellisense on the private <see cref="Beep"/> method.
/// </summary>
/// <remarks>
/// Used by the public Beep <see cref="Beep"/></remarks>
public enum beepType
{
/// <summary>
/// A simple windows beep
/// </summary>
SimpleBeep = -1,
/// <summary>
/// A standard windows OK beep
/// </summary>
OK = 0x00,
/// <summary>
/// A standard windows Question beep
/// </summary>
Question = 0x20,
/// <summary>
/// A standard windows Exclamation beep
/// </summary>
Exclamation = 0x30,
/// <summary>
/// A standard windows Asterisk beep
/// </summary>
Asterisk = 0x40,
}
/// <summary>
/// Method to call interop for system beep
/// </summary>
/// <remarks>Calls Windows to make computer beep</remarks>
/// <param name="type">The kind of beep you would like to hear</param>
public static void beep(beepType type)
{
MessageBeep((uint)type);
}
///////////////// ANOTHER EXAMPLE same as the above but shows all beeps.
class Class1
{
public enum beepType
{
/// <summary>
/// A simple windows beep
/// </summary>
SimpleBeep = -1,
/// <summary>
/// A standard windows OK beep
/// </summary>
OK = 0x00,
/// <summary>
/// A standard windows Question beep
/// </summary>
Question = 0x20,
/// <summary>
/// A standard windows Exclamation beep
/// </summary>
Exclamation = 0x30,
/// <summary>
/// A standard windows Asterisk beep
/// </summary>
Asterisk = 0x40,
}
[DllImport("User32.dll", ExactSpelling=true)]
private static extern bool MessageBeep(uint type);
System.Console.Beep, coming in v2.0 (Whidbey) of the .NET Framework
Plays a waveform sound.
7/1/2010 10:25:43 AM - -92.251.8.36
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).