Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

FindMimeFromData (urlmon)
 
.

using System;

using System.Text;

using System.Runtime.InteropServices;

namespace PPC.Common

{

public class LockTaskBar

{

[DllImport("CoreDll.dll", SetLastError = true)]

public static extern IntPtr FindWindow(string className, string WindowsName);

[DllImport("coredll.dll", EntryPoint = "EnableWindow")]

public static extern bool EnableWindow(IntPtr hwnd, bool bEnable);

/// <summary>

/// this is for enable and disable task bar.Basically this is provide access control Start menu.

/// </summary>

/// <param name="HHTaskBar">HHTaskBar</param>

/// <param name="enabled">default false</param>

/// <returns></returns>

public static bool Execute(string HHTaskBar,bool enabled)

{

bool IsState = false;

try

{

IntPtr hwnd = FindWindow(HHTaskBar, null);

if (!hwnd.Equals(IntPtr.Zero))

{

if (enabled)

{

IsState = EnableWindow(hwnd, false);

}

else

{

IsState =EnableWindow(hwnd, true);

}

}

}

catch (DllNotFoundException dllex)

{

throw dllex;

}

catch (Exception ex)

{

throw ex;

}

return IsState;

}

}

}

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions