Search found 1186 matches: bottom

Return to advanced search

Re: Compiling with new harbour_bcc770_32_20240309

... %HOME%\uuid.lib=4,.F.,0,0, %C_LIB_INSTALL%\C0W32.OBJ=5,.T.,0,0, %C_LIB_INSTALL%\CW32.LIB=6,.T.,0,0, then there is also at bottom [Files] %HOME%\test.prg=1,.F.,0,0, %HOME%\tslines.prg=2,.F.,0,0, %HOME%\Resource\default.rc=3,.F.,0,0, %HOME%\uuid.lib=4,.F.,0,0, %C_LIB_INSTALL%\C0W32.OBJ=5,.T.,0,0, ...
by Silvio.Falconi
Tue Mar 19, 2024 10:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling with new harbour_bcc770_32_20240309
Replies: 15
Views: 382

change size dialog selecting noption folder

I have a dialog I have a folder on this dialog I have a buttonbar at the bottom of odlg I would like to make the dialog smaller when the end user selects tab number 3 and tab number 6 I made a small test Problem is when press folder tab the dialog is resized ...
by Silvio.Falconi
Thu Mar 14, 2024 11:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change size dialog selecting noption folder
Replies: 3
Views: 81

Re: How to put a horizontal scroll bar at the bottom of xBrowse

Rick,
Could it be that your xBrowse is too high for the dialog? One can't even see the arrow down at the bottom of the vertical scrollbar.
Best regards,
Otto
by Otto
Wed Mar 06, 2024 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 235

Re: How to put a horizontal scroll bar at the bottom of xBrowse

Armando Here is the code ... I do have the form in a .rc but I would think you should be able to change the browse behaviour in code ?? Rao ?? REDEFINE xBROWSE oLBXA        ;         RECORDSET oRsContact        ;         COLUMNS "IDSTATUS",         ;                 "COMPANY",   ...
by Rick Lipkin
Wed Mar 06, 2024 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 235

Re: How to put a horizontal scroll bar at the bottom of xBrowse

Rick:

If you use a resource editor like Pelles, try this

Code: Select all  Expand view

Window styles    0x50B00000
 


I hope these can help you.

Regards
by Armando
Tue Mar 05, 2024 11:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 235

Re: How to put a horizontal scroll bar at the bottom of xBrowse

But they are both standard when we setup the xbrowse ? Did you turn off the horizontal ?

with

oBrw:lHScroll := .T. or .f. we can put them on and off.

or in the

With object oBrw
...
...
:lHScroll := .T.
END

By change some of the Xbrowse code to show ?
by Marc Venken
Tue Mar 05, 2024 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 235

Re: How to put a horizontal scroll bar at the bottom of xBrowse

Hi Marc Thanks for your help ... Your idea did not work .. I am looking for a horizontal scroll bar across the bottom of my browser ( xbrowse ) since I have several columns that are out of range of the screen and I just want to be able to scroll across the bottom like we do on ...
by Rick Lipkin
Tue Mar 05, 2024 10:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 235

Re: How to put a horizontal scroll bar at the bottom of xBrowse

Hey Rick,

Do you want a extra hor.scroll bar ? Not seen on the forum yet.

For the standart :

oBrw:nRowHeight := 40 // and use a larger font
oBrw:lHScroll := .T.

but I think you are looking for something else ...
by Marc Venken
Tue Mar 05, 2024 7:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 235

How to put a horizontal scroll bar at the bottom of xBrowse

To All

I have a client who wants extra large fonts and I was looking for a way to put a bottom horizontal scroll bar at the bottom of an xBrowse ??

Thanks
Rick Lipkin
by Rick Lipkin
Tue Mar 05, 2024 3:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to put a horizontal scroll bar at the bottom of xBrowse
Replies: 6
Views: 235

Re: A picture on top of the text

1) Text Bottom aligned and image top aligned?
or
2) Paint text in foreground over image as background?
or
3) Text as background and transparent image as foreground?
by nageswaragunupudi
Tue Mar 05, 2024 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A picture on top of the text
Replies: 3
Views: 168

Re: GROUPBOX

... specify the top and left coordinates. <oGroup> The variable to containt the object. <nRight>, <nBottom> To specify the right and bottom coordinates. <cLabel> The caption of the group. <oWnd> The window or dialogbox container of this control. <cClrFore> The foreground ...
by TimStone
Tue Feb 27, 2024 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 152

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

Dear Jimmy, On CLASS TTaskPanel FROM TControl add this DATA: DATA bOnCollapse and then add this code at the bottom of METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TTaskPanel:      ::oWnd:CheckScroll()      if ! Empty( ::bOnCollapse )   // new         Eval( ...
by Antonio Linares
Sat Feb 24, 2024 6:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 337

UrlLnk with Popup menu

Is it possible to insert a popup menu at the bottom of a UrlLnk control? I tried but it showed the menu far from url lnk On TexplorerBar I insert a link local bClick := { | o | addMenu() } oPanel4:AddLink( "testlink", bClick, ".\bitmaps\mail.bmp",oFontSmall,CLR_BLACK,CLR_WHITE ...
by Silvio.Falconi
Fri Feb 23, 2024 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UrlLnk with Popup menu
Replies: 4
Views: 205

Re: Count xbrowse records

... "DELS" ) Nages, is there a function in Xbrowse to calculate how many records are visible in xbrowse? I explain to you: at the bottom of the Xbrowse I want to insert two buttons to move the records and I want them to be activated only if the record count exceeds the actual display ...
by Silvio.Falconi
Fri Feb 23, 2024 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 215

azzoMax-dashboard for internal use

... When azzoMax is opened in a remote session, you can also start the desktop programs . What's special about azzoMax is that we have a switch at the bottom right of the cards, where you can immediately call up and edit the documentation. The documentation is so important. Best regards, Otto Video: ...
by Otto
Sun Feb 18, 2024 8:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: azzoMax-dashboard for internal use
Replies: 1
Views: 180
Next

Return to advanced search