Search found 195 matches: cvaltochar

Return to advanced search

Re: come recuperare il codice fivewin da .c file

... /* FIELDNAME */ HB_P_PUSHNIL, HB_P_ONE, HB_P_FUNCTIONSHORT, 1, HB_P_PUSHSTRSHORT, 4, /* 4 */ ' ', '=', ' ', 0, HB_P_PLUS, HB_P_PUSHSYMNEAR, 8, /* CVALTOCHAR */ HB_P_PUSHNIL, HB_P_PUSHSYMNEAR, 9, /* FIELDGET */ HB_P_PUSHNIL, HB_P_ONE, HB_P_FUNCTIONSHORT, 1, HB_P_FUNCTIONSHORT, 1, HB_P_PLUS, HB_P_ARRAYGEN, ...
by Antonio Linares
Mon Feb 12, 2024 9:55 pm
 
Forum: All products support
Topic: come recuperare il codice fivewin da .c file
Replies: 7
Views: 458

Re: New FTDN October/Octubre 2023 (FWH 23.10)

... cUtf8, "@!" ) funciona. * Corrección: El ejemplo samples\testtray.prg funciona correctamenete con FWH 64 bits. * Corrección: La función cValToChar( object ), devuelve nulo cuando object:cClassName es nulo. Solucionado. * Nuevo: Ejemplo samples\diskexpl.prg, muestra cómo construir un ...
by Antonio Linares
Sun Dec 03, 2023 4:46 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3906

New FTDN October/Octubre 2023 (FWH 23.10)

... ) does not work, FW_TRANSFORM( cUtf8, "@!" ) works. * Fixed: samples\testtray.prg is properly working with FWH 64 bits. * Fix: function cValToChar( object ) returning nil when object:cClassName is nil. fixed. * New: samples\diskexpl.prg shows how to build a tree with a drive folders ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3906

Re: WBrowse - color fondo cabecera y Congelar columnas- consulta

