Search found 23 matches: unselect

Return to advanced search

Xbrowse Check/uncheck all

... https://i.postimg.cc/pX68hMFq/ff.png on Xbrowse I used :SetMultiSelectCol() with the buttons ( red box) I wish select all items or unselect all wich is the command ? I save the months in the ini file with an example string 111111111111 how do i load the configuration against the ...
by Silvio.Falconi
Fri May 20, 2022 7:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Check/uncheck all
Replies: 5
Views: 436

select/unselect 1 row on xbrowse

... Select block of rows Shift-Click and toggle selection by Ctrl-Click. But if I wish make the same from a button wich command I must call to select /unselect a row of xbrowse ? I tried with DEFINE BUTTON OF oBar RESOURCE "LOOK_SEL" ACTION oBrw:SelectRow(1) DEFINE BUTTON OF oBar RESOURCE ...
by Silvio.Falconi
Wed Feb 09, 2022 8:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: select/unselect 1 row on xbrowse
Replies: 0
Views: 192

Re: FWH 2103: XBrowse: oSortCbx

... could be to select colums in one process. I see in the sample above that you have to click 4 times on the header and select 4 times the column to unselect for the browse. My idea by this : I open the browse with all columns. select the ones that I need to process and save the state of the browse. ...
by Marc Venken
Thu Apr 15, 2021 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2103: XBrowse: oSortCbx
Replies: 23
Views: 2901

Re: Let Xbrowse update selected colums in other dbf

... CSV file for it from Xbrowse The idea now is that the source dbf has 22 fields and the prices are changed into it. Now my question for Xbrowse to unselect All 20 others (function i have) and see only the 2 fields Code and Price. Now I need een button ? that when hit, ALL rows of the source dbf ...
by Marc Venken
Wed Sep 23, 2020 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Let Xbrowse update selected colums in other dbf
Replies: 7
Views: 950

How to make memo edit in dialog automatic selectnone?

Has anyone found a way to have memo edit default to selectnone or unselect text during ON INIT?
I have tried many different ways to get the memo edit not to select all automatically.
This has caused more than 1 person to accidentally erase memo with keystroke.
by Gale FORd
Thu Aug 24, 2017 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make memo edit in dialog automatic selectnone?
Replies: 5
Views: 996

Re: xBrowse Cell Edit

Has anyone found a way to have memo edit default to selectnone() or unselect text during ON INIT? I have tried many different ways to get the memo edit not to select all automatically. This has caused more than 1 person to accidentally erase memo with keystroke. ...
by Gale FORd
Mon Aug 21, 2017 8:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Cell Edit
Replies: 8
Views: 1681

Re: La nueva apariencia de EasyReport

... donde .... a ver si cuatro ojos ven mas . Saludos. Un guante no, la dos manos :D Ese "bug" ya lo habia detectado: 1.- Debería "Unselect" cuando dentro de un area se pincha en una zona vacia (sea la misma u otra) -> en esto estaba ya, a ver si hoy estoy mas sembrado 2.- ...
by cnavarro
Tue Oct 07, 2014 5:47 pm
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: La nueva apariencia de EasyReport
Replies: 226
Views: 148567

Re: questions about 64 bits and FWH

... 64 and it is quite different from bcc 32. First of all, the download/setup for the Embarcadero's demo, is simply daunting. Its huge!!! even if you unselect many packages not needed by us. One of those differences is that LIB files are no longer used. Not with that sufix. It seems as they use ".a" ...
by Antonio Linares
Wed Feb 20, 2013 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: questions about 64 bits and FWH
Replies: 31
Views: 7483

Re: xbrowse -Unselect line

Modification to XBrowse: Please locate these three lines in the METHOD Adjust() of XBrowse calss:   if ::nMarqueeStyle == MARQSTYLE_HIGHLROWMS      ::Select(1)   endif  Comment out these three lines. Then initially no row will be selected. But were these li...
by nageswaragunupudi
Wed Mar 23, 2011 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -Unselect line
Replies: 8
Views: 1417

Re: xbrowse -Unselect line

Hi. Is there a way to open an xbrowsed array with NO record selected? Thank you, Reinaldo. I can think of this workaround for the time being: ACTIVATE WINDOW/DIALOG ....... ON INIT ( oBrw:aSelected := {}, oBrw:Refresh(), oBrw:SetFocus() ) OR ON INIT (oBrw:Selec...
by nageswaragunupudi
Wed Mar 23, 2011 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -Unselect line
Replies: 8
Views: 1417

Re: xbrowse -Unselect line

Reinaldo, test this code, please. oBrw2:CreateFromResource(181) oBrw2:SetRDD() oBrw2:bKeyDown := { |nKey| if(oBrw2:nMarqueeStyle==0,oBrw2:nMarqueeStyle := MARQSTYLE_HIGHLROWMS,) } ... ACTIVATE DIALOG oDlg CENTERED ; ON INIT ( if(oBrw2:nMarqueeStyle == MARQSTYLE_HIGHLROWMS,; //Multiselect (oBrw2:aSel...
by FranciscoA
Tue Mar 22, 2011 4:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -Unselect line
Replies: 8
Views: 1417

Re: xbrowse -Unselect line

Francisco; Yes. You are correct. The user may click on any other line, and that removes the 1st record from aSelection. But, most times my users don't want any record selected. My previous xbrowse does NOT autoselects a record when nMarqueeStyle = 5. It makes no sense to auto-select a row when you a...
by reinaldocrespo
Tue Mar 22, 2011 3:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -Unselect line
Replies: 8
Views: 1417

Re: xbrowse -Unselect line

I see now. But users can select the first line they want, by clicking without pressing ctrl, and then to do click on the next record while pressing ctrl. I know ... customer is always right. On the other hand, I think it's interesting that you post. I'll do some tests, and if I get something positiv...
by FranciscoA
Tue Mar 22, 2011 3:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -Unselect line
Replies: 8
Views: 1417

Re: xbrowse -Unselect line

Francisco; Thanks for your reply. If I understand correctly, I'm afraid this won't work. The problem is a bit more complicated. The xbrowse is displayed so that the user may pick multiple lines. They achieve this by clicking on the record while pressing cntrl. But the problem is that the first recor...
by reinaldocrespo
Tue Mar 22, 2011 2:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -Unselect line
Replies: 8
Views: 1417

Re: xbrowse -Unselect line

Other way:

oBrw:nMarqueeStyle := 0
by FranciscoA
Mon Mar 21, 2011 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -Unselect line
Replies: 8
Views: 1417
Next

Return to advanced search