Search found 216 matches: age

Return to advanced search

Re: how to change the size of an xbrowse in runtime

Please seeing the picture https://i.postimg.cc/NFwR77x7/io.png if I select "age" I go to activate the age filters but I go to activate box number 3, the topmost one, how can I make it so that if the first box is not activated, the age box takes ...
by Silvio.Falconi
Sun May 05, 2024 4:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 280

Dynamic Table Filter Control

... </tbody> </table> </div> <!-- Dynamische Filter-Divs --> <div id="filter-container"> <div id="age-div" class="filter-div grid-container border mb-2 p-2" style="display: none;"> <label>Alter:</label> <div ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 174

Re: Filter on Xbrowse

... the size and sho first group of radiomenu https://i.postimg.cc/CLGj5MRv/second-step.png third step the end user also clicks the age checkbox and the procedure further raises the xbrowse and shows the options https://i.postimg.cc/RhcnWGZ3/third-step.png obviously ...
by Silvio.Falconi
Thu May 02, 2024 7:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 703

Re: Filter on Xbrowse

... and must display two radio items at the top above the words "filter by" 1) married 2) unmarried 2) if I click in the second checkbox (age) the procedure must further change the dimensions of the xbrowse and insert the three possibilities with radioitems above 1) 20 2) 40 3) over 50 ...
by Silvio.Falconi
Thu May 02, 2024 6:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 703

Re: Question about performance RowSet

... and informattions. RowSet RowSet takes a bit more time, because during creation it collects a lot other relevant information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all ...
by Eroni
Wed Mar 20, 2024 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4128

Re: Question about performance RowSet

RowSet RowSet takes a bit more time, because during creation it collects a lot other relevant information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all extremely faster ...
by nageswaragunupudi
Sat Mar 16, 2024 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4128

Sankey Diagram - FIVEWIN/WEBVIEW sample

... Useful for representing flow charts WINHOTEL Such a diagram would effectively visualize how the origin of guests is distributed across various age groups. For example, a wider path from the age group 18-25 to Germany would indicate that a larger proportion of guests in this age group are from ...
by Otto
Sun Jan 14, 2024 8:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sankey Diagram - FIVEWIN/WEBVIEW sample
Replies: 0
Views: 610

Re: Feliz cumpleaños Cristobal

Happy Birthday Cristobal..

I was recently told that at a certain age the clock actually starts to run backwards :)

Rick Lipkin
by Rick Lipkin
Fri Jan 12, 2024 6:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Feliz cumpleaños Cristobal
Replies: 12
Views: 571

Re: phpBB to LLM

This is the type of csv file that we have to generate from a DBF: customer.csv ID,FIRST,LAST,STREET,CITY,STATE,ZIP,HIREDATE,MARRIED,AGE,SALARY,NOTES 1,Homer,Simpson,32179 Maiden Lane,Springfield,IL,20503-8202,1992-09-18,True,50,5900.0,This is a test for record 1 2,Ceci,Gibbard,9540 Raynes ...
by Antonio Linares
Fri Dec 22, 2023 6:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4748

Xbrowse -> Tree -> Xbrowse

... how could I go from xbrowse to Tree (in the same normal xbrowse) grouping the customer.dbf archive into groups for a sample (married, age >50) making the user select the desired group and then go back to normal xbrowse obviously with search on the fields depending on the indexes ...
by Silvio.Falconi
Wed Oct 25, 2023 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse -> Tree -> Xbrowse
Replies: 0
Views: 359

Xbrowser() setting not found

... want to have a xbrowser() as small as possible at a specific location. use customer XBROWSER "CUSTOMER" COLUMNS "STATE", "AGE", "MARRIED", "SALARY" SETUP ( ; oBrw:lHScroll := .f.,; oBrw:lVScroll := .f.,; oBrw:lToolbar := .f.,; // not ok oBrw:lFullGridClr ...
by Marc Venken
Wed Aug 30, 2023 10:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowser() setting not found
Replies: 1
Views: 206

Re: PICTURE for DATE() ?

hi, thx for Answer your Sample is for DBF so i guess FIELD AGE is Type "D" i want to use "Record-Set" (not ADO) from TPQServer() which use a Array when call METHOD Edit() it will "display" right but i can "input" ...
by Jimmy
Mon Jul 17, 2023 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 425

Re: Create help system with F1

... topics based on specific keywords or phrases. Created Date: The date when the help topic was created. This field can be useful for tracking the age of the content and determining if any updates or revisions are necessary. Last Updated Date: The date when the help topic was last updated. This ...
by Antonio Linares
Tue Jul 11, 2023 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 896

Re: Summation by condition

Here some samples oBrw:Age:bSumCondition := { |v,o| o:Value % 2 == 1 }, ; oBrw:State:nFooterType := AGGR_COUNT, ; oBrw:State:bSumCondition := { |v,o| "A" $ o:Value }, ; oBrw:Salary:nFooterType := AGGR_SUM, ; oBrw:Salary:bSumCondition ...
by Marc Venken
Fri Jun 02, 2023 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Summation by condition
Replies: 2
Views: 191

Re: CLASS modification

... spending time with my 15 grandchildren, attending theater productions, going to Disneyland regularly, and so much more. I also travel. With age comes wisdom, and that is why I still program and support clients. I have a great balance of time, but everyone I know who does not rigorously exercise ...
by TimStone
Thu May 25, 2023 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 1775
Next

Return to advanced search