Search found 23 matches: callwindowproc

Return to advanced search

Unrecoverable error 6005: Exception error

... in FueAje\Five\Dialog.prg Called from TWINDOW:HANDLEEVENT(0) Called from TDIALOG:HANDLEEVENT(1516) in FueAje\Five\Dialog.prg Called from CALLWINDOWPROC(0) Called from TMULTIGET:GOTFOCUS(849) in FueAje\Five\mget.prg Called from TWINDOW:HANDLEEVENT(0) Called from TMULTIGET:HANDLEEVENT(1427) ...
by Antonio Mart.
Wed May 13, 2020 9:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Unrecoverable error 6005: Exception error
Replies: 5
Views: 504

Re: Paste values into Password Protected Get Objects

... nLParam ) CLASS TPGet //** P3N - 06/19/14 local oClp, cText, n DEFAULT SELF:CTRL_V := ' ' do case case nMsg == WM_PASTE if GetFocus() == ::hWnd CallWindowProc( ::nOldProc, ::hWnd, WM_PASTE, 0, 0 ) if ValType( ::oGet:Original ) $ "CM" SetWindowText( ::hWnd, SubStr( GetWindowText( ::hWnd ...
by don lowenstein
Tue Oct 15, 2019 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Paste values into Password Protected Get Objects
Replies: 6
Views: 1164

Re: Ayuda DLL

Antonio, aquí la segunda parte: Error: Unresolved external '_HB_FUN_DRAWTHEMED' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_GETDLGBASEUNITS' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_CDLG2CHR' referenced from P...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6348

CTRL+C minusculo e CTRL+V em GET "@!"

... vez de AAAAAAAA RESOLVIDO ASSIM, TGET: METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TGet ... case nMsg == WM_PASTE if GetFocus() == ::hWnd CallWindowProc( ::nOldProc, ::hWnd, WM_PASTE, 0, 0 ) if ValType( ::oGet:Original ) $ "CM" SetWindowText( ::hWnd, SubStr( GetWindowText( ::hWnd ...
by MGA
Mon Dec 23, 2013 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CTRL+C minusculo e CTRL+V em GET "@!"
Replies: 3
Views: 764

Re: Need copy of the following functions if any body has them.

Harvey,

Also change this line:

return CallWindowProc( ( FARPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );

with:

return CallWindowProc( ( WNDPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );
by Antonio Linares
Mon Dec 19, 2011 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need copy of the following functions if any body has them.
Replies: 9
Views: 3527

Re: Need copy of the following functions if any body has them.

Harvey,

Please replace this line:

LONG lResult = CallWindowProc( ( FARPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );

with:

LONG lResult = CallWindowProc( ( WNDPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );
by Antonio Linares
Mon Dec 19, 2011 9:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need copy of the following functions if any body has them.
Replies: 9
Views: 3527

Error al compilar con bcc63 FARPROC (solucionado)

esta es la linea ofendida LONG lResult = CallWindowProc( (FARPROC) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam ); este es el mensaje de error que interrunpe la compilacion Error E2342 source\\fixsays.prg 18: Type mismatch ...
by carlos vargas
Sun May 08, 2011 9:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al compilar con bcc63 FARPROC (solucionado)
Replies: 2
Views: 550

Re: Dialog controls are flickering when resized..

... hDC ) INLINE 1ENDCLASSMETHOD Paint() CLASS TMydialog   local aInfo := ::DispBegin()     CallWindowProc( ::nOldProc, ::hWnd, WM_PAINT, ::hDC, 0 )   if ValType( ::bPainted ) == "B"      Eval( ...
by fraxzi
Sun Jun 06, 2010 1:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog controls are flickering when resized..
Replies: 34
Views: 9126

Re: Se necesita ayuda en el wiki !

... BeginPaint() Bin2d() Bindtoport() Bitblt() BringWindowtotop() Browse() Btndisable() BtnPaint() BuildCommDCB() C2Hex() CallDll() Calldll32() CallWindowProc() cArgV() cChr2Data() cCtrl2Chr() cDlg2Chr() cFileDisc() cFileExt() cFileMask() cFileName() cFileNoExt() cFileNoPath() cFilePath() cFileSubDir() ...
by Cgallegoa
Sat Feb 20, 2010 8:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5503

Re: FWH/xHarbour Menus

... ) { if( uMsg == WM_ERASEBKGND ) { return 1; } else if( uMsg == 0x0128 ) // SAYs were erased when pressing ALT WM_UPDATEUISTATE { LONG lResult = CallWindowProc( ( FARPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam ); InvalidateRect( hWnd, NULL, TRUE ); return lResult; ...
by E. Bartzokas
Mon May 25, 2009 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH/xHarbour Menus
Replies: 20
Views: 7760

Richard,

Its not that simple as we are calling the standard Windows Button paint procedure and if we override it, then we will not get the standard button painting :-(

CallWindowProc( ::nOldProc, ::hWnd, WM_PAINT, ::hDC, 0 )

Maybe we find a way
by Antonio Linares
Thu Oct 18, 2007 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BTNBMP text on 2 lines
Replies: 8
Views: 1480

Prueba a comentar la llamada a CallWindowProc:

// CallWindowProc( ::nOldProc, ::hWnd, WM_ERASEBKGND, ::hDC, 0 )
by Antonio Linares
Tue Sep 04, 2007 7:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Gpf en toolbar
Replies: 3
Views: 728

Gpf en toolbar

... es donde me da el gpf . alguna idea ? if ::oBrush != nil FillRect( ::hDC, GetClientRect( ::hWnd ), ::oBrush:hBrush ) else Aqui se proudce el gpf CallWindowProc( ::nOldProc, ::hWnd, WM_ERASEBKGND, ::hDC, 0 ) endif un saludo y gracias
by Frafive
Mon Sep 03, 2007 7:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Gpf en toolbar
Replies: 3
Views: 728

Para Antonio - Problema con las fechas Fwh 7.05

... From: => TCONTROL:HANDLEEVENT(0) Called From: => TGET:HANDLEEVENT(0) Called From: .\source\classes\WINDOW.PRG => _FW Called From: => CALLWINDOWPROC(0) Called From: => TGET:LBUTTONDOWN(0) Called From: => TWINDOW:HANDLEEVENT(0) Called From: => TCONTROL:HANDLEEVENT(0) Called ...
by jacgsoft
Mon Jun 18, 2007 5:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Antonio - Problema con las fechas Fwh 7.05
Replies: 10
Views: 1635

... método HandleEvent() de TGet.prg, y de momento no he tenido problemas y hace lo que deseo. El método al final queda: .../... case nMsg == WM_PASTE CallWindowProc( ::nOldProc, ::hWnd, WM_PASTE, 0, 0 ) ::oGet:buffer = Pad( GetWindowText( ::hWnd ), Len( ::oGet:buffer ) ) DEFINE CLIPBOARD oClp OF Self ...
by FiveWiDi
Mon Apr 16, 2007 5:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Métodos Cut y Paste de TGet y ::bpostkey.
Replies: 3
Views: 904
Next

Return to advanced search