Search found 50 matches: ttos

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: De xHarbour a Harbour

... Error: Unresolved external '_HB_FUN_ANSITOWIDE' referenced from C:\XBASE\HARBOUR32\LIB\FIVEH.LIB|PRV2PDF Error: Unresolved external '_HB_FUN_TTOS' referenced from C:\XBASE\HARBOUR32\LIB\FIVEH.LIB|PRV2PDF Error: Unresolved external '_HB_FUN_DATETIME' referenced from C:\XBASE\HARBOUR32\LIB\FIVEH.LIB|PRV2PDF ...
by JoseAlvarez
Mon Oct 04, 2021 2:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: De xHarbour a Harbour
Replies: 35
Views: 3261

Re: nuevo en el fw Harbour

1) copie el two.prg que esta dentro del gccmake.prg a la carpeta bormake porque no lo trae (y en el test.mak hace referecia a two.c y two.obj), cambie las rutas e incluso las rutas dentro de los archivos CFG de borland. y al compilar con go.bat (que tambien cambie la ruta del make) me tira este erro...
by goosfancito
Wed Feb 03, 2021 1:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: nuevo en el fw Harbour
Replies: 5
Views: 635

Re: Compilando con Harbour 3.2, Bcc7 y Hbmk2

Armando estás intentando linkar las librerias de Fivewin para el compilador MinGw en lugar de utilizar las de Borland Es cierto. Estaba apuntando a las librerias para Mingw de Fwh, a pesar que todas las variables de entorno apuntaban a Harbour y Bcc7. Ya corregí; pero el arreglo ha resultado peor q...
by Armando Picon
Sun Jan 26, 2020 12:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilando con Harbour 3.2, Bcc7 y Hbmk2
Replies: 13
Views: 3224

Re: Error on Rpreview/PRV2PDF.PRG

Silvio, The TTos function already exists in Fwh, do you know?
by cnavarro
Thu Sep 19, 2019 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error on Rpreview/PRV2PDF.PRG
Replies: 3
Views: 591

Error on Rpreview/PRV2PDF.PRG

When I print my document I use a function to converte the time // Time To Seconds FUNCTION TTOS( cTime ) default cTime:= time() RETURN ( VAL( SUBSTR( cTime, 1, 2 )) * 3600 + ; VAL( SUBSTR( cTime, 4, 2 )) * 60 + ; VAL( SUBSTR( cTime, 7, 2 )) ; ) it run ok when I go to ...
by Silvio.Falconi
Thu Sep 19, 2019 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error on Rpreview/PRV2PDF.PRG
Replies: 3
Views: 591

Re: TTos() and DateTime() in xHB commercial

Now, removing HB_ allows both the Harbour and xHarbour builds.

This is possible because we are now including xhb.lib for Harbour builds.

We also need not use #ifdef's as above.
by nageswaragunupudi
Wed Jul 24, 2019 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTos() and DateTime() in xHB commercial
Replies: 4
Views: 729

Re: TTos() and DateTime() in xHB commercial

... ON   #IFDEF __XHARBOUR__      tDate       := DateTime()      cDateTime   := TTOS( tDate )   #ELSE  // Harbour      tDate       := HB_DateTime()      ...
by karinha
Wed Jul 24, 2019 6:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTos() and DateTime() in xHB commercial
Replies: 4
Views: 729

Re: TTos() and DateTime() in xHB commercial RESOLVED

In older versions of FWH, when using Harbour, I had to use the functions as:

HB_DateTime()
HB_TToS( )

These were not compatible with my version of xHarbour.com

Now, removing HB_ allows both the Harbour and xHarbour builds.
by TimStone
Wed Jul 24, 2019 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTos() and DateTime() in xHB commercial
Replies: 4
Views: 729

Re: TTos() and DateTime() in xHB commercial

Both the functions TTOS() and DATETIME() are provided by xHarbour, since a long time. I built this small program with buildxhb.bat (using xhb.com) in fwh\samples folder. #include "fivewin.ch"function Main()  ...
by nageswaragunupudi
Wed Jul 24, 2019 12:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTos() and DateTime() in xHB commercial
Replies: 4
Views: 729

TTos() and DateTime() in xHB commercial

Most of my builds are with Harbour and Microsoft Visual Studio. There are two functions used TToS( ) and DateTime() in database.prg and rpreview.prg and there is no problem at all with them. The issue is I'm trying to also build an xHarbour ( .com ) version ( Pelles ) ...
by TimStone
Tue Jul 23, 2019 11:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTos() and DateTime() in xHB commercial
Replies: 4
Views: 729

FWH upgrade

Hi, I recently upgraded from FWH ver 10.09 to ver 17 and I'm having troubles with the installation. I'm using buildh.bat as a model for a make file and after solving several errors I'm still getting these at the linking stage: Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technolog...
by andresleon
Mon May 06, 2019 2:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH upgrade
Replies: 4
Views: 915

Re: QRCODE

... // Para xHarbour #IFDEF __XHARBOUR__ #xtranslate hb_DateTime([<x,...>]) => DateTime(<x>) #xtranslate hb_tstostr([<x>]) => TToS(<x>) #xtranslate hb_stot([<x>]) => SToT(<x>) #xtranslate hb_ttod([<x>]) => TToD(<x>) #xtranslate hb_hour([<x>]) ...
by jnavas
Tue Dec 11, 2018 8:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: QRCODE
Replies: 12
Views: 3743

QRCODE

... // Para xHarbour #IFDEF __XHARBOUR__ #xtranslate hb_DateTime([<x,...>]) => DateTime(<x>) #xtranslate hb_tstostr([<x>]) => TToS(<x>) #xtranslate hb_stot([<x>]) => SToT(<x>) #xtranslate hb_ttod([<x>]) => TToD(<x>) #xtranslate hb_hour([<x>]) ...
by jnavas
Tue Dec 11, 2018 8:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: QRCODE
Replies: 12
Views: 3743

Re: Reading Excel date-time custom format

Found it...
TTOS() :D
by Marc Vanzegbroeck
Mon Feb 05, 2018 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reading Excel date-time custom format
Replies: 1
Views: 468
Next

Return to advanced search