... ) if aJustify != nil .and. aJustify[ n ] SetTextAlign( hDC, TA_RIGHT ) ExtTextOut( hDC, nTop, nRight - 2, { nTop, nLeft, nBottom, nRight }, cValToChar( aValues[ n ] ) ) else SetTextAlign( hDC, TA_LEFT ) ExtTextOut( hDC, nTop, nLeft + 2, { nTop, nLeft, nBottom, nRight }, cValToChar( aValues[ ...
by José
Tue Mar 21, 2023 2:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: WBrowse - color fondo cabecera y Congelar columnas- consulta
Replies: 6
Views: 616

Re: AppCrash Windows 7 al leer INI

Fernando,

Por favor prueba a llamar la función del API de Windows directamente:

MsgInfo( GetPvProfString( cSection, cEntry, cValToChar( uDefault ), cIniFile ) )

y comprueba si sucede lo mismo. gracias
by Antonio Linares
Wed Aug 24, 2022 11:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AppCrash Windows 7 al leer INI
Replies: 11
Views: 771

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

... Local cDestinationDn := 'cn=wsaa,o=afip,c=ar,serialNumber=CUIT 33697454239' local nId := val(LeeIni('FactElec','ID')) + 1 Local cUniqueId := cValToChar( nId ) // EL NUMERO QUE IDENTIFICA EL REQUERIMIENTO, TIENE QUE SER DISTINTO CADA VEZ Local cGenerationTime := TimeFMT( HB_DateTime(), -1 ...
by dhf27
Tue Sep 28, 2021 12:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 4989

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

... Local cDestinationDn := 'cn=wsaa,o=afip,c=ar,serialNumber=CUIT 33697454239' local nId := val(LeeIni('FactElec','ID')) + 1 Local cUniqueId := cValToChar( nId ) // EL NUMERO QUE IDENTIFICA EL REQUERIMIENTO, TIENE QUE SER DISTINTO CADA VEZ Local cGenerationTime := TimeFMT( HB_DateTime(), -1 ...
by rterraz
Thu Sep 23, 2021 1:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 4989

Re: problema con DrawBitmap() usando tCodeBars

... METHOD SetCode( cCode ) CLASS TCodeBars if ! Empty( cCode ) if ValType( cCode ) != "C" cCode = cValToChar( cCode ) endif ::cCode = cCode endif return NIL //--------------------------------------// METHOD SetFlags( nFlags ) CLASS TCodeBars ::nFlags ...
by rterraz
Mon Mar 15, 2021 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema con DrawBitmap() usando tCodeBars
Replies: 10
Views: 1023

Re: Can FW also read a intire online webshop ?

... reading the forum This code is used inside a loop to get all forum topics... http://forums.fivetechsupport.com/viewtopic.php?f=3&t=" + cValToChar( nTopic ) How do we find the code from a webshop that is needed for the loop in order to get all the product data ? https://www.maveco-webshop.be/ ...
by Marc Venken
Sat Mar 13, 2021 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can FW also read a intire online webshop ?
Replies: 14
Views: 1700

Re: xbrowse con columnas variables

... 0,00 en el browse ( las cabeceras si se muestran correctamente ) for i := 1 to len(aTdas) WITH OBJECT oCol := oBrwT:AddCol() :bStrData := { || cValToChar( TEM_T->( FieldGet( i ) ) ) } :cHeader := trim(aTdas[i,1]) END WITH next i favor su ayuda ... Qué versión de Fwh utilizas? Mira a ver ...
by cnavarro
Mon Oct 07, 2019 9:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse con columnas variables
Replies: 9
Views: 1128

Re: xbrowse con columnas variables

... 0,00 en el browse ( las cabeceras si se muestran correctamente ) for i := 1 to len(aTdas) WITH OBJECT oCol := oBrwT:AddCol() :bStrData := { || cValToChar( TEM_T->( FieldGet( i ) ) ) } :cHeader := trim(aTdas[i,1]) END WITH next i favor su ayuda ...
by hpoliz
Mon Oct 07, 2019 9:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse con columnas variables
Replies: 9
Views: 1128

Re: Crear function para Script de Harbour

... ) MsgInfo( oError:Args[ n ] ) cInfo += "[" + Str( n, 4 ) + "] = " + ValType( oError:Args[ n ] ) + ; " " + cValToChar( oError:Args[ n ] ) + CRLF next endif MsgStop( oError:Description + CRLF + cInfo,; "Script error at line: " + AllTrim( Str( ProcLine( ...
by Compuin
Thu Aug 16, 2018 6:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear function para Script de Harbour
Replies: 31
Views: 3426

Re: BOM production

... V"+odb1:cversion+" "+odb1:descrip+if(lsize," "+odb1:SIZE,"")+" "+odb1:unit+" "+padl(cvaltochar(ROUND(odb1:qty,nqtydec+1)),nqtylen," ")+" "+odb1:mem+" "+odb1:position) odb1:SKIP() enddo oWnd1:oClient:=oTree ...
by ShumingWang
Fri Apr 27, 2018 2:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BOM production
Replies: 3
Views: 1128

Re: A question about function FW_Cdxcreate()

Mr. Rao, the problem is a index numeric + text + text I changed STR(nVal) to cValtoChar(nVal) and that seems to work :shock: But now my external dbf-editor shows a errormessage because he doesn't know -> cValtoChar I want to sort the two defined filters inside ...
by ukoenig
Tue Feb 27, 2018 9:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A question about function FW_Cdxcreate()
Replies: 8
Views: 1670

Re: A question about function FW_Cdxcreate()

... soon a create a index with STR( field ) // numeric I'm getting problems. But I have to define it with a index-mix of C and N. I didn't test < cValToChar > lets see what happens. regards Uwe :D
by ukoenig
Tue Feb 27, 2018 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A question about function FW_Cdxcreate()
Replies: 8
Views: 1670
Next

Return to advanced search