Search found 30 matches: wndtop

Return to advanced search

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: 6328

Re: recompilar fiveh.lib

Implementa esta funcion:

function GetCoors( hWnd )

return { WndTop( hWnd ), WndLeft( hWnd ), WndBottom( hWnd ), WndWidth( hWnd ) - WndLeft( hWnd ) }
by Antonio Linares
Mon Sep 24, 2012 12:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15035

Re: Help to complete the wiki and get a free FWH 9.07 !!!

... xBrwAddColumn() ok VirtualRdd() ok WSAStartUp() ok WSAGetLastError() ok WSACleanUp() ok WSAAsyncSelect() ok WNetGetErrorText() ok VolumeName() ok WndTop() ok These functions my second. Richard
by richard-service
Thu Aug 27, 2009 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to complete the wiki and get a free FWH 9.07 !!!
Replies: 80
Views: 14245

Re: Help to complete the wiki and get a free FWH 9.07 !!!

... xBrwAddColumn() ok VirtualRdd() ok WSAStartUp() ok WSAGetLastError() ok WSACleanUp() ok WSAAsyncSelect() ok WNetGetErrorText() ok VolumeName() ok WndTop() ok Regards, Richard
by richard-service
Thu Aug 27, 2009 3:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to complete the wiki and get a free FWH 9.07 !!!
Replies: 80
Views: 14245

espero te sirva o lo que busques

On INIT (WndTop(oLbx:hWnd,240), WndLeft(oLbx:hWnd,120)
by tomafa
Wed Oct 08, 2008 8:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mover un listbox en un Window
Replies: 4
Views: 764

Mover un listbox en un Window

Saludos a todos Antonio como hago para mover un listbox en un window, probe con esta opcion WndTop( oLbx:hWnd, 200 ) en el ON INIT del ACTIVATE WINDOW, pero no me funciona
by angstin
Wed Oct 08, 2008 8:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mover un listbox en un Window
Replies: 4
Views: 764

... en la posición 0,0; inclusive en el ejemplo original del wBrowse no pude hace que funcione correctamente con recursos. Con el remiendo: On INIT (WndTop(oLbx:hWnd,240), WndLeft(oLbx:hWnd,120) seguí con la obra. Lo que me extraña es que nadie mas ha reportado este caso en el foro. O es que yo tengo ...
by jvargas
Thu Sep 18, 2008 3:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: wBrowse de Hernan
Replies: 14
Views: 1801

Jorge,

Prueba esto y veamos si cambia de posición:

ACTIVATE DIALOG oDlg ;
ON INIT WndTop( oBrw:hWnd, 200 )
by Antonio Linares
Sat Sep 13, 2008 12:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: wBrowse de Hernan
Replies: 14
Views: 1801

Pruébalo asi:

ACTIVATE DIALOG oDlg ;
ON INIT MsgInfo( WndTop( oBrw:hWnd ) )
by Antonio Linares
Fri Sep 12, 2008 9:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: wBrowse de Hernan
Replies: 14
Views: 1801

William, Las funciones WndTop(), WndLeft(), WndWidth() y WndHeight() son de tipo setget, por lo que puedes usarlas para cambiar esos valores: WndTop( hWnd [, nNewTop ] ) --> nTop WndLeft( hWnd [, nNewLeft ] ) --> nLeft WndWidth( ...
by wmormar
Sat Aug 30, 2008 1:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: coordenadas de ventanas (SDI, MDI)
Replies: 5
Views: 973

William, Las funciones WndTop(), WndLeft(), WndWidth() y WndHeight() son de tipo setget, por lo que puedes usarlas para cambiar esos valores: WndTop( hWnd [, nNewTop ] ) --> nTop WndLeft( hWnd [, nNewLeft ] ) --> nLeft WndWidth( ...
by Antonio Linares
Fri Aug 29, 2008 10:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: coordenadas de ventanas (SDI, MDI)
Replies: 5
Views: 973

Antonio,

The original code is oRect:Move( max( oRect:nTop, ::ntop ) is not working which I changed to call to WndTop( ::hWnd ) as suggested.

Any suggestion for possible work around would be highly appreciated.

Thanks,

Jose
by xhbcoder
Tue May 20, 2008 4:30 pm
 
Forum: FiveWin for CA-Clipper
Topic: Converting POS application to xHarbour + FWH
Replies: 50
Views: 15560

Jose,

It seems to me that the call to WndTop( ::hWnd ) was recently introduced by you.

That code can't work, as there is no a DATA hWnd in your class CRect
by Antonio Linares
Tue May 20, 2008 10:38 am
 
Forum: FiveWin for CA-Clipper
Topic: Converting POS application to xHarbour + FWH
Replies: 50
Views: 15560

Jose,

In class CRect there is a call to WndTop( ::hWnd ) and there is not a DATA hWnd defined.
by Antonio Linares
Mon May 19, 2008 5:55 pm
 
Forum: FiveWin for CA-Clipper
Topic: Converting POS application to xHarbour + FWH
Replies: 50
Views: 15560

Jose,

If you keep the handle of the window somewhere, use it here:

WndTop( hWnd ) // notice we don't use ::

If you provide us a small and self contained PRG then we may be able to provide you a better tech support :-)
by Antonio Linares
Mon May 12, 2008 6:33 pm
 
Forum: FiveWin for CA-Clipper
Topic: Converting POS application to xHarbour + FWH
Replies: 50
Views: 15560
Next

Return to advanced search