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

Search Results for "FindResource" in [All]

kernel32

. .
Summary
.

static extern IntPtr FindResourceEx(IntPtr hModule, IntPtr lpType, IntPtr lpName, ushort wLanguage);

.

Private Shared Function FindResourceEx(ByVal hModule As IntPtr, ByVal lpType As IntPtr, ByVal lpName As IntPtr, ByVal wLanguage As UShort) As IntPtr

.
Documentation
[FindResourceEx] on MSDN
. .
Summary
.

static extern IntPtr FindResourceEx(IntPtr hModule, IntPtr lpType,

.
Documentation
[FindResourceEx] on MSDN
.

hModule is the handle to the module in the executable, returned by FindResource

.

hResInfo is the return value from FindResource.

.

    [DllImport("Kernel32.dll", EntryPoint = "FindResourceW", SetLastError = true, CharSet = CharSet.Unicode)]

.

    private static extern IntPtr FindResource(IntPtr hModule, string pName, string pType);

.

    internal static int TestFindResource()

.

    IntPtr resH1 = FindResource(IntPtr.Zero, "RES_CUSTOMIZE", "CUSTOM");


 
Access PInvoke.net directly from VS: