@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Shows or hides the image being dragged. !!!!C# Signature: /// <summary> /// Shows or hides the image being dragged. /// </summary> /// <param name="fShow">Value specifying whether to show or hide the image being dragged. /// Specify <see langword="true"/> to show the image or <see langword="false"/> to hide the image.</param> /// <returns>Returns nonzero if successful, or zero otherwise. </returns> [DllImport("comctl32.dll", CharSet = CharSet.Auto)] [return: MarshalAs(UnmanagedType.Bool)] internal static extern bool ImageList_DragShowNolock([MarshalAs(UnmanagedType.Bool)] bool fShow); !!!!VB Signature: ''' <summary> ''' Shows or hides the image being dragged. ''' </summary> ''' <param name="fShow">Value specifying whether to show or hide the image being dragged. ''' Specify <see langword="true"/> to show the image or <see langword="false"/> to hide the image.</param> ''' <returns>Returns nonzero if successful, or zero otherwise. </returns> <DllImport("comctl32.dll", CharSet := CharSet.Auto)> _ Friend Shared Function ImageList_DragShowNolock(<MarshalAs(UnmanagedType.Bool)> fShow As Boolean) As <MarshalAs(UnmanagedType.Bool)> Boolean End Function !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! Documentation: ImageList_DragShowNolock@msdn on MSDN
Edit comctl32.ImageLis...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.