FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour xbrowse header size
Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
xbrowse header size
Posted: Wed Mar 05, 2008 06:12 PM

How I can see the size of each header with a click ?

Best Regards, Saludos



Falconi Silvio
Posts: 445
Joined: Thu Feb 21, 2008 11:58 AM
Re: xbrowse header size
Posted: Wed Mar 05, 2008 06:51 PM
Silvio wrote:How I can see the size of each header with a click ?


Hello Silvio!

Try this implementation at method HeaderLButtonUp at the end of implementation of original code...

METHOD HeaderLButtonUp( nMRow, nMCol, nFlags ) CLASS TXBrwColumn

   ...

   nCol := ::oBrw:MouseColPos( nMCol ) // if the column header was clicked... more than 0, was clicked!

   IF nCol > 0 .AND. !lDragged  && if not for swapping the column

      oCol := ::oBrw:colAtPos( nCol ) // returns the object columns that was clicked
      alert( oCol:nWidth )

   ENDIF
      
RETURN
Peace and lighting!

Júlio César M. Ferreira

FWH 8.10 / xHB 1.1.0 / xDevStudio 0.72 / Pelles C 5.0.1 / SQLLIB 1.9
Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
xbrowse header size
Posted: Thu Mar 06, 2008 08:09 AM

thanks
But I remember there was a xbrowse method made it
I remember of a utility of Otto made it and created the source od each column...
where i can found it ?

Best Regards, Saludos



Falconi Silvio
Posts: 6984
Joined: Fri Oct 07, 2005 07:07 PM
xbrowse header size
Posted: Thu Mar 06, 2008 08:53 AM

http://www.fwcodesnips.com/

.Snipkeeper

Download snipkeeper + xBTool

Here are videos how to use it:

http://www.atzwanger.com/fwvideo/xbtool ... lFont.html

http://www.atzwanger.com/fwvideo/xBTool2.html

Regards,
Otto

Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
xbrowse header size
Posted: Thu Mar 06, 2008 10:59 AM

thanks

but I remember there was an command to use on xbrowse :
I used it and the when I finished to set all columns size I rem this command
this commando shoed the column size when I drag each column : it shoed a message on video with the size variable and I not Know where I take it !!!

Best Regards, Saludos



Falconi Silvio
Posts: 6984
Joined: Fri Oct 07, 2005 07:07 PM
xbrowse header size
Posted: Thu Mar 06, 2008 11:03 AM

have a look into:

func f_SaveState(oBrw)

in the testxbr.prg.

Posts: 445
Joined: Thu Feb 21, 2008 11:58 AM
xbrowse header size
Posted: Thu Mar 06, 2008 01:24 PM
Silvio wrote:thanks
But I remember there was a xbrowse method made it
I remember of a utility of Otto made it and created the source od each column...
where i can found it ?



Exists the method GetDisplayColsWidth( aSizes )... but, internally, it is the same structure... Think fine!
Peace and lighting!

Júlio César M. Ferreira

FWH 8.10 / xHB 1.1.0 / xDevStudio 0.72 / Pelles C 5.0.1 / SQLLIB 1.9

Continue the discussion