From: Alexander S.K. <al...@be...> - 2015-07-23 12:24:30
|
Itamar M. Lins Jr. Lins пишет: > Hi! > > Error BASE/1075 Erro nos parâmetros: > > Called from ->HBROWSEEX:ONEVENT(830) > Called from ->HWG_DLGBOXINDIRECT(0) > Called from ->HDIALOG:ACTIVATE(135) > > In line 830 of hBrowseEx.prg > > line 828-> ELSEIF msg == WM_MBUTTONUP > Line 829-> ::nWheelPress := iif( ::nWheelPress > 0, 0, lParam ) > > > In line 829 lParam is logic! No, lParam isn't logic, it may has the POINTER type. Try change the line 829 to ::nWheelPress := iif( ::nWheelPress > 0, 0,hwg_PtrToUlong( lParam ) ) Regards, Alexander. |