Desktop Functions: Smart Device Functions:
|
Search Results for "MessageBeep" in [All]user321: MessageBeep
static extern bool MessageBeep(beepType uType);
Private Shared Function MessageBeep(ByVal uType As beepType) As Boolean
method public static pinvokeimpl boolean MessageBeep(var uType as integer)
private static extern bool MessageBeep(uint type);
MessageBeep((uint)type);
private static extern bool MessageBeep(uint type);
MessageBeep((uint)type); Article http://msdn.microsoft.com/msdnmag/issues/03/07/NET/ ("Calling Win32 DLLs in C# with P/Invoke") gives a helpful wrapper class for MessageBeep. |