Search found 24 matches: marquee

Return to advanced search

FWH 2102: XBrowse:SetMultiSelectCol()

... of rows, by showing the selection by way of checkboxes in a separate column (mostly the first column), in preference to the older way of selecting Marquee style MARQSTYLE_HIGHLROWMS. However, this requires quite a bit of extra coding by the programmer. Now this is very much simplified. What all ...
by nageswaragunupudi
Sat Mar 13, 2021 7:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2102: XBrowse:SetMultiSelectCol()
Replies: 17
Views: 2360

Re: progress bar

Here how the marquee is shown on windows 7:
Image
by AntoninoP
Wed Dec 27, 2017 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: progress bar
Replies: 5
Views: 1180

Re: progress bar

Thanks for the help !

what is "progress in marquee mode" ?

but it would be interesting to do it in another thread
by Natter
Wed Dec 27, 2017 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: progress bar
Replies: 5
Views: 1180

Re: progress bar

I think you have 2 possibilities.
  1. Show a gif or an AVI file, there are the TGif control and the TAnimate control for this
  2. Use the progress in marquee mode.
Look that both solution needs that you call to SysUpdate regurarly...
by AntoninoP
Wed Dec 27, 2017 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: progress bar
Replies: 5
Views: 1180

Re: Progress bar windows 10 animation

About TProgress:New First thing the nStyle shoud has PSB_MARQUEE not PBM_SETMARQUEE:   ::nStyle    = nOR( WS_CHILD, WS_VISIBLE,;                      If( lDesign, WS_CLIPSIBLINGS, 0 ),;                      If( lVertical, PBS_VERTICAL, 0 ), WS_TABSTOP,;                      If...
by AntoninoP
Thu Dec 21, 2017 1:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Progress bar windows 10 animation
Replies: 15
Views: 4166

Re: Xbrowse : MARQSTYLE_not working with mousewheel

... You can navigate with mouse-wheel to another record far away and use Shift-Click to select from this start row to the current row. Please use this marquee-style only when required for multi-row selection and not otherwise.
by nageswaragunupudi
Sun Feb 05, 2017 11:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : MARQSTYLE_not working with mousewheel
Replies: 7
Views: 1201

Re: New useful addition to xBrowse

... the Cell under focus is visible to the user. However, this assumes that the programmer has judiciously used the colors. By default, the following Marquee styles highlight the cell under focus and are recommended for inline edit of cells: #define MARQSTYLE_DOTEDCELL   1#define MARQSTYLE_SOLIDCELL ...
by nageswaragunupudi
Tue Mar 01, 2016 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New useful addition to xBrowse
Replies: 2
Views: 768

Re: Progress Bars, no funciona correctamente.

A ver, estos son los mensajes que tenemos para usar este control: #define PBM_SETRANGE (WM_USER+1) #define PBM_SETPOS (WM_USER+2) #define PBM_DELTAPOS (WM_USER+3) #define PBM_SETSTEP (WM_USER+4) #define PBM_STEPIT (WM_USER+5) #if (_WIN32_IE >= 0x0300) #define PBM_SETRANGE32 (WM_USER+6) // lParam ...
by Antonio Linares
Tue Jul 22, 2014 6:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Progress Bars, no funciona correctamente (Solucionado)
Replies: 27
Views: 5542

xBrowse: How to detect when value in a SetCheck col changed?

Hi all,
How to detect when a value in a SetCheck col is changed or toggled? I tried with oBrw:bChange and oCol:bEditValid with no success.

Marquee style is set to MARQSTYLE_DOTEDCELL and am browsing an array.

I'm using FWH11.8.

TIA
by hua
Tue Jul 22, 2014 5:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: How to detect when value in a SetCheck col changed?
Replies: 4
Views: 826

Re: para xBrowse nMarqueeStyle look Windows 8

Claro, encantado:

Image

Se parece mucho el marquee style nº 4, cambia un pelín el azul a más suave.

Muchas gracias.
by lucasdebeltran
Wed Jun 05, 2013 8:07 am
 
Forum: To do - WishList / Por hacer - Peticiones
Topic: para xBrowse nMarqueeStyle look Windows 8
Replies: 2
Views: 1063

Re: xBrowse - Bookmark

Mario Forgive me if I mis-translated your message .. if you are trying to trap a bookmarked row in xBrowse .. 1) make sure you use this Marquee style oLbx:nMarqueeStyle := MARQSTYLE_HIGHLROWMS  // multi-row select  and then you can trap the selected rows like this .. aCols := oLbx:aSelectedFor ...
by Rick Lipkin
Thu May 09, 2013 5:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse - Bookmark (post CERRADO)
Replies: 3
Views: 571

Re: New FWH 11.09

Antonio,

So in order to have WIN7 marquee styles as old behaviour y just set oBrw:lMultiSelect := .f.?.

Thanks
by ukservice
Thu Sep 29, 2011 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 11.09
Replies: 14
Views: 4519

New FTDN September/Septiembre 2011 (FWH 11.09)

... shows new Windows 8 Metro UI concepts, that you can easily implement in your apps! * New: New DATA lMultiSelect in xbrowse.prg. By default marquee styles HIGHLROWMS and HIGHLWIN7 provide multiselect feature. HIGHLCELL turns on multiselect feature temporarily if user presses SHIT and CTRL ...
by Antonio Linares
Wed Sep 28, 2011 9:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2011 (FWH 11.09)
Replies: 4
Views: 4010

Re: xbrowse don't show datas

Dear Mr.Wanderson. oBrw:aSelected is an Array of RecNo()'s (Single dimensional) Use the below given Marquee style for multi select xBrowse oBrw:nMarqueeStyle = MARQSTYLE_HIGHLROWMS You may further process oBrw:aSelected array as per your requirement oBrw:bKeyDown:= {| ...
by anserkk
Wed Jun 23, 2010 4:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse don't show datas
Replies: 4
Views: 783
Next

Return to advanced search