Search found 62 matches: uint

Return to advanced search

32 bit stuff

... is the MSN Info: PeekMessage BOOL PeekMessage( LPMSG lpMsg <>, // pointer to structure for message HWND hWnd <>, // handle to window UINT wMsgFilterMin <>, // first message UINT wMsgFilterMax <>, // last message UINT wRemoveMsg <> // removal flags ); typedef struct ...
by Antonio Linares
Wed Aug 27, 2008 7:25 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 66138

hWnd es el handle de una ventana, no el identificador de un proceso que es lo que requiere TerminateProcess():

BOOL TerminateProcess(
HANDLE hProcess, // handle to the process
UINT uExitCode // exit code for the process
);
by Antonio Linares
Sun Jul 06, 2008 12:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Terminar proceso sin Ventana
Replies: 13
Views: 1781

... support; so I can implement a ruler like "WordPad". At this time there is no support for "paraformat" member in bold: typedef struct _paraformat { UINT cbSize; DWORD dwMask; WORD wNumbering; WORD wReserved; LONG dxStartIndent; LONG dxRightIndent; LONG dxOffset; WORD wAlignment; SHORT cTabCount; ...
by Gianni
Wed Jun 11, 2008 3:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit enhancement
Replies: 9
Views: 1621

... #pragma BEGINDUMP #include <windows.h> #include <hbapi.h> HB_FUNC( GETFILEVERSIONINFO ) { char * szFile = hb_parc( 1 ); UINT uAction = ISNUM( 2 ) ? hb_parni( 2 ) : 1; DWORD dwHandle = 0; DWORD dwSize = GetFileVersionInfoSize( szFile, &dwHandle ); char * szOut = NULL; ...
by Marco Turco
Tue May 06, 2008 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: File-information in exe-file
Replies: 8
Views: 1907

Disabling/removing menu

... #pragma BEGINDUMP #include "windows.h" HB_FUNC(REMOVEMENU) { RemoveMenu((HMENU) hb_parnl(1), (UINT) hb_parnl(2), MF_BYPOSITION); } #pragma ENDDUMP Regards, Roberto Parisi
by Roberto Parisi
Fri Jan 25, 2008 2:09 pm
 
Forum: FiveWin for Pocket PC
Topic: Disabling/removing menu
Replies: 19
Views: 3409

MSGBOX

... office style 2007) I saw on a guide MessageBoxEx and MessageBox work the same way int MessageBoxEx( HWND hWnd, LPCTSTR lpText, LPCTSTR lpCaption, UINT uType, WORD wLanguageId ); I think if we modifiy all the source code MSG.c we c an have the box with this style it is possible ?
by Silvio
Thu Nov 29, 2007 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSGBOX
Replies: 8
Views: 1093

... 7095 #define DEFAULT_TIMEOUT 10000 HANDLE hScanner = NULL; TCHAR szScannerName[MAX_PATH] = TEXT("SCN1:"); DWORD dwResult ; CHAR Buffer ; UINT uMsg ; DWORD dwTimeout ; HB_FUNC( SCAN_OPEN ) { dwResult = SCAN_Open( szScannerName, &hScanner ); if ( dwResult == E_SCN_SUCCESS ) { dwResult ...
by cdmmaui
Sun Sep 09, 2007 11:19 am
 
Forum: FiveWin for Pocket PC
Topic: FWPPC and MC3000 scan button
Replies: 13
Views: 5603

Vikthor, El ultimo parámetro parece distinto a como lo has declarado: > pIDBtn [out] Pointer to a UINT. On return, if successful, this parameter will hold the id of the button that has chAccel as its accelerator character. > Ha de ser el puntero a un número, y contendrá ...
by Antonio Linares
Mon Aug 06, 2007 5:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ToolBar y TABSTOP
Replies: 4
Views: 887

... HARBOUR HB_FUN_APPENDMENU( PARAMS ) { _retl( AppendMenu( ( HMENU ) _parnl( 1 ), ( UINT ) _parnl( 2 ), _parnl( 3 ), IF( ISCHAR( 4 ), _parc( 4 ), ( LPSTR ) _parnl( 4 ) ) ) ); } //----------------------------------------------------------------------------// ...
by saviotti
Fri May 18, 2007 2:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error ao atualizar para FWH 7.04
Replies: 29
Views: 9874

MC1000

... dwScanSize = 7095; DWORD dwScanTimeout = 0; HANDLE hScanner = NULL; TCHAR szScannerName[MAX_PATH] = TEXT("SCN1:"); DWORD dwResult ; CHAR Buffer ; UINT uMsg ; DWORD dwTimeout ; HB_FUNC( SCAN_OPEN ) { dwResult = SCAN_Open( szScannerName, &hScanner ); if ( dwResult == E_SCN_SUCCESS ) { dwResult ...
by ramirezosvaldo
Mon Mar 26, 2007 5:26 pm
 
Forum: FiveWin para Pocket PC
Topic: MC1000
Replies: 8
Views: 3865

This the test.c and include file come from iamge2pdf.dll download package #include <Windows.h> #include "Image2PDF.h" UINT ShowError(char *which, UINT iErr) { char message[200]; wsprintf(message, "%s returned error %d", which, iErr); MessageBox(NULL, message, "Error Returned From ...
by ShumingWang
Sat Nov 25, 2006 4:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create and Email PDF's from FWH
Replies: 24
Views: 11124

This the test.c and include file come from iamge2pdf.dll download package #include <Windows.h> #include "Image2PDF.h" UINT ShowError(char *which, UINT iErr) { char message[200]; wsprintf(message, "%s returned error %d", which, iErr); MessageBox(NULL, message, "Error Returned From ...
by ShumingWang
Sat Nov 25, 2006 4:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create and Email PDF's from FWH
Replies: 24
Views: 11124

... is the dump of lpStat parameter. These are the fields of COMSTAT structure: COMSTAT (3.1) typedef struct tagCOMSTAT { /* cmst */ BYTE status; UINT cbInQue; UINT cbOutQue; } COMSTAT; The COMSTAT structure contains information about a communications device. Member Description status Specifies ...
by Enrico Maria Giordano
Wed Sep 13, 2006 12:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: getcommerror, como tratar el resultado?
Replies: 9
Views: 3626

... #endif #define OFN_LONGNAMES 0x00200000 #define WF_WINNT 0x4000 #define LOGPIXELSX 88 BOOL IsWin95(VOID); BOOL CALLBACK ComDlgHkFile(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPar); /* static far BOOL b95Look = FALSE; static far char SelDir[] = "Select directory"; static far char IniDir[] ...
by carlosmora
Mon Jan 30, 2006 3:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RunDlg32 y dialogos para pedir carpetas
Replies: 3
Views: 1278

... RetVal; static EXCEPINFO excep; static PHB_ITEM *aPrgParams = NULL; static BSTR bstrMessage; static DISPID lPropPut = DISPID_PROPERTYPUT; static UINT uArgErr; //---------------------------------------------------------------------------// static double DateToDbl( LPSTR cDate ) { double nDate; ...
by ask
Tue Dec 27, 2005 10:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from within FWH25?
Replies: 29
Views: 13930
PreviousNext

Return to advanced search