Search found 212 matches: age

Return to advanced search

Re: Make hash work with colon

Ok, Nevermind, I found the answer in a post I posted in 2015.

Sorry guys, it's my age.

Add the line:
#include "xHb.ch"

Thanks,
by byron.hopp
Sun Sep 02, 2018 7:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Make hash work with colon
Replies: 1
Views: 461

Re: xBrowse con HASH

The syntax

h:Age

works only with xHarbour.

This syntax works with both Harbour and xHarbour:

h[ "Age" ]
by nageswaragunupudi
Sun Aug 26, 2018 1:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse con HASH
Replies: 11
Views: 1838

Re: To Nages Insert images on xbrowse

Mr. Navarro, How to add the 'AGE' along side with the 'NAME? :?: Age is other column With new syntax    @ 0, 0 XBROWSE oBrw OF oWnd ;      DATASOURCE "Cust" ;       COLUMNS "TRIM(FIRST)+', '+TRIM(LAST) AS FullName PICTURE ...
by cnavarro
Thu Aug 02, 2018 10:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Insert images on xbrowse
Replies: 11
Views: 2472

Re: To Nages Insert images on xbrowse

Mr. Navarro,

How to add the 'AGE' along side with the 'NAME?

:?:
by fraxzi
Thu Aug 02, 2018 2:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Insert images on xbrowse
Replies: 11
Views: 2472

New FTDN April/Abril 2018 (FWH 18.04)

... the group. Grand totals are appended at the end. Oringal array is not modified. Example: USE CUSTOMER aData := FW_DbfToArray( "STATE,CITY,AGE,SALARY" ) aData := ArrGroupSum( aData, 1, 2, { 3, 4 } ) XBROWSER aData * CLASS TToasT - New DATAS: DATA nXOffSet INIT 0 DATA nYOffSet INIT ...
by Antonio Linares
Mon Jun 04, 2018 6:34 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2018 (FWH 18.04)
Replies: 1
Views: 2162

New FTDN March/Marzo 2018 (FWH 18.03)

... := oCn:RowSet( "select * from states where id > ?", {20} ) // do something with oRs oRs:Requery( "select * from customer where age > ?",{45} ) // now oRs is a new table * TDatabase: Fixed bug while handling empty dbf. * TWBrowse: - New methods SetOBJ( oDbf/oRs/oQry ) ...
by Antonio Linares
Tue Apr 24, 2018 9:25 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2018 (FWH 18.03)
Replies: 0
Views: 1688

Re: Experiment: MapControl

... of antonino but to the protocol. I read carefully that it is an experiment I unlike many others I can still read well in fact at my venerable age of 53 years I still do not use glasses while others are covering their eyes with slices of ham! :D :D :D :D :D :D
by Silvio.Falconi
Fri Apr 20, 2018 1:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Experiment: MapControl
Replies: 23
Views: 6691

Re: xBrowse footer counting on cell / field-condition ?

I modified my sample above. Please see the revised sample. I added a right-click action which keeps the value of Age increasing by one. You can see that the totals also get changed. Now the question is why this is not working for you. You are making changes to DBF directly and ...
by nageswaragunupudi
Wed Mar 07, 2018 10:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse footer counting on cell / field-condition ?
Replies: 12
Views: 2365

Re: xBrowse footer counting on cell / field-condition ?

... sample:  USE CUSTOMER NEW SHARED   SET FILTER TO RECNO() < 11   GO TOP   XBROWSER "CUSTOMER" COLUMNS "STATE", "AGE", "MARRIED", "SALARY" SETUP ( ;      oBrw:lFooter            := .t., ;      oBrw:Age:nFooterType    := AGGR_COUNT, ...
by nageswaragunupudi
Wed Mar 07, 2018 8:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse footer counting on cell / field-condition ?
Replies: 12
Views: 2365

Re: oRS:QueryResult() AND Fw_arrayToDbf

... aValues ) )   Use QueryResult for results containing one or two items like: SELECT SUM(AMT) FROM table WHERE.. SELECT AVG(AGE),SUM(SALARY) FROM tabe .. etc For reading several rows, use Execute()
by nageswaragunupudi
Fri Feb 23, 2018 11:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oRS:QueryResult() AND Fw_arrayToDbf
Replies: 2
Views: 507

Re: Copying and Pasting Records

... NEW copy structure to temp use temp new do while !cust->(eof()) if cust->state = "US" hRec := FW_CopyRecord( cust , "ID,NAME,AGE" ) hRec[ "ID" ] := "0234" FW_PasteRecord( temp, hRec, .T. ) endif cust->(dbskip()) enddo close all
by Marc Venken
Sun Feb 18, 2018 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copying and Pasting Records
Replies: 3
Views: 863

Re: Building Harbour 3.4 for BCC outside MSYS

Enrico

I am using FWH 1707 .. has a bit of age on it ..

Rick Lipkin
by Rick Lipkin
Wed Dec 13, 2017 3:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17207

Re: understanding OOP returning more than value from a method

... DBF. As you can see from the sample you just do: oPlayer:= TPlayer():new()msgInfo( oPlayer:AgeYMD() )  // displays age in years, months, days Two lines of code, that's all! A player should know his/her own age, so you should just be able to ask the player object ...
by James Bott
Wed Oct 18, 2017 12:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: understanding OOP returning more than value from a method
Replies: 14
Views: 3104

Re: understanding OOP returning more than value from a method

... recommend creating a Calculate() method (unless it was hidden). You don't want to have to call two methods to get the result. When you request an age, that is what you should get. You should not have to remember to request a calculation first. The calculation should be done in the Age() method. ...
by James Bott
Mon Oct 16, 2017 10:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: understanding OOP returning more than value from a method
Replies: 14
Views: 3104

Return age (year,Mnd,day) from a date

I found this tread for calculating the age, but It seems that it give no correct values. I Found also a Exel formula that works pretty ok : = nice result =ALS(EN(MAAND(B12)=MAAND(A12);DAG(B12)<DAG(A12));J AAR( B12)-JAAR(A12)-1&" ...
by Marc Venken
Mon Oct 16, 2017 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: understanding OOP returning more than value from a method
Replies: 14
Views: 3104
PreviousNext

Return to advanced search