Search found 16 matches: hwndowner

Return to advanced search

Re: how to get "Userdef" EVENT for ACTION

hi Antonio, Is the event sent to hwndOwner ? i think Yes  FindReplaceDlg ( NIL, lNoUpDown, lNoMatchCase, lNoWholeWord, lCheckDown, lCheckMatchCase, lCheckWholeWord, cFind, cReplace, .T., cTitle )   HWND hWnd           = HB_ISNIL( ...
by Jimmy
Tue Mar 28, 2023 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get "Userdef" EVENT for ACTION
Replies: 5
Views: 395

Re: how to get "Userdef" EVENT for ACTION

hi Antonio, Is the event sent to hwndOwner ? i´m not sure ... it is like other "Common Dialog" it have to do with FINDREPLACE A/W structure https://learn.microsoft.com/en-us/windows/win32/api/commdlg/ns-commdlg-findreplacea ...
by Jimmy
Tue Mar 28, 2023 2:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get "Userdef" EVENT for ACTION
Replies: 5
Views: 395

Re: how to get "Userdef" EVENT for ACTION

Dear Jimmy,

Is the event sent to hwndOwner ?

If so, then you need to inherit a class from TWindow and redefine HandleEvent() method and add support for such event
by Antonio Linares
Tue Mar 28, 2023 10:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get "Userdef" EVENT for ACTION
Replies: 5
Views: 395

Re: cGetFile() and Multiple file selection

... dialog box, the system returns information about the user's selection in this structure. Syntax typedef struct tagOFN { DWORD lStructSize; HWND hwndOwner; HINSTANCE hInstance; LPCTSTR lpstrFilter; LPTSTR lpstrCustomFilter; DWORD nMaxCustFilter; DWORD nFilterIndex; LPTSTR lpstrFile; DWORD nMaxFile; ...
by StefanHaupt
Thu Apr 30, 2009 7:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile() and Multiple file selection
Replies: 22
Views: 6731

... in function CREATEWINE Thanks, Jose CLIPPER CREATEWINE() // ( nExtendedStyle, cClassName, cTitle, nStyle, nLeft, nTop, nWidth, // nHeight, hWndOwner, hMenu, cExtraData ) --> hWnd { _retni( CreateWindowEx(_parnl( 1 ), // Extended style _parc( 2 ), // Class _parc( 3 ), // Title _parnl( ...
by xhbcoder
Sun May 11, 2008 6:30 am
 
Forum: FiveWin for CA-Clipper
Topic: Converting POS application to xHarbour + FWH
Replies: 50
Views: 15567

... lpParam // window-creation data * ); * */ CLIPPER CREATEWINE() // ( nExtendedStyle, cClassName, cTitle, nStyle, nLeft, nTop, nWidth, // nHeight, hWndOwner, hMenu, cExtraData ) --> hWnd { _retni( CreateWindowEx(_parnl( 1 ), // Extended style _parc( 2 ), // Class _parc( 3 ), // Title _parnl( ...
by xhbcoder
Thu May 08, 2008 4:48 pm
 
Forum: FiveWin for CA-Clipper
Topic: Converting POS application to xHarbour + FWH
Replies: 50
Views: 15567

... + wLen ) = 0; * ( pFilter + wLen + 1 ) = 0; _bset( ( char * ) &ofn, 0, sizeof( OPENFILENAME ) ); ofn.lStructSize = sizeof( OPENFILENAME ); ofn.hwndOwner = GetActiveWindow(); ofn.lpstrFilter = pFilter; ofn.lpstrFile = pFile; ofn.lpstrInitialDir = pDir; ofn.lpstrTitle = pTitle; ofn.lpstrCustomFilter ...
by sysctrl2
Thu Nov 29, 2007 7:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Selección de múltiples archivos
Replies: 4
Views: 1710

areang wrote:Enrico,

Thank to reply about timer on dialog
I missing to add oTmr:hWndOwner := oDlg:hWnd

Now work fine.

How about OCX with DIALOG ?


Best Regard
Areang


I don't know, sorry.

EMG
by Enrico Maria Giordano
Fri Sep 29, 2006 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX question?
Replies: 31
Views: 6518

