Search found 212 matches: age

Return to advanced search

Re: Array TO XLS ?

... [cSaveToFileName] )  Parameters: 1. cFieldList (Optional): Can be a commadelimited list of fileds. Eg:"FIRST,CITY,AGE" Default all fields. 2 to 6. bFor,bWhile,nNext,nRec,lRest: (Optional) Same functionality as in DBEVAL() 7. cFileName (Optional) If nil, data ...
by nageswaragunupudi
Thu Apr 16, 2020 1:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Array TO XLS ?
Replies: 3
Views: 516

Re: TWeb for mod Harbour is ready

... age":<br>&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;"head":&nbsp;"Age",<br>&nbsp;&nbsp;&nbsp;&nbsp;"width":&nbsp;"",<br>&nbsp;&nbsp;&nbsp;&nbsp;"sortable":&nbsp;false,<br>&nbsp;&nbsp;&nbsp;&nbsp;"align":&nbsp;"",<br>&nbsp;&nbsp;&nbsp;&nbsp;"formatter":&nbsp;""<br>&nbsp;&nbsp;}<br>}<br> ...
by Taavi
Fri Apr 10, 2020 2:29 pm
 
Forum: mod_harbour
Topic: TWeb for mod Harbour is ready
Replies: 17
Views: 2771

Re: Mod_Harbour and Hash Arrays

... is great. As far as using Hash Arrays with Mod_Harbour: local aH := {=>} Function Main() aH[ 'cTime' ] := time() aH[ 'dDate' ] := date() aH[ 'nAge' ] := 123 ?aH[ 'cTime' ] ?aH[ 'dDate' ] ?aH[ 'nAge' ] Return nil This works and Time, Date, and Age show in the browser window. However should this ...
by byron.hopp
Thu Mar 26, 2020 7:40 am
 
Forum: mod_harbour
Topic: Mod_Harbour and Hash Arrays
Replies: 6
Views: 709

OT: How are we doing ?

... are doing OK. This is a natural assault on all of us worldwide. I hope everyone is safe. In my situation, we are told to remain home ( due to my age ), but I can do that since it is also my office. My clients are still working, so I am available to meet their needs. The hard part is not being ...
by TimStone
Wed Mar 18, 2020 4:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: How are we doing ?
Replies: 24
Views: 3705

Re: DBV Memo File Formats.

All, This post will let out the secret of my age (>dirt). I have an old application running in Clipper 5.2 and the memo files are utilizing a lib called FlexFile. It added functions like "V_USE", "V_ERROR", and "V_SELECT", ...
by Jimmy
Thu Dec 19, 2019 3:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBV Memo File Formats.
Replies: 1
Views: 318

DBV Memo File Formats.

All, This post will let out the secret of my age (>dirt). I have an old application running in Clipper 5.2 and the memo files are utilizing a lib called FlexFile. It added functions like "V_USE", "V_ERROR", and "V_SELECT", ...
by byron.hopp
Thu Dec 19, 2019 12:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBV Memo File Formats.
Replies: 1
Views: 318

Re: xbrowser footer

... FILTER TO !DELETED()GO TOP// over and above this, we can use Scopes also.// now build xbrowse  If we want to set some filter like "AGE > 40", then set filter like this: SET FILTER TO AGE > 47 .AND. !DELETED()  OrdKeyNo() also is effected in the same way. Note: ...
by wartiaga
Tue Dec 03, 2019 2:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1348

Re: xbrowser footer

... TO !DELETED()GO TOP// over and above this, we can use Scopes also.// now build xbrowse  If we want to set some filter like "AGE > 40", then set filter like this: SET FILTER TO AGE > 47 .AND. !DELETED()  OrdKeyNo() also is effected in the same way. ...
by nageswaragunupudi
Mon Dec 02, 2019 5:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1348

Re: Help for a XBrowse

Armando,

it is the logic I'm using for the field AGE
< 30 = .T. and >= 30 = .F.
instead of a the checkbox-symbol I use bitmaps YES and NO
These bitmaps can be replaced with checkbox-bitmaps if needed.

regards
Uwe :D
by ukoenig
Sun Sep 15, 2019 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for a XBrowse (SOLVED THANKS UKOENIG)
Replies: 6
Views: 854

Re: Help for a XBrowse

... ) // from Disk :aCols[ 4 ]:addbmpfile( c_path1 + "Checkoff.bmp" ) // from Disk :aCols[ 4 ]:bBmpData := {|| IIF( oCust:Age < 30, 1, 2 ) } http://www.pflegeplus.com/IMAGES/Xbrwcell1.jpg // numeric    :aCols[ 4 ]:nEditType     := EDIT_BUTTON  ...
by ukoenig
Sun Sep 15, 2019 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for a XBrowse (SOLVED THANKS UKOENIG)
Replies: 6
Views: 854

Re: XBrowse edit only one column

Nages, oBrw:Age:bOnChange := { |oCol, nOldVal| oBrw:Salary:VarPut( oCol:Value * <yourcalculation> ) } I need to do something similar. I need to update the ExtPrice colum with Cost * QtyOrd but I have not been able to figure ...
by James Bott
Wed Aug 14, 2019 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse edit only one column
Replies: 26
Views: 2980

Re: Agregar columna xbrowse

...  := Array( OrdKeyCount() )   DBEVAL( { || aTotals[ OrdKeyNo() ] := nTotal := FIELD->AGE + FIELD->SALARY + nTotal } )   GO TOP   DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14   DEFINE ...
by nageswaragunupudi
Sun Jul 14, 2019 5:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Agregar columna xbrowse
Replies: 2
Views: 502

Re: An easy way to make a tree-browse

... ; COLUMNS "STATE", "STRZERO(INT(YEAR(HIREDATE)/10)*10,4) AS DECADE", ; "CITY", "FIRST", "AGE", "HIREDATE", "SALARY" ; CELL LINES NOBORDER ... ... @ 10, 20 BTNBMP PROMPT "NO TREE" SIZE 100,30 PIXEL OF oDlg ...
by ukoenig
Sat Jul 13, 2019 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: An easy way to make a tree-browse
Replies: 17
Views: 3558

Re: XBrowse edit only one column

oBrw:Age:bOnChange := { |oCol, nOldVal| oBrw:Salary:VarPut( oCol:Value * <yourcalculation> ) }
by nageswaragunupudi
Thu Jul 11, 2019 6:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse edit only one column
Replies: 26
Views: 2980

Re: XBrowse edit only one column

I'd like to change field Salary (Age * 1.5 / Actual Salary value) after I changed age value, how can I do it?

thank you.
by damianodec
Wed Jul 10, 2019 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse edit only one column
Replies: 26
Views: 2980
PreviousNext

Return to advanced search