Search found 453 matches: decimal

Return to advanced search

Re: Tprinter a Calc de LibreOffice

Hi Mr Nages,

Any solution for the question for decimal point separator ....

thank you very much,
by Jorge_T
Sun Nov 01, 2020 11:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tprinter a Calc de LibreOffice
Replies: 5
Views: 781

Re: Pregunta a los expertos en algoritmos

I intended the algorithm for integers. If you want to use values with 2 decimal places, then I suggest you make the array of Int( eachvalue * 100 ). Also, convert the target value to Int( nTarget * 100 ) After finding items, divide by 100 and show it to the ...
by nageswaragunupudi
Tue Jul 28, 2020 4:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta a los expertos en algoritmos
Replies: 5
Views: 799

Re: Mysql y tipo de dato decimal

Con el ejemplo que enviaste, se conecta. oCn := FW_OpenAdoConnection( "MYSQL,208.91.198.197,fwhdemo,gnraofwh,Bharat@1950", .t. ) oRs := FW_OpenRecordSet( oCn, "SHOW COLUMNS FROM customer" ) XBROWSER oRs TITLE "customer table : columns" oRs:Close() muestra bien la estruc...
by jpcavagnaro
Thu Jul 16, 2020 12:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mysql y tipo de dato decimal
Replies: 5
Views: 647

Re: Mysql y tipo de dato decimal

First, please clarify whether it worked with customer table on the Cloud server?

Depending on your answer, we can help you with your table on your own server.
by nageswaragunupudi
Wed Jul 15, 2020 4:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mysql y tipo de dato decimal
Replies: 5
Views: 647

Re: Mysql y tipo de dato decimal

... * from clientes" ) XBROWSER oRs oRs:Close() oCn:Close() return nil Tengo fwh1709, con xharbour7, mysql server 8.0 Tengo una tabla sin campos decimal y lee perfecto. Saludos. Jorge
by jpcavagnaro
Wed Jul 15, 2020 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mysql y tipo de dato decimal
Replies: 5
Views: 647

Re: Mysql y tipo de dato decimal

Simple test: #include "fivewin.ch"function Main()   local oCn, oRs   ? "Connecting to FWH cloud server"   oCn   := FW_OpenAdoConnection( "MYSQL,208.91.198.197,fwhdemo,gnraofwh,Bharat@1950", .t. )   if oCn == n...
by nageswaragunupudi
Tue Jul 14, 2020 5:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mysql y tipo de dato decimal
Replies: 5
Views: 647

Re: Mysql y tipo de dato decimal

You can definitely read decimal data type also from mysql tables with ADO.
by nageswaragunupudi
Tue Jul 14, 2020 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mysql y tipo de dato decimal
Replies: 5
Views: 647

Mysql y tipo de dato decimal

Hola buen día, hace días que estoy tratando de ver porque no puedo abrir tablas con tipo de datos decimal. Que me falta hacer? Tengo varios clientes con sqlserver y nunca tuve problemas para leer las tablas. La comunicación la realizo con ado. Estoy queriendo ver las diferencias ...
by jpcavagnaro
Tue Jul 14, 2020 3:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mysql y tipo de dato decimal
Replies: 5
Views: 647

Re: Ayuda con Mysql

Hola gente, tengo un problema, genero esta tabla: CREATE TABLE Clientes1 ( id int(11) NOT NULL AUTO_INCREMENT, Numero decimal( 6, 0), Domicleg character( 100), Zona decimal( 10, 0), Con_iva decimal( 1, 0), Cuit character( 13), Nombre character( 40), Domic character( 40), Loca character( ...
by jpcavagnaro
Fri Jul 10, 2020 10:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda con Mysql
Replies: 11
Views: 2011

Re: FWMARIA FIELDPUT

Intenta redondeando el resultado

Not necessary. The method FieldPut() rounds off the value to the number of decimal places specified for the field.
by nageswaragunupudi
Thu Jun 25, 2020 2:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWMARIA FIELDPUT
Replies: 5
Views: 1041

FOREIGN KEY

... cTb[55]+="`id` int(6) unsigned NOT NULL auto_increment," cTb[55]+="`idestudio` int NOT NULL," cTb[55]+="`nporcentaje` decimal(4,2) default NULL," cTb[55]+="`ningreso` decimal(16,2) default NULL," cTb[55]+="`npagos` decimal(16,2) default NULL," ...
by jgabri
Mon May 25, 2020 10:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FOREIGN KEY
Replies: 6
Views: 1676

Re: MsgGet() function

nageswaragunupudi wrote:Assuming we want 4 decimal places
Code: Select all  Expand view

n := 0.0000
msgGet( "title", "message", @n )
? n
 


Fantastic!!!!
Thank you!!!
by FiveWiDi
Mon Apr 27, 2020 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MsgGet() function
Replies: 3
Views: 641

Re: MsgGet() function

Assuming we want 4 decimal places
Code: Select all  Expand view

n := 0.0000
msgGet( "title", "message", @n )
? n
 
by nageswaragunupudi
Mon Apr 27, 2020 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MsgGet() function
Replies: 3
Views: 641

Re: xBrowse anomoly

... which may annoy some with all characers capitalized, but it is far better than having the field displayed as 7 characters, and then a decimal point, with no trailing data. I've spent days testing to see if I can find any other cause. There is none. I should note that if the data row ...
by TimStone
Thu Apr 16, 2020 12:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse anomoly
Replies: 21
Views: 3669

Re: Enviar formato Xls -Excel

... en pantalla si veo bien los "pictures", el problema es que cuando lo envio a "calc" o "Excel" no respesta el punto decimal ni el separador de miles del picture y por lo tanto es como si no fuera numérico . Te adjunto una muestra de código, supongo que es una tonteria ...
by Jorge_T
Wed Apr 01, 2020 7:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar formato Xls -Excel
Replies: 2
Views: 433
PreviousNext

Return to advanced search