Search found 119 matches: commctrl

Return to advanced search

WC_LISTVIEW / "SysListView32" -> Unicode ?

... TGrid FROM TControl   ::Create( CTRL_CLASS ) but i have Problem when use FW_SetUnicode( .T. ) now i saw this in c:\BCC7\include\windows\commctrl.h #define WC_LISTVIEWA            "SysListView32"#define WC_LISTVIEWW            L"SysListView32"#ifdef UNICODE#define ...
by Jimmy
Sun Jan 15, 2023 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WC_LISTVIEW / "SysListView32" -> Unicode ?
Replies: 7
Views: 485

Re: Fivewin Uxtheme

... CLASS TDatePick() / Class TTimePick() and Listview Header which have ICC_* Setting https://learn.microsoft.com/en-us/windows/win32/api/commctrl/ns-commctrl-initcommoncontrolsex as i know each Control have own ICC_* Constant which belong to Constant in TMSCHEMA.H
by Jimmy
Thu Nov 03, 2022 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin Uxtheme
Replies: 8
Views: 771

Windows Structure under FiveWin

... st:item point to LVITEM Structure so i need to call another CLASS ... https://learn.microsoft.com/en-us/windows/win32/api/commctrl/ns-commctrl-nmlvdispinfoa typedef struct tagLVDISPINFO {  NMHDR   hdr;  LVITEMA item;} NMLVDISPINFOA, *LPNMLVDISPINFOA; https://learn.microsoft.com/en-us/windows/win32/api/commctrl/ns-commctrl-nmlvdispinfow ...
by Jimmy
Tue Oct 18, 2022 12:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows Structure under FiveWin
Replies: 0
Views: 179

how to use Member pszText, cx & Co from LVCOLUMN Structure

... LVCOLUMN Structure at Microsoft https://learn.microsoft.com/en-us/windows/win32/api/commctrl/ns-commctrl-lvcolumna https://learn.microsoft.com/en-us/windows/win32/api/commctrl/ns-commctrl-lvcolumnw HB_FUNC( LVCOLUMNNEW ...
by Jimmy
Mon Oct 17, 2022 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to use Member pszText, cx & Co from LVCOLUMN Structure
Replies: 5
Views: 240

Re: Display thumbnails of pdfs

Dear Jimmy, This is the definition of the struct LVCOLUMN from commctrl.h typedef struct tagLVCOLUMNA { UINT mask; int fmt; int cx; LPSTR pszText; int cchTextMax; int iSubItem; #if (_WIN32_IE >= 0x0300) int iImage; int iOrder; #endif #if _WIN32_WINNT ...
by Antonio Linares
Sun Oct 16, 2022 2:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2216

Re: DIALOG NOCAPTION no funciona con XIMAGE

// RESOURCE SCRIPT generated by "Pelles C for Windows, version 8.00". #include <windows.h> #include <commctrl.h> #include <richedit.h> LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL PACIENTE_FICHA DIALOG DISCARDABLE 119, 121, 559, 410 STYLE WS_CHILD|DS_3DLOOK|WS_SYSMENU|WS_VISIBLE ...
by Willi Quintana
Wed Oct 12, 2022 1:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIALOG NOCAPTION no funciona con XIMAGE
Replies: 17
Views: 1506

Re: If you send me an email and you don't get my answer...

... undefined reference to `MonthCal_SizeRectToMin' he revisado y al parecer estas funciones son definidas como macros o algo asi en commctrl.h ejemplo #define MonthCal_SetCurrentView(hmc, dwNewView) (WINBOOL)SNDMSG (hmc, MCM_SETCURRENTVIEW, 0,(LPARAM) (dwNewView)) y he notado que ...
by carlos vargas
Fri Jul 08, 2022 5:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: If you send me an email and you don't get my answer...
Replies: 27
Views: 1190

Configurar ResEdit para MSVC32

... siguiente cabecera , la cual hace que no tenga problemas al editar ficheros .rc #include <winresrc.h>#include <windows.h>#include <commctrl.h>#ifndef WC_TABCONTROL#define WC_TABCONTROL "SysTabControl32"#endif#ifndef MONTHCAL_CLASS#define MONTHCAL_CLASS "SysMonthCal32"#endif#ifndef ...
by jvtecheto
Sat Apr 23, 2022 7:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Configurar ResEdit para MSVC32
Replies: 3
Views: 283

Re: About TCalendar

I see, it works only on Vista and later, are you trying with win 7? see requirement section on https://docs.microsoft.com/en-us/windows/win32/api/commctrl/nf-commctrl-monthcal_sizerecttomin. It is a shame,
by AntoninoP
Wed Dec 30, 2020 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: About TCalendar
Replies: 16
Views: 2730

Re: ResEdit y Borland 7.4

agregue esto y abrio, es raro por que esta en el commctrl.h, hayq ue revisar por que no lo abrio inicialmente #ifndef NOSTATIC #ifdef _WIN32 // Static Class Name #define WC_STATICA "Static" #define WC_STATICW L"Static" #ifdef ...
by carlos vargas
Mon May 18, 2020 6:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ResEdit y Borland 7.4
Replies: 15
Views: 2218

Re: ResEdit y Borland 7.4

... #include <winresrc.h> #include <windows.h> #include <commctrl.h> #ifndef WC_TABCONTROL #define WC_TABCONTROL "SysTabControl32" #endif #ifndef MONTHCAL_CLASS #define MONTHCAL_CLASS "SysMonthCal32" ...
by carlos vargas
Mon May 18, 2020 6:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ResEdit y Borland 7.4
Replies: 15
Views: 2218

Re: ResEdit y Borland 7.4

Here is my Resource Script Template for Resedit #include <windows.h> #include <commctrl.h> //#include "resource.h" #ifndef WC_STATIC #define WC_STATIC L"Static" #endif #ifndef MONTHCAL_CLASS #define MONTHCAL_CLASS "SysMonthCal32" ...
by Rick Lipkin
Fri May 15, 2020 9:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ResEdit y Borland 7.4
Replies: 15
Views: 2218

Re: Editor de Recursos 32 bits , cual es mejor?

... D:\compiler\bcc\include\windows\sdk\gl\ y la plantilla de inicio #include <winresrc.h> #include <windows.h> #include <commctrl.h> #ifndef WC_TABCONTROL #define WC_TABCONTROL "SysTabControl32" #endif #ifndef MONTHCAL_CLASS #define MONTHCAL_CLASS "SysMonthCal32" ...
by Compuin
Sat Apr 13, 2019 9:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editor de Recursos 32 bits , cual es mejor?
Replies: 13
Views: 3239

Re: Editor de Recursos 32 bits , cual es mejor?

... D:\compiler\bcc\include\windows\sdk\gl\ y la plantilla de inicio #include <winresrc.h> #include <windows.h> #include <commctrl.h> #ifndef WC_TABCONTROL #define WC_TABCONTROL "SysTabControl32" #endif #ifndef MONTHCAL_CLASS #define MONTHCAL_CLASS "SysMonthCal32" ...
by carlos vargas
Fri Apr 12, 2019 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editor de Recursos 32 bits , cual es mejor?
Replies: 13
Views: 3239
Next

Return to advanced search