topic
stringlengths
1
63
text
stringlengths
1
577k
nSerialHD question again
But what it would be the returned value if the OC doesn't has any hard dislk ? Antonio
nSerialHD question again
Antonio, We don't know it for sure (zero?) You may use Empty( nSerialHD() ) to check for an empty value. We have never tested it without an available HD
nSerialHD question again
Thanks, Antonio
nSerialHD with UNC-Notation?
Hi everybody, We are using the HD serial number for copy protection. It works fine with mapped network drives. Now we have a potential customer who requires to start the programm without a mapped drive using the UNC-Notation. Is there a way to retrieve the serial number of the network drive with for example "\\OURPC...
nSerialHD with UNC-Notation?
Dietmar, Below is an old message that may help. I haven't tried it. Regards, James ------------------------- From: "GNR" <gnr@hyderabadwater.gov.in> Subject: Re: nSerialHd() to work with all drives Date: Saturday, February 15, 2003 10:04 AM nSerialID() works well on all drives, mapped and physical. I have tested t...
nSerialHD with UNC-Notation?
Thanks James, but this one does not help, cause it requires the drive letter. We need the serial number of a file-server-HD using the UNC-notation Anybody?
nSerialHD with UNC-Notation?
Dietmar, >but this one does not help, cause it requires the drive letter. >We need the serial number of a file-server-HD using the UNC-notation Did you try it? It works for me using "\\compaq\c" Regards, James
nSerialHD with UNC-Notation?
James, I tested the code and found that it does not work using UNC and it also has another quirk. The quirk is if the drive is "C:" it does not work but if I use "C:\" it works. Using either "D:" or "D:\" or higher, both operations work. Why it does not work with the "C" drive may be because I am running the app als...
nSerialHD(""D"") no funciona correctamente
Hola foro, He intentado, como medida de proteccion antipirata, grabar informacion preferentemente en el disco "D" que generalmente es una particion del "C" pero al tomar el No. de serie con la funcion nSerialHD("D") este cambia de vez en cuando, aun no se en que situaciones. Parece ser que logre resolver mi problema u...
nSerialHD(""D"") no funciona correctamente
Rodolfo Ignoro porque cambia el numero de serie de la unidad. No obstante para implementar tu seguridad podes usar GetNetCardID(), que seguramente no va a devolver números distintos en una misma PC (salvo que cambies y/o agregues una placa). Solo tenés que tener una precaución: Si la PC (o normalmente Notebook y/o simi...
nSerialHD() distinto resultado en FW que FWH
He observado que el resultado de nSerialHD() es distinto en FW que en FWH. En FW te devuelve el número de serie de la unidad donde se ejecuta. En FWH devuelve siempre el número de serie de la unidad C, independiente de la unidad donde se ejecute. No deberían funcionar igual o estoy en un error ? saludos, Manuel
nSerialHD() distinto resultado en FW que FWH
Manuel, Esas funciones en 16 y 32 bits usan distinto código. De todas formas nSerialHD() admite el parámetro de la unidad a comprobar, nSerialHD( "D:" )
nStrCrc16
Hola ¿Disponemos del código fuente C de esta función?. Lo necesito para poder compatibilizar un desarrollo en C que estoy haciendo. He encontrado una función similar pero no me da el mismo resultado y me gustaria contrastarlas a ver cual es la correcta. Gracias.
nStrCrc16
Paco, No entregamos el código fuente de esa función con FWH, pero si la necesitas, envíanos un email.
nStrhash
Llamo a la funcion nstrhash y me devuelve: Error: Unresolved external '_HB_FUN_NSTRHASH' referenced from Esta funcion esta incluida en fwh 2.4 ?? Hay que hacer algo para que la encuentre o solo linkando la libreria fwhc.lib es suficiente?? Alguien ha tenido que generar la clave hash que se necesita en los tpv virtuale...
nStrhash
.... Nadie la utiliza?? Saludos
nStrhash
Rafa, La función está en source\function\hash.c Añádela a tu aplicación, aunque no creo que sea la que usan los TPVs.
nTOP explorerbar: wine+ubutun
estou fazendo alguns teste e gostaria de saber porque esta ocorrendo este erro: fwh11 linux ubutun 11.04 emulador wine erro: base/1004 - NTOP - TEXPLORER BAR o restante esta tudo ok
nTOP explorerbar: wine+ubutun
Ronaldo, Por favor copia aqui la lista completa del calls stack del error, gracias
nWidth() method
Dear friends, is there any place in a class, other than Display() method, where I can check nWidth() method? What I would want to achieve is setting an instance variable to a value calculated from nWidth() so I can use it inside Paint() method without having to recalculate it each time. Thanks in advance. EMG
nWidth() method
Enrico, You could use Method ReSize() to recalculate the width and leave it in a DATA nMyWidth or whatever DATA name you prefer
nWidth() method
[quote="Antonio Linares":38ktzk2g]Enrico, You could use Method ReSize() to recalculate the width and leave it in a DATA nMyWidth or whatever DATA name you prefer[/quote:38ktzk2g] Thank you, Antonio! I just tried but method Resize() is never called. What am I missing? EMG
nWidth() method
Enrico, That makes sense as the width should only be recalculated when a control is resized <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Initialize it from the new() and/or redefine() method, and then recalculate it from ReSize().
nWidth() method
[quote="Antonio Linares":1cdrarmw]Enrico, That makes sense as the width should only be recalculated when a control is resized <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Initialize it from the new() and/or redefine() method, and then recalculate it from ReSize().[/quo...
nWidth() method
Enrico, Is it a redefined control ? Which class of control is it ?
nWidth() method
It's only a programming exercise. I'm trying to write a new control. It inherits from TControl, just like any other controls. And this is the first problem I found. EMG
nWidth() method
you can put in Initiate if is redefine controls and defaut method if not. you can review my controls. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> and using how example for you controls. [code=fw:2avuoq0o]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...
nWidth() method
It works! Many thanks. EMG
nXOR
alert (numtohex ("1")) => 31 alert (numtohex ("2")) => 32 pero alert ( nXor( NUMTOHEX("1"), NUMTOHEX("2") ) => 0 (valor incorrecto) alert ( nXor( (StrToHex("1")), (StrToHex("2") ) )) => 0 (valor incorrecto) y alert (( nXor ( 31,32))) => 61 (el valor correcto) ¿No puedo comparar la c...
nXOR
Manuel, Prueba asi: [code=fw:n13krfid]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Test<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">MsgInfo</span><span style="color:...
nXOR
Muchas gracias Antonio. Ha funcionado perfectamente el ejemplo. Pero no consigo me funcione usando una cadena variable, seguramente porque lo planeo mal : cCad := "123456" cRecno := '' FOR n=1 TO 6 nRecno += 'Val( NumToHex( Asc("' + StrChar(cCad , n) + '")))' if n < 6 nRecno += ', ' ...
name of the day
How can I get the name of a day ?? cDay := XXXX ( date ()) ? cday Monday
name of the day
Que tal. ? cdow(date()) Resultado: jueves
name of the day
is elemetary clipper command( or func)
name of the day
[quote="Silvio.Falconi":2b338ty4]is elemetary clipper command( or func)[/quote:2b338ty4] [img:2b338ty4]https&#58;//media&#46;giphy&#46;com/media/F5mZmsIeKj0mA/giphy&#46;gif[/img:2b338ty4]
name of the day
Ah, they finally got you in jail.... [img:1lgwu21j]https&#58;//media0&#46;giphy&#46;com/media/13lF90lCCDXmMM/giphy&#46;webp?cid=3640f6095c5bf2f06943393173f714ac[/img:1lgwu21j]
name of the day
Yes. As you in the Cuckoo's Nest
name of the day
A review of clipper [img:r8d075xy]https&#58;//media3&#46;giphy&#46;com/media/1QeVNqrq8gqgU/200&#46;webp?cid=3640f6095c5bf40d5a73564e32009342[/img:r8d075xy] you have to tell the truth ... you did not know cDow either
name of the day
.
name of the day
GO ON TO OFFEND ME ... THEN THE JUDGE DECIDES 'IF THROW AWAY THE KEY OF YOUR CELL AND WITH ALL THE PHRASES THAT YOU HAVE WRITTEN THROUGH YEARS THERE ARE THE REQUIREMENTS FOR ASKING FOR DEBT
name of the day
I don't understand how someone can write on the keyboard with a straitjacket.
name of the day
Of course. Going to make the complaint, stop by the psychiatrist to get your medicines changed.
name of the day
Can I send the complaint to this address? Via Udine, 61, 33010 Feletto Umberto UD [img:vq2lotrd]https&#58;//i&#46;postimg&#46;cc/BbjgKyPq/hhh&#46;png[/img:vq2lotrd] finally we have the troll face
name of the day
[img:1zvs8tn3]https&#58;//www&#46;rollingstone&#46;it/wp-content/uploads/2017/04/GZJY8J&#46;gif[/img:1zvs8tn3]
navigation bar with notifications
Hello friends, It is now possible to send "notifications" between the different users/PC/smartphones, etc. Best regards, Otto [img:2dra8jer]https&#58;//mybergland&#46;com/fwforum/notifications&#46;gif[/img:2dra8jer]
necesito ayuda con codigos de barras y con archivos jpg
Codigos de Barra Resulta que estoy usando la barlib (de cayetano), pero no me funciona, este es parte de mi codigo: [color=green:1l5uhgb0] Function ImprimeCB(nTipoBarra,nCuantos,cCodigoProd,cNomArtic) Local oPrn,oFont,oFong,oFonc,oFonr,oFonm,lCondi,vRow:=1,xStep,yStep,vCont Local vTitle:=tRazon,vCodeB,vPage:=0,vCort:=...
necesito ayuda con codigos de barras y con archivos jpg
Hola Gerardo. Yo uso el tipo CODE128. Al principio me daba problemas, pero poniendole el modo "B" va de maravilla. Un saludo. Pepe Leyva.
necesito ayuda con esta consulta mysql
Hola. tengo 2 tablas. [code=fw:38yp6ucf]<div class="fw" id="{CB}" style="font-family: monospace;">tbventas:<br /><span style="color: #0000ff;">id</span><br />importe_total<br /><br />tbctacte:<br /><span style="color: #0000ff;">id</span><br />idventa<br />importe_pagado</div>[/code:38yp6ucf] necesito hacer una consul...
necesito ayuda con esta consulta mysql
[quote="goosfancito":1yryocoh]Hola. tengo 2 tablas. [code=fw:1yryocoh]<div class="fw" id="{CB}" style="font-family: monospace;">tbventas:<br /><span style="color: #0000ff;">id</span><br />importe_total<br /><br />tbctacte:<br /><span style="color: #0000ff;">id</span><br />idventa<br />importe_pagado</div>[/code:1yryoc...
necesito ayuda con esta consulta mysql
si,.. es lo que intente pero no me funcionó.
necesito ayuda con esta consulta mysql
Para que haga la suma debes agregar la clausula GROUP BY [code=fw:20tiafsb]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">sum</span><span style="color: #000000;">&#40;</span>tbctacte.importe_pagado<span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">whe...
necesito ayuda con esta consulta mysql
[quote="goosfancito":1wda1xod]Hola. tengo 2 tablas. [code=fw:1wda1xod]<div class="fw" id="{CB}" style="font-family: monospace;">tbventas:<br /><span style="color: #0000ff;">id</span><br />importe_total<br /><br />tbctacte:<br /><span style="color: #0000ff;">id</span><br />idventa<br />importe_pagado</div>[/code:1wda1x...
necesito ayuda con esta consulta mysql
[code=fw:344iaed4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">SELECT</span> v.<span style="color: #0000ff;">id</span>,v.importe_total,vp.importe_pago <span style="color: #0000ff;">FROM</span> tbventas v <span style="color: #0000ff;">LEFT</span> <span style="color: #0000...
necesito ayuda con herramientas para FWH8.12
Estimados amigos, tengan mis saludos, mi problema es que tuve que formatear mi pc, y solo guarde la instalacion de mi FWH 8.12, y tengo los siguientes problemas.. a) de donde saco el harbour.exe que corresponde a esta version, ya que en le foro la ultima que descargue, no me funciono, me arrojo errores de compilacion....
necesito cambiar el color al
Hola Tengo este código [code=fw:3qljs7ud]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">LISTBOX</span> ::<span style="color: #000000;">oGets</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">10</span>...
necesito cambiar el color al
//-> Mira se ayuda: [code=fw:29b5edox]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp; <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">LISTBOX</span> oLbx FIELDS <span style="color: #ff0000;">""</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span ...
necesito desactivar una ROW del xbrowse
Hola. Es posible DESACTIVAR una fila del xbrowse? tengo por ejemplo 10 lineas en un xbrowser y quiero que la primer linea no este habilitada para modificacion. gracias
necesito desactivar una ROW del xbrowse
Esto? [url:ebgz873h]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=35936&p=214087&hilit=oCol%3AnEditType+%3A&sid=5c3b036d09e3a58796c0669cd8c21552&sid=4a94b3e1bd7cae7706fbc9e08e71ce9e#p214087[/url:ebgz873h] Saludos.
necesito desactivar una ROW del xbrowse
Aquí tienes un ejemplo autocontenido que puedes adaptarlo a tus necesidades. [code=fw:1eyvaakh]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">Function</span> Main<span styl...
necesito desactivar una ROW del xbrowse
[quote="goosfancito":18hfqopg]Hola. Es posible DESACTIVAR una fila del xbrowse? tengo por ejemplo 10 lineas en un xbrowser y quiero que la primer linea no este habilitada para modificacion. gracias[/quote:18hfqopg] [code=fw:18hfqopg]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #0...
necesito ejemplo xbrowse con ADO y mysql
hola. podrian postear algun ejemplo funcional del uso de ADO con mysql y un xbrowse? gracias.
necesito ejemplo xbrowse con ADO y mysql
Te anexo el ejemplo espero que te sirva REDEFINE XBROWSE oLbx ; COLUMNS "referen", "descrip","present","refabri","um","sto_max","sto_min","Status" ; HEADERS "Referecia", "Descripcion","Presentacion","R.Fabricacion","U.Medida","Stock Maximo","Stock Minimo","Status"; PICTURES nil,nil,nil...
necesito ejemplo xbrowse con ADO y mysql
Goos date una vuelta por [url:1msb8m2g]http&#58;//sqlcmd&#46;blogspot&#46;com/2008/11/creando-un-browse-con-txbrowse&#46;html[/url:1msb8m2g] saludos.
necesito el harb y xharb for linux con fecha 13/12/2005
buenas tardes necesito esos programas, trato de probar la version de fivelinux que compre por esas fechas, fivelinux esta ok pero harbour y xharbour solo sacan una pantalla inicial y no instalan nada si alguien los tiene, gracias Gracias x todo saludos
necesito el harb y xharb for linux con fecha 13/12/2005
Wilson, Envíanos un email y te ayudamos a localizarlos, gracias
necesito el harb y xharb for linux con fecha 13/12/2005
Antonio, buenas tardes gracias x responder ya te he enviado el email Saludos
necesito el harb y xharb for linux con fecha 13/12/2005
gracias <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
necesito el harb y xharb for linux con fecha 13/12/2005
gracias x todo Antonio Un Abrazo att.
necesito hacer un footer en twbrowse de hernan
Algun ejemplo? Tengo que ados/zarle a este código un footer. [code:3orroncx] REDEFINE LISTBOX oBrw&#91;1&#93; ; FIELDS ""; HEADERS "Origen", ; "Proveedor", ; "Actual", ; "En curso", ; "Comprom", ; ...
necesito hacer un footer en twbrowse de hernan
[code:dsoq22pi]oBrw&#58;lDrawFooters &#58;= &#46;t&#46; oBrw&#58;aFooters &#58;= &#123; "", "", trans&#40;ntot, "@E 9,999,999,999" &#41; &#125; [/code:dsoq22pi] la cantidad de columnas....
necesito hacer un footer en twbrowse de hernan
[quote="Patricio Avalos Aguirre":3ojrrebh][code:3ojrrebh]oBrw&#58;lDrawFooters &#58;= &#46;t&#46; oBrw&#58;aFooters &#58;= &#123; "", "", trans&#40;ntot, "@E 9,999,999,999" &#41; &#125; [/code:3ojrrebh] la cantidad de columnas....[/quote:3ojrrebh] <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title=...
necesito hacer un footer en twbrowse de hernan
[quote="Patricio Avalos Aguirre":3j92se3v][code:3j92se3v]oBrw&#58;lDrawFooters &#58;= &#46;t&#46; oBrw&#58;aFooters &#58;= &#123; "", "", trans&#40;ntot, "@E 9,999,999,999" &#41; &#125; [/code:3j92se3v] la cantidad de columnas....[/quote:3j92se3v] Estimado. Es necesario refrescar los footers en la twbrowse? como? ...
necesito hacer un footer en twbrowse de hernan
Hola, yo lo hago asi: oBrw:aFooters := {|| TotxCespite( aElenco ) } y en la funcion, devuelvo un array con los resultados. FUNCTION TotxCespite( aElenco ) aArray := { "Totale ammortizzato: "+TRANSFORM( nTotAmm, "@e 999,999,999.99" ), "", "", "", "", ""} RETURN aArray Saludos
necesito insertar ""ENTER"" cada x cantidad de caracteres
Hola. Tengo una cadena de 1024 caracteres y quiero mostrarlos en un get multiline, pero al intentar esto: local cLinea:= substr(texto, 1, 50) + chr(10) + chr(13) + substr.... no me muestra en dos lineas. en que le estoy errando?
necesito insertar ""ENTER"" cada x cantidad de caracteres
[quote="goosfancito":18239rlz]Hola. Tengo una cadena de 1024 caracteres y quiero mostrarlos en un get multiline, pero al intentar esto: local cLinea:= substr(texto, 1, 50) + chr(10) + chr(13) + substr.... no me muestra en dos lineas. en que le estoy errando?[/quote:18239rlz] Just to start, try with chr(13) + chr(10)...
necesito insertar ""ENTER"" cada x cantidad de caracteres
local cLinea:= substr(texto, 1, 50) + CRLF + substr.... Intentalo de esa manera
necesito insertar ""ENTER"" cada x cantidad de caracteres
[code=fw:10olbgxn]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;<span style="color: #00C800;">LOCAL</span> cTexto &nbsp; &nbsp; := <span style="color: #ff0000;">""</span><br /><br />&nbsp; &nbsp;cTexto += <span style="color: #ff0000;">"Esta es la primera linea del texto"</span> + CRLF<br ...
necesito posicionarme en el ROOT del tree
Hola. Necesito posicionarme en el ROOT de un tree como lo hago? para poder despues recorrerme todo el arbol. gracias
necesito posicionarme en el ROOT del tree
oTree:GoTop()
necesito posicionarme en el ROOT del tree
Antonio una vez que tengo el objeto oTree con las ramas e items, como hago para recorrerme todas las ramas? no encuentro la forma. estoy trabado.
necesito que FWDBG..
Hola. Necesito que al ejectuar FWDBG... el programa continue y no se detenga hasta que cierre la ventana de FWDBG. se puede?
necesito que FWDBG..
Gustavo, Sí se puede <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> 1. Tienes que establecer un breakpoint al final de la app, si quieres que se detenga al final. No lo pongas en el return, sino en la línea de ejecución previa 2. Tienes que comentar dos llamadas que se ...
necesito que FWDBG..
Gracias! Pruebo.
necesito que me saquen una duda
Fecha de inicio (DD/MM/AAAA): 29/01/1905 Fecha final (DD/MM/AAAA): 02/10/1926 Cantidad de años: 20 esto es asi?
necesito que me saquen una duda
goosfancito No es así Es 21
necesito que me saquen una duda
[code=fw:ewscj6fl]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\somadat.prg</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span sty...
necesito que me saquen una duda
[quote="acuellar":3qyfv7wc]goosfancito No es así Es 21[/quote:3qyfv7wc] Adhemar, porquê? No és 20 años, 9 meces y cuatro dias? +- eso. jajajajajajaja. Saludos.
necesito que me saquen una duda
por eso mismo tengo la duda, para mi es como dice Karinha. pueden verificarlo?
necesito que me saquen una duda
[quote="karinha":3gb85o3z][quote="acuellar":3gb85o3z]goosfancito No es así Es 21[/quote:3gb85o3z] Adhemar, porquê? No és 20 años, 9 meces y cuatro dias? +- eso. jajajajajajaja. Saludos.[/quote:3gb85o3z] da 21
necesito que me saquen una duda
Hola, Una forma muy poco ortodoxa si es que usas MySql podes preguntarselo al servidor. [code=fw:25nsvhm8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">SELECT</span> TIMESTAMPDIFF<span style="color: #000000;">&#40;</span><span style="color: #0000ff;">YEAR</span>, <span style=...
necesito que me saquen una duda
No estoy de acuerdo con tu lógica y vuelvo a intentarlo: 20 años, once meses y 5 días. 21 años, solo en: 29/01/1926. [code=fw:1raflkct]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\IDADE.PRG</span><br /><br /><span style="color: #B900B9;">// função que retorn...
necesito que me saquen una duda
karinha El tema es que en la pregunta original, dice 29/10/1926 (Noviembre) en tu función estás poniendo Enero. <!-- s:mrgreen: --><img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green" /><!-- s:mrgreen: -->
necesito que me saquen una duda
És verdad. 1000 desculpas. jajajajajajajaja. Regards, saludos.
necesito que me saquen una duda
[quote="karinha":23x5wlv0]No estoy de acuerdo con tu lógica y vuelvo a intentarlo: 20 años, once meses y 5 días. 21 años, solo en: 29/01/1926. [code=fw:23x5wlv0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\IDADE.PRG</span><br /><br /><span style="color: #B90...
necesito que me saquen una duda
[quote="goosfancito":2p2c2wqc][quote="karinha":2p2c2wqc]No estoy de acuerdo con tu lógica y vuelvo a intentarlo: 20 años, once meses y 5 días. 21 años, solo en: 29/01/1926. [code=fw:2p2c2wqc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\IDADE.PRG</span><br />...
necesito que me saquen una duda
Hola a Todos... Yo lo hago asi [code=fw:25pjza03]<div class="fw" id="{CB}" style="font-family: monospace;">    <span style="color: #00C800;">local</span> dFechaA, dFechaB, nYears, nMeses, nDias<br /><br />    dFechaA := cTod<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">'29/01/1905'</span><spa...
necesito que me saquen una duda
José: Disculpa mi intromisión, y los años bisiestos? Saludos
necesito que me saquen una duda
[quote="Armando":2vkfos2a]José: Disculpa mi intromisión, y los años bisiestos? Saludos[/quote:2vkfos2a] Hola armando. Todo parte del calculo de los dias exactos transcurridos entre las dos fechas.
necesito que me saquen una duda
[code=fw:1yqog90b]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\IDADE2.PRG</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span styl...
necesito que me saquen una duda
[quote="karinha":tunp2g3m][code=fw:tunp2g3m]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \samples\IDADE2.PRG</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">FUNC...