Desktop Functions: Smart Device Functions:
|
Search Results for "CreateIC" in [All]user321: CreateIcon
static extern IntPtr CreateIconIndirect([In] ref ICONINFO piconinfo);
private static extern IntPtr CreateIconIndirect([In] ref ICONINFO iconInfo);
private static void CreateIcon()
IntPtr handle = CreateIconIndirect(ref ii);
static extern IntPtr CreateIconFromResourceEx(byte [] pbIconBits, uint cbIconBits, bool fIcon, uint dwVersion, int cxDesired, int cyDesired, uint uFlags);
Private Shared Function CreateIconFromResourceEx(pbIconBits As Byte(), cbIconBits As UInteger, fIcon As Boolean, dwVersion As UInteger, cxDesired As Integer, cyDesired As Integer, uFlags As UInteger) As IntPtr
static extern IntPtr CreateIconFromResourceEx(byte [] pbIconBits, uint
Public Shared Function CreateIconFromResourceEx(ByVal pbIconBits As Byte(), _
static extern IntPtr CreateIconIndirect([In] ref ICONINFO piconinfo);
private static extern IntPtr CreateIconIndirect([In] ref ICONINFO iconInfo);
private static void CreateIcon()
IntPtr handle = CreateIconIndirect(ref ii); gdi325: CreateIC
|