Search found 40 matches: cdate

Return to advanced search

Re: FWH 2310 Active X problem ?

Is this one the line 344 ?

local cDate := Left( TtoS( aParms[ 1 ] ), 8 )
by Antonio Linares
Fri Nov 03, 2023 8:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2310 Active X problem ?
Replies: 13
Views: 506

Re: New FTDN June 2020 (FWH 20.06)

... parámetro y el resultado anula nDataStrAlign. - SqlRdd: Compatibilidad mejorada para barras de desplazamiento vertical. * Corrección: uCharToVal( cDate, "D" ) no siempre devuelve el resultado correcto. La función estática dCharToDate ( cDate ) se revisa para solucionar el problema. viewtopic.php?f=3&t=38907 ...
by Antonio Linares
Sat Jul 11, 2020 5:26 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1340

New FTDN June 2020 (FWH 20.06)

... with oCol as parameter and the result overrides nDataStrAlign - SqlRdd: Enhanced compatibility for Vertical Scrollbars. * Fix: uCharToVal( cDate, "D" ) is not always returning the correct result. static function dCharToDate( cDate ) is revised to fix the issue. http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38907 ...
by Antonio Linares
Thu Jul 09, 2020 9:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1340

Re: Errores en el MAKE

... Warning W0001 Ambiguous reference 'CTIME' D:\PRGS\SV_COMM\prg\SV_COMM00.PRG(397) Warning W0001 Ambiguous reference 'CDATE' D:\PRGS\SV_COMM\prg\SV_COMM00.PRG(400) Warning W0001 Ambiguous reference 'CTIME' D:\PRGS\SV_COMM\prg\SV_COMM00.PRG(400) Warning W0001 Ambiguous ...
by Willi Quintana
Sat Jun 20, 2020 10:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Errores en el MAKE
Replies: 4
Views: 608

Errores en el MAKE

... Warning W0001 Ambiguous reference 'CTIME' D:\PRGS\SV_COMM\prg\SV_COMM00.PRG(397) Warning W0001 Ambiguous reference 'CDATE' D:\PRGS\SV_COMM\prg\SV_COMM00.PRG(399) Warning W0001 Ambiguous reference 'CHOLA' D:\PRGS\SV_COMM\prg\SV_COMM00.PRG(402) Warning W0001 Ambiguous ...
by Willi Quintana
Sat Jun 20, 2020 2:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Errores en el MAKE
Replies: 4
Views: 608

Re: New FTDN April/Abril 2020 (FWH 20.04)

... un error en RibbonBar reportado por Silvio. Para más detalles mira en: viewtopic.php?f=3&t=38743&start=0 * Corrección: uCharToVal( cDate, "D" ) en source/function/valtostr.prg: Esta función falla con el nombre de mes si es precedido por un carácter como - o /. Para más ...
by Antonio Linares
Sun May 10, 2020 1:26 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2020 (FWH 20.04)
Replies: 1
Views: 2193

Re: uCharToVal returns "01/01/2020" as 20/09/0090

... You can make this correction and test. In the module \fwh\source\function\valtostr.prg: please replace the existing static function dCharToDate( cDate ) with the following revised function: static function dCharToDate( cDate )   local cFormat, cc, cfmt   local dDate  ...
by nageswaragunupudi
Fri May 08, 2020 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: uCharToVal returns "01/01/2020" as 20/09/0090
Replies: 4
Views: 968

New FTDN April/Abril 2020 (FWH 20.04)

... * Fix: Fixed RibbonBar bug reported by Silvio: http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38743&start=0 * Fix: uCharToVal( cDate, "D" ) in source/function/valtostr.prg: This function is failing with monthname is preceded by a non-space character like - or /. http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38754&p=231132#p231132 ...
by Antonio Linares
Sun May 03, 2020 12:41 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2020 (FWH 20.04)
Replies: 1
Views: 2193

Re: uCharToVal

... because on dtpicker I cannot set a calendar limit then I have procedures and many function need the format 8/04/2020 and so I need to recovert the cdate from "Merc, 8 Apr 2020" string Now these solutions are good
by Silvio.Falconi
Wed Apr 08, 2020 2:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: uCharToVal
Replies: 9
Views: 1130

Re: uCharToVal

... pointing out this. We are fixing this in the next version. We suggest this fix for now. \fwh\source\valtostr.prg. static function dAlphaToDate( cDate ) Please locate these lines:   for n := 1 to 12     if FW_AT( " " + Left( NTOCMonth( n ), 3 ), ...
by nageswaragunupudi
Tue Apr 07, 2020 8:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: uCharToVal
Replies: 9
Views: 1130

Re: Mod_Harbour and Hash Arrays

Hello,
you have a typo:
aH[ 'dDate' ] := date()

?aH[ 'cDate' ]

Best regards
Otto

Look my blog running from xbHosts.com
http://54.37.60.40/mh_blog/page-blogMuster.prg
by Otto
Thu Mar 26, 2020 1:19 pm
 
Forum: mod_harbour
Topic: Mod_Harbour and Hash Arrays
Replies: 6
Views: 709

Re: Mod_Harbour and Hash Arrays

... {=>} aH[ 'cTime' ] := time() aH[ 'dDate' ] := date() aH[ 'nAge' ] := 123 TestHash( aH ) Return nil Function TestHash( aH ) ?aH[ 'cTime' ] ?aH[ 'cDate' ] ?aH[ 'nAge' ] Return nil I am having a problem with this, I am running on IIS. Thanks,
by byron.hopp
Thu Mar 26, 2020 7:40 am
 
Forum: mod_harbour
Topic: Mod_Harbour and Hash Arrays
Replies: 6
Views: 709

Ribbonbar & XbrGetDate

... 3 May 2019" and before converte the date into this string with Convertidata(dTemp) function then I must converte to date with Conv_Textdate( cDate, nLanguage ) If i insert { dDataInizialeStagione},{ dDataFinaleStagione} instead of {^ 2019/05/15 }, {^ 2019/05/30 } make error then the calendar ...
by Silvio.Falconi
Fri May 31, 2019 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbonbar & XbrGetDate
Replies: 0
Views: 368

Re: funciones de FWH y Harbour en un archivo .txt

... SoundEx(<cString>)->cSoundExString Space(<nCount>)->cSpaces SQrt(<nNumber>)->nRoot Standard()->cNull StoD([<cDate>])->dDate StoT([<cDateTime>])->dDateTime Str(<nNumber>,[<nLength>],[<nDecimals>],[lTrim])->cNumber StrDel(<cString>,<Mask>)->cNewString ...
by rubenfernandez01
Sun Oct 22, 2017 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5704

Re: funciones de FWH y Harbour en un archivo .txt

... SoundEx(<cString>)->cSoundExString Space(<nCount>)->cSpaces SQrt(<nNumber>)->nRoot Standard()->cNull StoD([<cDate>])->dDate StoT([<cDateTime>])->dDateTime Str(<nNumber>,[<nLength>],[<nDecimals>],[lTrim])->cNumber StrDel(<cString>,<Mask>)->cNewString ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5704
Next

Return to advanced search