Search found 31 matches: cvaltostr

Return to advanced search

DBG Adofield

Hello , FWH 1402 DBG ors:Field(..) Gives an error in cValtoStr . in :    if Left( cVal, 1 ) == "*" .and. Len( cVal ) > 2 .and. ValType( uVal ) == 'N'  cVal seems to be a object Solved with adding    ------   IF ...
by Franklin Demont
Wed Jan 31, 2018 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBG Adofield
Replies: 0
Views: 533

Re: Obtaining windows region date format

If you want to display date values in these formats, you can use

? cValToStr( dDateValue, cFormat )

For displaying the date values in Xbrowse using these formats, you can set oCol:cEditPicture := cFormat
by nageswaragunupudi
Thu Dec 07, 2017 5:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Obtaining windows region date format
Replies: 4
Views: 617

New FTDN (July) 2014 (FWH 14.07)

... * Fix: TXBrowse Method MakeTotals(). After MakeTotals() is executed the the record is not repositioned to the saved record. Fixed. * Fix: function cValToStr() in valtostr.prg: A bug in conversion to scienific notation crashes the program when negative numeric values overflow the picture clause. ...
by Antonio Linares
Mon Aug 04, 2014 6:41 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN (July) 2014 (FWH 14.07)
Replies: 3
Views: 3112

Re: cValToStr() error *Fixed*

Rao,

Thanks for the clarification :-)
by Antonio Linares
Thu Jun 19, 2014 9:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cValToStr() error *Fixed*
Replies: 5
Views: 1230

Re: cValToStr() error *Fixed*

Dutch, Did you just applied this ? CASE cType $ 'DT' thanks, (Going to include it in FWH 14.06) No. Test results of Mr Dutch indicate that though Dolphin returns fiedtype as 'T', it actually returns a character value not DateTime value. So if Dolphin says the fieldtype is 'T', we should consider it...
by nageswaragunupudi
Thu Jun 19, 2014 9:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cValToStr() error *Fixed*
Replies: 5
Views: 1230

Re: cValToStr() error *Fixed*

Dutch,

Did you just applied this ?

CASE cType $ 'DT'

thanks,

(Going to include it in FWH 14.06)
by Antonio Linares
Thu Jun 19, 2014 8:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cValToStr() error *Fixed*
Replies: 5
Views: 1230

Re: cValToStr() error

Dear Mr.Rao, I've test the result ValType() of TimeStamp field as below    cValType := valtype( oQry:FieldGet( 'rta_stamp' )) return "C"   cValType := oQry:FieldType( 'rta_stamp' )    return "T"   cValType := valtype( oQry:rta_stamp )        return...
by dutch
Thu Jun 19, 2014 6:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cValToStr() error *Fixed*
Replies: 5
Views: 1230

Re: cValToStr() error

Mr Dutch Please help me with the results of : ? oQry:FieldType( <ntimestampfield> ) ? ValType( oQry:FieldGet( <timestamefield> ) ) If both results are 'T' then please make this modification: Locate method SetColFromMySQL(...) in xbrowse.prg. Please change the line   CASE cType  ...
by nageswaragunupudi
Thu Jun 19, 2014 12:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cValToStr() error *Fixed*
Replies: 5
Views: 1230

cValToStr() error *Fixed*

...    [   1] = C   ...Stack Calls===========   Called from:  => TTOC( 0 )   Called from: .\source\function\VALTOSTR.PRG => CVALTOSTR( 95 ) Thank you for any help and idea.
by dutch
Wed Jun 18, 2014 2:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cValToStr() error *Fixed*
Replies: 5
Views: 1230

New FTDN February/Febrero 2014 (FWH 14.02)

... in olefuncs.prg. Call to this function minimizes all visible windows and shows desktop. * Fix: XBrowse: Recently enhanced ability of cValToStr() to handle codeblocks created a side effect in SetArray() method where some elements of array are codeblocks. Fixed now.
by Antonio Linares
Mon Mar 10, 2014 6:07 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2014 (FWH 14.02)
Replies: 2
Views: 1614

Re: xBrowse Cell Lost Focus

... tried your suggestion - thank you - but get the following error Called from: => TRANSFORM(0) Called from: .\source\function\VALBLANK.PRG => CVALTOSTR(217) Called from: C:\newdev\common\xbrowse.prg => (b)TXBRWCOLUMN:ADJUST(8281) Called from: C:\newdev\common\xbrowse.prg => TXBRWCOLUMN:ADJUST(8350) ...
by cnavarro
Tue Feb 25, 2014 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Cell Lost Focus
Replies: 7
Views: 1117

Re: xBrowse Cell Lost Focus

... tried your suggestion - thank you - but get the following error Called from: => TRANSFORM(0) Called from: .\source\function\VALBLANK.PRG => CVALTOSTR(217) Called from: C:\newdev\common\xbrowse.prg => (b)TXBRWCOLUMN:ADJUST(8281) Called from: C:\newdev\common\xbrowse.prg => TXBRWCOLUMN:ADJUST(8350) ...
by Colin Haig
Tue Feb 25, 2014 2:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Cell Lost Focus
Replies: 7
Views: 1117

New FTDN August/Agosto 2013 (FWH 13.08)

... Fixed display of unnecessary message "No .doc manipulation software installed" while exporting to word. * Enhancement: function cValToStr( nil ) now returns "" instead of "nil". Such case normally arise in case of SQL Tables with NULL values. For the convenience ...
by Antonio Linares
Tue Sep 17, 2013 10:48 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2013 (FWH 13.08)
Replies: 0
Views: 2510

Re: bugs TDataRow 13.07

About display of "nil" ------------------------ In function cValToStr(...) in the valtostr.prg, please make the following modification: function cValToStr Please locate the lines:   if uVal == nil      cVal = "nil"  ...
by nageswaragunupudi
Mon Aug 26, 2013 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bugs TDataRow 13.07
Replies: 2
Views: 561

Re: using FWH 2011.11 and xHarbour.com

when I compile source (xharboure.com) /I changed fivehcm.lib and ficehmx.lib which I received from You/ #include "FiveWin.Ch" #include "xbrowse.ch" //-----------------------// Function Main() Local aData := { ; { 1, 'One', 45, date(), .t. }, ; { 2, 'Two', 2222, date()-1, .f. } , ...
by kajot
Sat Dec 17, 2011 9:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: using FWH 2011.11 and xHarbour.com
Replies: 5
Views: 1576
Next

Return to advanced search