L_UseImageListControl

Summary

Dynamically loads the appropriate DLL to let your program use the LTIMGLISTCLASS registered class.

Syntax

#include "ltlst.h"

L_LTLST_API L_VOID L_UseImageListControl()

Returns

None.

Comments

Because the LTIMGLISTCLASS registered class uses messages rather than function calls, the required dynamic link library (LTLSTU.dll) is not loaded automatically. Therefore, the toolkit provides this dummy function in the DLL, which you can call before using the registered class messages.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT UseImageListControlExample( 
   HWND hWnd, 
   HWND * phCtrl, 
   HINSTANCE hInst) 
{ 
   /* create the image list control */ 
   L_UseImageListControl(); /* make sure dll is loaded */ 
   *phCtrl = CreateWindow(LTIMGLISTCLASS, 
                         TEXT(""), 
                         WS_CHILD | WS_BORDER, 
                         10, 
                         10, 
                         250, 
                         250, 
                         hWnd, 
                         NULL, 
                         hInst, 
                         NULL); 
   ShowWindow(*phCtrl, SW_SHOW); 
   if(!*phCtrl) 
      return 0; 
   return SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.