Search found 27 matches: cbsize

Return to advanced search

Re: Ayuda C++ : SOLUCIONADO

... ) { HDC hDC = (HDC) hb_parnl(1) ; LPDOCINFO sDoc = NULL; BOOL Result = FALSE ; if (hDC ) { sDoc = (LPDOCINFO) hb_xgrab(sizeof(DOCINFO)); sDoc->cbSize= sizeof(DOCINFO) ; sDoc->lpszDocName= hb_parc(2) ; sDoc->lpszOutput = hb_parc(3) ; sDoc->lpszDatatype= NULL ; sDoc->fwType = 0 ; ...
by russimicro
Fri Apr 19, 2024 9:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda C++ : SOLUCIONADO
Replies: 12
Views: 241

Re: Problem with Vtaskbar of Paco

...  endif   hOldFont   := SelectObject(  hDC, hFont ) the function is this HB_FUNC( CREAFCAPT ) { NONCLIENTMETRICS info; info.cbSize = sizeof(info); SystemParametersInfo( SPI_GETNONCLIENTMETRICS, sizeof(info), &info, 0 ); hb_retnl( (LONG ) CreateFontIndirect( &info.lfCaptionFont ...
by Silvio.Falconi
Mon Jan 25, 2016 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Vtaskbar of Paco
Replies: 1
Views: 453

Re: rc/res to source

... Copyright (C) 2006-2010 // http://www.resedit.net HINSTANCE hInst = GetModuleHandle(0); WNDCLASSEX wcex; ZeroMemory(&wcex, sizeof wcex); wcex.cbSize = sizeof wcex; wcex.hbrBackground = (HBRUSH)(COLOR_3DFACE + 1); wcex.lpszMenuName = 0; wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc ...
by MdaSolution
Tue Aug 02, 2011 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: rc/res to source
Replies: 4
Views: 996

Re: Parar un programa en red.

... 0x0500 #define WINVER 0x0500 #include "windows.h" #include "hbapi.h" HB_FUNC( GETINPUTSTATE ) { LASTINPUTINFO lpi; lpi.cbSize = sizeof(LASTINPUTINFO); if (!GetLastInputInfo(&lpi)) { hb_retni(0); } hb_retni(lpi.dwTime); } #pragma ENDDUMP
by WilliamAdami
Sun May 22, 2011 2:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parar un programa en red.
Replies: 5
Views: 2660

Re: Re:

... nonclient area of nonminimized windows. The pvParam parameter must point to a NONCLIENTMETRICS structure that receives the information. Set the cbSize member of this structure and the uiParam parameter to sizeof(NONCLIENTMETRICS). Public Domain Code from: http://www.codeproject.com/KB/vista/VGGlassIntro.aspx
by Bayron
Tue Feb 01, 2011 11:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: height of taskbar
Replies: 11
Views: 3270

TRichEdit

... #pragma BEGINDUMP #include <Windows.h> #include <HbApi.h> #include <Richedit.h> HB_FUNC ( REGETCHARFORMAT2) { CHARFORMAT2 cf; cf.cbSize = sizeof (cf); cf.dwMask = CFM_SUBSCRIPT | CFM_SUPERSCRIPT | CFM_SMALLCAPS | CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE | CFM_SIZE | CFM_FACE | CFM_CHARSET; ...
by ryugarai27
Mon Dec 06, 2010 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TRichEdit
Replies: 0
Views: 463

Re: TRichEdit

... #include <Windows.h> #include <HbApi.h> #include <Richedit.h> HB_FUNC ( REGETCHARFORMAT2) { CHARFORMAT2 cf; //DWORD lResult; cf.cbSize = sizeof (cf); cf.dwMask = CFM_SUBSCRIPT | CFM_SUPERSCRIPT | CFM_ALLCAPS; cf.dwEffects = CFE_SUBSCRIPT | CFE_SUPERSCRIPT | CFE_ALLCAPS; SendMessage( ...
by ryugarai27
Mon Jul 05, 2010 6:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TRichEdit
Replies: 6
Views: 1442

Re: Problem linking with Xharbour commercial

... #include <Windows.h> #include <ClipApi.h> // set proper path if needed #ifndef __FLAT__ #ifndef __HARBOUR__ typedef struct { DWORD cbSize ; DWORD fMask ; long nMin ; long nMax ; DWORD nPage ; long nPos ; long nTrackPos ; } SCROLLINFO ; typedef SCROLLINFO FAR * LPSCROLLINFO ; #define ...
by Massimo Linossi
Thu Nov 12, 2009 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem linking with Xharbour commercial
Replies: 11
Views: 2413

Re: High contrast screen for non blind user - Antonio ?

... _ Public Structure HIGHCONTRAST      Public cbSize As UInteger      Public dwFlags As UInteger      <System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.LPWStr)> ...
by anserkk
Thu Sep 17, 2009 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: High contrast screen for non blind user - Antonio ?
Replies: 9
Views: 2709

Re: High contrast screen for non blind user - Antonio ?

... with the uiAction parameter set to the SPI_GETHIGHCONTRAST or SPI_SETHIGHCONTRAST value. When using SPI_GETHIGHCONTRAST, you must specify the cbSize member of the HIGHCONTRAST structure; the SystemParametersInfo function fills in the remaining members. Specify all structure members when using ...
by anserkk
Thu Sep 17, 2009 9:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: High contrast screen for non blind user - Antonio ?
Replies: 9
Views: 2709

Re: wifi

... manager como nos queremos conectar. CONNMGR_CONNECTIONINFO sConInfo; memset (&sConInfo,0, sizeof (CONNMGR_CONNECTIONINFO)); sConInfo.cbSize = sizeof (CONNMGR_CONNECTIONINFO); sConInfo.dwParams = CONNMGR_PARAM_GUIDDESTNET; //Queremos usar parametros "GuisDesNet" sConInfo.dwPriority ...
by Otto
Tue May 19, 2009 11:59 am
 
Forum: FiveWin for Pocket PC
Topic: wifi
Replies: 9
Views: 3223

Re: Register a .dll

... the VBSCRIPT inside Your Application : Winexec('WSCRIPT.exe REGISTER.VBS') A C-Function --------------- SHELLEXECUTEINFO shExecInfo; shExecInfo.cbSize = sizeof(SHELLEXECUTEINFO); shExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS; shExecInfo.hwnd = NULL; shExecInfo.lpVerb = _T("runas"); shExecInfo.lpFile ...
by ukoenig
Wed May 06, 2009 12:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Register a .dll
Replies: 7
Views: 1796

Re: SMS question

... * psmsrd); The single parameter is a pointer to a SMSREGISTRATIONDATA structure, defined as: typedef struct smsregistrationdata_tag { DWORD cbSize; TCHAR tszAppName[SMS_MAX_APPNAME_LENGTH]; TCHAR tszParams[SMS_MAX_PARAMS_LENGTH]; TCHAR tszProtocolName[SMS_MAX_PROTOCOLNAME_LENGTH]; } SMSREGISTRATIONDATA, ...
by jlcapel
Sat Jan 10, 2009 7:52 pm
 
Forum: FiveWin for Pocket PC
Topic: SMS question
Replies: 51
Views: 21585

Al crear lib SBrowseX marca error Scroll.c

... #include <Windows.h> #include <ClipApi.h> // set proper path if needed #ifndef __FLAT__ #ifndef __HARBOUR__ typedef struct { DWORD cbSize ; DWORD fMask ; long nMin ; long nMax ; DWORD nPage ; long nPos ; long nTrackPos ; } SCROLLINFO ; typedef SCROLLINFO FAR * LPSCROLLINFO ; #define ...
by noe aburto
Wed Dec 17, 2008 2:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Al crear lib SBrowseX marca error Scroll.c
Replies: 0
Views: 675

Problema con al descargar un fichero por ftp

... { hb_retnl( (long) 0 ); } else { CONNMGR_CONNECTIONINFO sConInfo; memset (&sConInfo,0, sizeof (CONNMGR_CONNECTIONINFO)); sConInfo.cbSize = sizeof (CONNMGR_CONNECTIONINFO); sConInfo.dwParams = CONNMGR_PARAM_GUIDDESTNET; sConInfo.dwPriority = CONNMGR_PRIORITY_USERINTERACTIVE; sConInfo.dwFlags ...
by Elias Torres
Thu Nov 20, 2008 11:18 am
 
Forum: FiveWin para Pocket PC
Topic: Problema con al descargar un fichero por ftp
Replies: 9
Views: 2753
Next

Return to advanced search