Search found 129 matches: multiselect

Return to advanced search

Re: XBROWSE RESTRINGIR MULTISELECT (SOLUCIONADO!)

Mr. Rao many thanks for your time here is my sample, and i discovered my error! #include 'fivewin.ch'#include 'xbrowse.ch'REQUEST DBFCDXfunction main()   local oDlg, oBrw, oFont   USE CUSTOMER NEW VIA "DBFCDX"   DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14   DEFINE DIALOG o...
by MarioG
Fri Sep 06, 2013 1:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

I checked this with current version and also ver 12.04. In my test when we right click oBrw:aSelected is showing all selected records correctly. Please try this sample: #include 'fivewin.ch'#include 'xbrowse.ch'REQUEST DBFCDXfunction main()   local oDlg, oBrw, oFont   USE...
by nageswaragunupudi
Fri Sep 06, 2013 4:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

Mr Rao; Thank for your respond (in other post too) sorry for my english (I write from Google Traductor) I put, xbrowse, in active the Multi selection First, I selec with shift+clic or ctrl+clic, some registers. after I do right clic (to open a popup), over a selection and ::aSelected only return the...
by MarioG
Thu Sep 05, 2013 5:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

Ariel wrote:hola a todos,
alguien sabe como puedo controlar la multiseleccion en un xbrowse con :

oBrw:nMarqueeStyle:= MARQSTYLE_HIGHLWIN7
oBrw:lMultiSelect := .t.

x ejemplo, que no pueda elegir mas de 5 items ?

Gracias,
Salu2, Ariel.

You can choose any number of rows. There is no limit.
by nageswaragunupudi
Thu Sep 05, 2013 2:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

toc...toc
Nadie usa MULTISELCT?
Como se usaría, si no es como prentendo hacerlo?
by MarioG
Tue Sep 03, 2013 11:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

Gente; reformulo mi consulta por si no fui explícito Con el Explorador de windows, puedo, pulsando Ctrl-clic izq, marcar varios archivos. Luego, haciendo clic derecho, sobre cualquiera de ellos, abrir el menu secundario y, puedo entre otros, seleccionar "Copiar". Posteriormente al "Pe...
by MarioG
Mon Sep 02, 2013 1:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

Estimados; Ariel, el aSelect contiene es la posicion del registro seleccionado, no de columna, por lo cual cuando aSelect es mayor a cero, entonces se han hecho selecciones, tienes que tener en cuenta, que cuando marcas 1 solo registro en el xbrowse, automaticamente aSelect se incremente, eso quiere...
by MarioG
Fri Aug 30, 2013 1:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: Selecting xBrowse cells

... lo que dices de seleccion de REGISTROS MULTIPLES lo hace sin problema el xBrowse con la sentencia stylo nMarqueeStyle 6 Highlight row & multiselect, lo que el colega quiere es seleccion de CELDAS, como el stylo :nMarqueeStyle := MARQSTYLE_HIGHLCELL // 3 Highlight cell, creo que por alli ...
by joseluisysturiz
Wed Feb 06, 2013 12:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Selecting xBrowse cells
Replies: 10
Views: 1884

Re: Selecting xBrowse cells

... cell. I want to click on the first cell and swipe the mouse down 4 or 5 rows and across 3 or 4 columns to select all the cells. Excel style. BTW MultiSelect doesn't work in fwh\samples\testbrw.prg :( Muchas gracias por tu ayuda David
by David Williams
Tue Feb 05, 2013 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Selecting xBrowse cells
Replies: 10
Views: 1884

Re: To Antonio: Multiselect xBrowse

I added the requested option to the CSV-converter : xBrowse-MULTISELECT Save / Restore On a multi select xBrowse: 1. If I close the dialog / window, it returns the RECNO() of the highlighted record. How can I close without selecting ? oBrw:nArrayAt := ...
by ukoenig
Wed Oct 24, 2012 12:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: Multiselect xBrowse
Replies: 2
Views: 767

Re: To Antonio: Multiselect xBrowse

Consider this code .. one of our friends in this forum suggested this to me .. aCols := oLbx:aSelectedFor i = 1 to Len(aCols)    oLbx:BookMark(aCols[i])    _DoSomeFunc()Next  aCols[i] returns the row bookmark .. oLbx:BookMark(aCols[i]) takes you to that row where the ...
by Rick Lipkin
Tue Oct 23, 2012 5:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: Multiselect xBrowse
Replies: 2
Views: 767

To Antonio: Multiselect xBrowse

Antonio: I'm addressing this to you because I need an answer ASAP (sorry, I know you're way too busy). On a multi select xBrowse: 1. If I close the dialog / window, it returns the RECNO() of the highlighted record. How can I close without selecting ? 2. If I store the selected records in a file (dbf...
by HunterEC
Tue Oct 23, 2012 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: Multiselect xBrowse
Replies: 2
Views: 767

Re: XBROWSE RESTRINGIR MULTISELECT

Jose Luis, yo también voy a revisar la Classe a ver si encuentro algo.
Saludos.
by FranciscoA
Tue Oct 23, 2012 2:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

Ok Francisco, disculpa el mal entendido, tienes razon, no funciona con shift + flech arri/abaj el: :bKeyDown := { || if(len(oBrow:aSelected) = 2, MsgInfo("Seleccion maxima agotada"+STR(len(oBrow:aSelected))),) } creo que si revisamos como funciona al hacer click podemo repararlo entre todo...
by joseluisysturiz
Tue Oct 23, 2012 2:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991

Re: XBROWSE RESTRINGIR MULTISELECT

Saludos Francisco, disculpa te contradiga en lo que dices que no funciona la multi-seleccion con Shift+flecha-Abj/flecha Arr , me pusistes a dudar de lo que dije, asi que volvi a revisarlo y estoy en lo correcto, a mi me funciona sin ningun problema Shift + flecha arriba e igual flecha abajo sin ne...
by FranciscoA
Tue Oct 23, 2012 2:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE RESTRINGIR MULTISELECT
Replies: 19
Views: 4991
PreviousNext

Return to advanced search