Search found 39 matches: ohscroll

Return to advanced search

Re: Problem with ximage

... Image class) @ 0, 0 XIMAGE oImage SIZE 280, 200 OF oCattura oImage:bLClicked = { | nRow, nCol | MouseDown( oImage:oVScroll:GetPos()+nRow, oImage:oHScroll:GetPos()+nCol) } then I cannot converte this command "oImage:oVScroll:GetPos()+nRow" run good with Image It not Found getpos() with ...
by Silvio.Falconi
Sat Oct 13, 2018 8:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with ximage
Replies: 9
Views: 1055

Re: FWH 16.11 Texured Fonts

... //----------------------------------- FUNCTION BUILDMETRO(oWnd, nDStyle) LOCAL oMetro, oHScroll, oBtn[30], oBrush, oVSlider LOCAL oSelf, nOld := 0, oLizenz, cText, pBrush, aPalBmp DEFINE METROPANEL oMetro OF oWnd TITLE "" ; // ...
by ukoenig
Thu Dec 01, 2016 8:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.11 Texured Fonts
Replies: 8
Views: 1809

Re: "Snap" for Clipper

...  3332  3356  3358                   3358  3359  3359  3360  3364  3365  3365  3366  3367  3368 OGET                    WINDOW.PRG     3884  3894G OHSCROLL                WINDOW.PRG      447  1199  1215  1272  1272  1276  1276  1302  1304  1307                   1311  1314  1318  1321  2602  2603 ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6542

Re: several minor bugs FWH 13.07

... !::lZoom .and. ! lInit ::Zoom( .T. ) // A.L. 08 Oct 2007 endif if ::lZoom ::oWnd:oVScroll:SetRange( 1, VSCROLL_RANGE ) if ::nZFactor > 1 ::oWnd:oHScroll:SetRange( 1, HSCROLL_RANGE ) else Con ese código, si pinchas en el combobox o en el menú y cambias el Factor sí que funciona.
by elvira
Fri Aug 23, 2013 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: several minor bugs FWH 13.07
Replies: 10
Views: 2311

HScroll y VSroll con tsBrowse

... V y H. la definicion de las barras en ambas de scroll estan de acuerdo al fwh: ::oVScroll := TScrollBar():WinNew( nMin, nMax, nPage, .T., Self ) ::oHScroll := TScrollBar():WinNew( nMin, nMax, , .F., Self ) Alguien que haya resuelto este detalle?
by noe aburto
Wed Aug 21, 2013 10:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HScroll y VSroll con tsBrowse
Replies: 10
Views: 1187

Para Antonio: xBrowse nFreeze (APORTE)

... .t. ) endif endif elseif ::nColOffset > 1 ::nColOffset-- ::GetDisplayCols() if lRefresh ::Super:Refresh( ::FullPaint() ) endif endif if ::oHScroll != nil ::oHScroll:GoUp() endif ::Change( .f. ) return nil */ //-----------------------------------------------------//Method GoLeft() modified ...
by FranciscoA
Sun May 19, 2013 12:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Antonio: xBrowse nFreeze (APORTE)
Replies: 6
Views: 1755

Hide / Show Image-scrollbars ( like in xBrowse ) ?

... .F., not HScroll and VScroll can be defined, like in xBrowse. I only want to show Scrollbars if Images > Resource-size . I found oVScroll and oHScroll in class TBitmap , also tested changing the Image-style, but the bars are still visible. REDEFINE IMAGE oIMAGE ID 510 FILENAME NIL OF oDlg ...
by ukoenig
Tue Feb 12, 2013 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide / Show Image-scrollbars ( like in xBrowse ) ?
Replies: 4
Views: 1077

Re: xBrowse => oBrw:SelectCol(nPos) doesn't work ?

Mr. Rao, Thank You very much. I tested, but it seems to work only in one Direction I still had to add < oBrw:oHScroll:SetPos( nCPos ) >, otherwise the HScroll-thumb stays at the left. I got it working with : // nSGet[3] = max Cols @ 173, 455 BTNBMP oBtn[15] ; SIZE 32, 11 ...
by ukoenig
Mon Jul 30, 2012 3:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse => oBrw:SelectCol(nPos) doesn't work ?
Replies: 2
Views: 698

Re: tcbrowse horizontal scroll

... case nScrollCode == SB_PAGEDOWN while nCol < Len( ::GetColSizes() ) .and. ; (::IsColVisible( nCol ) .or. ::nColPos == nCol) nCol++ end IF ::lNoHScroll <> .T. ::nColPos := nCol ::nColAct := nCol ::oHScroll:SetPos( nCol ) ::Refresh( .f. ) ENDIF
by MarcoBoschi
Tue Jun 26, 2012 2:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tcbrowse horizontal scroll
Replies: 5
Views: 1066

Re: TsBrowse last version. Where to download ?

I had a problem with the horizontal scroll bar. I traced it down to the addcolumn method. If you use addcolumn, there is no updating of ::oHScroll. The delcolumn has the code below to update the horizontal scroll bar. So I added that code to method addcolumn and it fixed my problem. I also ...
by Gale FORd
Wed Apr 20, 2011 2:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TsBrowse last version. Where to download ?
Replies: 14
Views: 2307

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

... bar is the one i want to hide or disable when the number of records are few. Also, i tried to revised my code so that the objects of scroll bars (oHScroll and oVScroll) become present but still disabling function and/or property are not working. thanks. regards, apollo
by amnunez
Fri Feb 04, 2011 12:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2373

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Dear All,

Thanks for ur great ideas. Sir James, i've tried the function disable() but the function was not present neither the oHScroll/oVScroll objects. I still wondered why these objects are not present in xbrowse object...


thanks.

regards,
apollo
by amnunez
Thu Feb 03, 2011 5:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2373

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Apollo,

My mistake. Instead of CreateFromCode() you need to use CreateFromResource( nID ).

You can also try:

oBrw:oHScroll:disable()
oBrw:oVScroll:disable()

I don't think that Gale's idea of hiding the scrollbars will work since the mouse wheel and arrow keys would still provide scrolling.

James
by James Bott
Wed Feb 02, 2011 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2373

Re: listbox horizontal scrollbar

Otto,

Have you tried with:

oLbx:oHScroll:SetRange( 0, 0 )
by Antonio Linares
Sat Jul 31, 2010 4:41 am
 
Forum: FiveWin for Pocket PC
Topic: listbox horizontal scrollbar
Replies: 1
Views: 478

Re: How to end/hide oVscroll/oHscroll in dialog

... WS_HSCROLL, WS_SYSMENU )   ACTIVATE DIALOG oDlg CENTERED ;      ON INIT ( oDlg:oVScroll:SetRange( 0, 0 ),;                oDlg:oHScroll:SetRange( 0, 0 ) )return nil 
by Antonio Linares
Fri May 28, 2010 9:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to end/hide oVscroll/oHscroll in dialog
Replies: 3
Views: 538
Next

Return to advanced search