Enrico,

Thank to reply about timer on dialog
I missing to add oTmr:hWndOwner := oDlg:hWnd

Now work fine.

How about OCX with DIALOG ?


Best Regard
Areang
by areang
Fri Sep 29, 2006 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX question?
Replies: 31
Views: 6518

... // prompt for filename OPENFILENAME ofn; int nExt; FMEMSET(&ofn, 0, sizeof ofn); szFile[0] = '\0'; ofn.lStructSize = sizeof(OPENFILENAME); ofn.hwndOwner = NULL; ofn.lpstrFilter = "Windows Bitmap (*.bmp)\0*.bmp\0\0"; ofn.lpstrFile= szFile; ofn.nMaxFile = sizeof(szFile) - 5; ofn.Flags = OFN_OVERWRITEPROMPT ...
by areang
Mon Aug 07, 2006 3:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Please teach me about FWH and xHarbour
Replies: 3
Views: 4249

... lpstrIniFile=CLSEGUIM.CFD lpstrTitle=GUARDAR EL FICHERO DE CONFIGURACION nFilterIndex=1 lpstrInitialDir=C:\CLIPPER5\INMOB\DOCS\PLANTI~1\ Flags=4 hwndOwner=2692 working=1 [GetDirectory] working=0 lpstrDirectory= CommDlgExtendedError=4223020 [GetOpenFileName] working=1 En un principio pensé que ...
by manuramos
Thu Jul 06, 2006 7:32 pm
 
Forum: FiveWin para CA-Clipper
Topic: cGetFile32. Diferentes Resultados
Replies: 11
Views: 2800

New News For Camera With Fwppc

... = 1, CAMERACAPTURE_VIDEOTYPE_MESSAGING = 2, } CAMERACAPTURE_VIDEOTYPES; typedef struct tagSHCAMERACAPTURE { DWORD cbSize; HWND hwndOwner; TCHAR szFile[MAX_PATH]; LPCTSTR pszInitialDir; LPCTSTR pszDefaultFileName; LPCTSTR pszTitle; CAMERACAPTURE_STILLQUALITY StillQuality; CAMERACAPTURE_VIDEOTYPES ...
by HATHAL
Wed May 17, 2006 5:06 pm
 
Forum: FiveWin for Pocket PC
Topic: New News For Camera With Fwppc
Replies: 5
Views: 2542

... : undeclared identifier hathal.prg(29) : error C2228: left of '.cbSize' must have class/struct/union type hathal.prg(31) : error C2228: left of '.hwndOwner' must have class/struct/union type hathal.prg(32) : error C2228: left of '.pszInitialDir' must have class/struct/union type hathal.prg(33) ...
by Richard Chidiak
Mon Apr 03, 2006 7:12 pm
 
Forum: FiveWin for Pocket PC
Topic: the use camera with fwppc
Replies: 9
Views: 3520

... to cam.obj ok LPWSTR AnsiToWide( LPSTR ); HB_FUNC( CAM_CE ) { // CameraCaptureExample(NULL,12); //} // HRESULT //int CameraCaptureExample(HWND hwndOwner, LPTSTR pszFilename) // { HRESULT hResult; SHCAMERACAPTURE shcc; // Set the SHCAMERACAPTURE structure. ZeroMemory(&shcc, sizeof(shcc)); ...
by HATHAL
Sun Apr 02, 2006 8:45 pm
 
Forum: FiveWin for Pocket PC
Topic: the use camera with fwppc
Replies: 9
Views: 3520

How we must do if we see the dvd.

... Prompt oVideo:Position() DEFINE TIMER oTimer; INTERVAL 100; ACTION IF( oVideo:Position() = oVideo:Length(), oDlg:End() ) oDlg:bStart = { || oTimer:hWndOwner := oDlg:hWnd, oTimer:Activate(), oVideo:PlayFull() } ACTIVATE DIALOG oDlg; CENTER oTimer:End() RETURN NIL
by yunbg1
Sun Apr 02, 2006 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How we must do if we see the dvd.
Replies: 2
Views: 734
Next

Return to advanced search