messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Is there a way to copy a file that has a comma \",\" in the file name. \n\nWith COPY FILE &cSource TO &cDest I get a DOS Error 123.\n\nI cannot control the original filename so I have to somehow work with the \",\" in the filenam...
COPY FILE issue
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "You might try\nCOPY FILE (cSource) TO (cDest)\nor maybe \nfilecopy( cSource, cDest )", "time": "04:38", "topic": "COPY FILE issue", "username": "Gale FORd" } ]
COPY FILE issue
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Gale,\n\nSame error <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->", "time": "13:49", "topic": "COPY FILE issue", "username": "Jeff Barnes" } ]
COPY FILE issue
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "I wonder if the error is in source or destination definition. Can you change the destination name to one without comma?\nCOPY FILE (cSource) TO ('test.tst')\nIf it can copy to normal filename without error then you might have a wo...
COPY FILE issue
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff, I don't have xharbour available to test with but the following code works in harbour.\n\n[code=fw:2erxnqn1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />procedure main<span style=\"color: #000000;\">&...
COPY FILE issue
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks Robb ... unfortunately with xharbour I get \"Copy Failed\" <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->", "time": "17:03", "topic": "COPY FILE issue", "username": ...
COPY FILE issue
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "[code=fw:qk204fb0]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">static</span> cTarget := <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\F</span>ive\"</...
COPY FILE issue
[ { "date": "2016-05-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff\n\nI know with Sql you can put things in brackets .. perhaps\n\nCopy file ( \"[Some,File]\" ) to ( \"[ Some,Where ]\" ) .. untested .. just a shot in the dark.\n\nRick Lipkin", "time": "23:06", "topic": "COPY FILE iss...
COPY FILE issue
[ { "date": "2016-05-05", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Jeff Barnes\":3l8z6pg6]Is there a way to copy a file that has a comma \",\" in the file name. \n\nWith COPY FILE &cSource TO &cDest I get a DOS Error 123.\n\nI cannot control the original filename so I have to somehow wo...
COPY FILE issue
[ { "date": "2016-05-05", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks everyone. I got it working <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->", "time": "18:30", "topic": "COPY FILE issue", "username": "Jeff Barnes" } ]
COPY FILE issue
[ { "date": "2021-06-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\nHow can i copy one table from a database located on one server to another database located on an other server .\n\nThanks for your help and samples ,\n\nPhilippe", "time": "14:48", "topic": "COPY SQLTABLE from 1 SERV...
COPY SQLTABLE from 1 SERVER to ANOTHER
[ { "date": "2021-06-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Very easy if you use FWH built-in MySql library.\n\n[code=fw:gm0l8mma]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />oServer1 := maria_Connect<span style=\"color: #000000;\">&#40;</span> .... <span style=\"c...
COPY SQLTABLE from 1 SERVER to ANOTHER
[ { "date": "2021-06-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks for this answer but i 'll a sample for Microsoft MS SQL Server .\n\nThanks\n\nPhilippe", "time": "15:56", "topic": "COPY SQLTABLE from 1 SERVER to ANOTHER", "username": "Jack" } ]
COPY SQLTABLE from 1 SERVER to ANOTHER
[ { "date": "2005-11-18", "forum": "FiveWin para CA-Clipper", "text": "Desde hace años, tengo una aplicación de recibos (primero con Clipper y ahora Clipper+FW23, que prepara un fichero txt, según la norma CSB19, para su cobro a través de Bancos. \n\nHasta ahora ningún problema, pero un cliente que lo uti...
COPY TO SDF
[ { "date": "2005-11-19", "forum": "FiveWin para CA-Clipper", "text": "Manuel,\n\nPrueba a quitarle el último byte de esta forma:\n\ncTemp = MemoRead( <nombre_fichero> )\n\nMemoWrit( <nombre_fichero>, SubStr( cTemp, 1, Len( cTemp ) - 1 ) )", "time": "09:34", "topic": "COPY TO SDF", "username":...
COPY TO SDF
[ { "date": "2005-11-19", "forum": "FiveWin para CA-Clipper", "text": "Antonio, eres un monstruo. Ha funcionado perfectamente.\n\n\nUn saludo\n\nManuel", "time": "12:08", "topic": "COPY TO SDF", "username": "Manuel Valdenebro" } ]
COPY TO SDF
[ { "date": "2005-11-21", "forum": "FiveWin para CA-Clipper", "text": "Hola Manuel,\nprecisamente estoy haciendo una aplicación de recibos y el cliente me ha pedido poder generar un fichero para las domiciliaciones. Creo que se trata de la norma bancaria 19 ¿Podrías orientarme sobre la estructura del fich...
COPY TO SDF
[ { "date": "2005-11-21", "forum": "FiveWin para CA-Clipper", "text": "Manuel,\n\nDe esta dirección, puedes bajarte el cuardeno CSB-19\n\n<!-- m --><a class=\"postlink\" href=\"http://comercios.lacaixa.es/Canales/Contenido/0,1059,1-26-486-1,00.html\">http://comercios.lacaixa.es/Canales/Con ... -1,00.html<...
COPY TO SDF
[ { "date": "2005-11-22", "forum": "FiveWin para CA-Clipper", "text": "Muchas gracias Manuel por tu información y disposición a ayudarme. Me lo bajo y ya hablaremos si es caso.\nUn saludo,\nManuel Aranda", "time": "18:35", "topic": "COPY TO SDF", "username": "Manuel Aranda" } ]
COPY TO SDF
[ { "date": "2010-06-07", "forum": "FiveWin for Harbour/xHarbour", "text": "The code snippet below gave me a surprising result. The 2nd file() returns .f.. This would only happen if 'set default' isn't respected. In Clipper, a similar code would've return .t.. \n\nTest environment: FWH10.5, xHarbour 1.2.1...
COPY TO oddness
[ { "date": "2010-06-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Oddly enough, when I compile the program as a xHarbour console program, I get the correct result. Only when I linked-in FWH10.5 will I get the error. Anyone has any suggestion?\n\nJust in case it helps, this is the batch file that...
COPY TO oddness
[ { "date": "2010-06-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Just to rule out a possibility, I checked the ppo between console and windows program. Seems COPY TO are pre-processed to the same syntax. Running out of idea here", "time": "10:37", "topic": "COPY TO oddness", "userna...
COPY TO oddness
[ { "date": "2010-06-08", "forum": "FiveWin for Harbour/xHarbour", "text": "As a last resort, I downloaded an older binary from <!-- m --><a class=\"postlink\" href=\"http://downloads.sourceforge.net/xharbour/xharbour-1.20.01.bin.w32.bcc32.5.82.zip\">http://downloads.sourceforge.net/xharbo ... 2.5.82.zip<...
COPY TO oddness
[ { "date": "2010-06-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello\n\n[b:1ffylx8r]xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6714)\nCopyright 1999-2010, <!-- m --><a class=\"postlink\" href=\"http://www.xharbour.org\">http://www.xharbour.org</a><!-- m --> <!-- m --><a class=\"postlink\" ...
COPY TO oddness
[ { "date": "2010-06-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Yes, that's the bug that I encountered. The 2nd file() is returning .f., not the expected .t.. Thank you for the test Patricio. At least I now know it's not something that happens just to me.", "time": "15:43", "topic": "C...
COPY TO oddness
[ { "date": "2010-06-09", "forum": "FiveWin for Harbour/xHarbour", "text": "I have also experienced COPY TO failing unexpectedly\nI concluded it was a xhb compiler bug and worked around it\nUsing xHb build 1.21 intl simplex rev 6406", "time": "01:38", "topic": "COPY TO oddness", "username": "p...
COPY TO oddness
[ { "date": "2010-06-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Peter,\n I initially thought it was a bug in xHarbour but when I created a console program to make my case I get the correct result. When I linked it with FWH, I get the wrong result. Since COPY TO is pre-processed into __db...
COPY TO oddness
[ { "date": "2010-06-09", "forum": "FiveWin for Harbour/xHarbour", "text": "The problem is in xHarbour and it's there with or without FWH. I'm going to look at it.\n\nEMG", "time": "08:06", "topic": "COPY TO oddness", "username": "Enrico Maria Giordano" } ]
COPY TO oddness
[ { "date": "2010-06-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks Enrico! <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) --> Finding the source of this bug and fixing it is beyond my capability", "time": "10:37", "topic": "COPY TO oddn...
COPY TO oddness
[ { "date": "2010-06-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Any update on this Enrico?", "time": "10:48", "topic": "COPY TO oddness", "username": "hua" } ]
COPY TO oddness
[ { "date": "2010-06-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Unfortunately not. Fixing that bug would create another serious path incompatibility that I'm not able to solve. We have to wait for anybody else to fix it, sorry.\n\nEMG", "time": "14:32", "topic": "COPY TO oddness", ...
COPY TO oddness
[ { "date": "2010-06-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you for the update Enrico <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->", "time": "03:01", "topic": "COPY TO oddness", "username": "hua" } ]
COPY TO oddness
[ { "date": "2010-09-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Does this issue still exist in latest xHarbour?\n\nTIA", "time": "04:36", "topic": "COPY TO oddness", "username": "hua" } ]
COPY TO oddness
[ { "date": "2010-09-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Try with this:\n\nIn your code use:\n [b:30sdv7cj]copy to (cTmp+\".dbf\")[/b:30sdv7cj]\n\ninstead of:\n copy to (cTmp)", "time": "08:30", "topic": "COPY TO oddness", "username": "Verhoven" } ]
COPY TO oddness
[ { "date": "2010-09-29", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"hua\":152c9j6p]Does this issue still exist in latest xHarbour?\n\nTIA[/quote:152c9j6p]\n\nYes. <!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( -->\n\nEMG", "time": "09:22", ...
COPY TO oddness
[ { "date": "2010-09-30", "forum": "FiveWin for Harbour/xHarbour", "text": "@Verhoven - thanks for the reply but I'm not looking for a workaround. I was hoping that the bug is squashed so I don't have to alway remember not to upgrade my xHarbour\n\n@Enrico - thanks for the feedback. That's unfortunate to ...
COPY TO oddness
[ { "date": "2010-09-30", "forum": "FiveWin for Harbour/xHarbour", "text": "I think that the solution i wrote is not workaround. Why?:\nThis code is inexact and inconsistent:\n copy to (cTmp) \n ? file(cTmp+\".dbf\")\nBecause in the firt line you refer a file only using the va...
COPY TO oddness
[ { "date": "2010-09-30", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Verhoven\":1vs2hfdm]Try with this:\n\nIn your code use:\n [b:1vs2hfdm]copy to (cTmp+\".dbf\")[/b:1vs2hfdm]\n\ninstead of:\n copy to (cTmp)[/quote:1vs2hfdm]\n\nJust tried: no change.\n\nEMG", "time": "21:00", ...
COPY TO oddness
[ { "date": "2010-10-01", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Verhoven\":3tufmhez]I think that the solution i wrote is not workaround. Why?:\nThis code is inexact and inconsistent:\n copy to (cTmp) \n ? file(cTmp+\".dbf\")\nBecause in the firt line you r...
COPY TO oddness
[ { "date": "2008-04-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Esto me ha sucedido desde siempre.\r\nEn un directorio tengo en existencia cerca de 4 mil archivos Tif por dia, estas imagenes las muevo a otra carpeta cuando ya no se necesitan.\r\n\r\nResulta que de cada 400 imagenes que yo int...
COPY falla en XP cuando son muchos
[ { "date": "2008-04-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola, haces asi, que funcionara.\r\n[code:20attgk6]\n COPYFILE&#40; \"C&#58;\\PIZZAS\\CLIENTES&#46;DBF\", \"C&#58;\\PIZZAS\\COPIA\\CLIENTES&#46;DBF\", &#46;F&#46; &#41;\n[/code:20attgk6]", "time": "18:21", "topic": "CO...
COPY falla en XP cuando son muchos
[ { "date": "2008-04-29", "forum": "FiveWin para Harbour/xHarbour", "text": "Tambien halle este post de James\r\n\r\nCopyFile( cSource, cTarget ) \r\n\r\nDLL32 FUNCTION CopyFile( cExFile AS LPSTR, cNewFile AS LPSTR, lFailIfEx AS LONG ); \r\nAS BOOL PASCAL FROM \"CopyFileA\" LIB \"Kernel32.dll\" \r\n\r\n\r...
COPY falla en XP cuando son muchos
[ { "date": "2007-03-18", "forum": "FiveWin para Harbour/xHarbour", "text": "compañeros:\nnecesito desde mi EXe llamar a otro EXE mediante Winexec, pero antes de llamarlo [b:1i0ekdkq]quiero saber si ya está corriendo[/b:1i0ekdkq]. ¿como lo puedo saber?\n\nIntenté con la función GetTasks(), haciendo esto:\...
CORRIENDO 2 EXE A LA VEZ
[ { "date": "2007-03-18", "forum": "FiveWin para Harbour/xHarbour", "text": "[code:2rmm3qkk]\nIF IsExeRunning&#40;cFileName&#40;GetModuleFileName&#40;GetInstance&#40;&#41;&#41;&#41;&#41; msgalert&#40;\"Program already running!\"+CRLF+\"This program cannot be started more than one instance!\"&#41; \n Q...
CORRIENDO 2 EXE A LA VEZ
[ { "date": "2006-06-29", "forum": "FiveWin para Harbour/xHarbour", "text": "Alguien sabe como puedo solucionar una corrupción en un fichero memo.\n\ndbfcdx\n\nsaludos", "time": "12:15", "topic": "CORRUPCIÓN EN MEMO FILE", "username": "MANOLO" } ]
CORRUPCIÓN EN MEMO FILE
[ { "date": "2006-06-29", "forum": "FiveWin para Harbour/xHarbour", "text": "Que versión/build de Harbour/xHarbour usas ?", "time": "18:23", "topic": "CORRUPCIÓN EN MEMO FILE", "username": "Antonio Linares" } ]
CORRUPCIÓN EN MEMO FILE
[ { "date": "2006-06-29", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"Antonio Linares\":3q3c50vv]Que versión/build de Harbour/xHarbour usas ?[/quote:3q3c50vv]\n\nHola antonio uso fw25, pero el problema no es del compilador, necesito saber si conoceis de algún programa que me regenere los i...
CORRUPCIÓN EN MEMO FILE
[ { "date": "2008-06-16", "forum": "FiveWin para Harbour/xHarbour", "text": "No puedo darle colores distintos a las columnas, utilizo el twbrowse,, alguna sugerencia??\r\nSalu2", "time": "03:33", "topic": "COlor en las columnas con twbrowse", "username": "Willi Quintana" } ]
COlor en las columnas con twbrowse
[ { "date": "2008-06-16", "forum": "FiveWin para Harbour/xHarbour", "text": "Solucionado.,. sorry..\r\n\r\noLbxR:bTextColor := { |nRow,nCol|ColorRegComVen(nCol))}\r\n\r\n\r\nFunction ColorRegComVen(nCol)\r\nDO CASE\r\n CASE nCol = 1 .OR. nCol = 4 .OR. nCol = 9 // fecha y ruc\r\n Return CLR_GREEN\...
COlor en las columnas con twbrowse
[ { "date": "2006-11-08", "forum": "FiveWin para Pocket PC", "text": "Buenas, tengo un campo cadena de un fichero dbf funcionando en entorno Windows donde los usuarios graban una tasa (numerico con 2 decimales) de la siguiente forma:\n\n3.22\n2.10\n...\nUtilizando la funcion: val( campo ) me devuelve un v...
COnversion de cadena a numero
[ { "date": "2006-11-08", "forum": "FiveWin para Pocket PC", "text": "Juan José,\n\nEste código funciona correctamente en FWPPC:\n\nMsgInfo( Val( \"3.22\" ) )\n\n> La funcion MsgYsNo me sale en Ingles ¿Que estoy haciendo mal? \n\nMsgYesNo() admite dos parámetros:\n\nMsgYesNo( \"¿ Desea finalizar ?\", \"Se...
COnversion de cadena a numero
[ { "date": "2006-11-08", "forum": "FiveWin para Pocket PC", "text": "Antonio, MsgYesno, se como funciona, pero el caso es que el dialogo me aparece en ingles y creo que todo mi problema está en que no se como decirle a la aplicacion que funciones en castellano.\n\nJuanjosé", "time": "14:50", "top...
COnversion de cadena a numero
[ { "date": "2006-11-08", "forum": "FiveWin para Pocket PC", "text": "Juan José, \n\nEl diálogo te saldrá en inglés si usas un Pocket PC con idioma inglés, ya que MsgYesNo() usa una función propia del API de Windows. Configura el idioma de tu Pocket PC.\n\nOtra opción es crear tu mismo un diálogo semejant...
COnversion de cadena a numero
[ { "date": "2006-11-08", "forum": "FiveWin para Pocket PC", "text": "Tengo lo siguiente en el programa:\n\n SET DELETED ON\n SET DATE TO ITALIAN\n SET SOFTSEEK ON\n SET CENTURY ON\n SET EPOCH TO 2000\n SET SOFTSEEK ON\n\n HB_LANGSELECT( \"ESWIN\" )\n HB_SetCodePag...
COnversion de cadena a numero
[ { "date": "2021-08-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi to all <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->\n\nI want to use CP 852 in my FW/Harbour program. I use:\n\nHB_CdpSelect (\"HR852\")\n\nbut not all characters are displaye...
CP 852
[ { "date": "2021-08-09", "forum": "FiveWin for Harbour/xHarbour", "text": "<!-- m --><a class=\"postlink\" href=\"http://harbourlanguage.blogspot.com/2010/06/harbour-codepage.html\">http://harbourlanguage.blogspot.com/201 ... epage.html</a><!-- m -->", "time": "19:03", "topic": "CP 852", "use...
CP 852
[ { "date": "2021-08-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks Antonio, I know this text, but it doesn't help me. I will try to explain the problem. In plain Harbour, this program use CP 852 codepage:\n\n[code=fw:3ag4zur9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">...
CP 852
[ { "date": "2021-08-12", "forum": "FiveWin for Harbour/xHarbour", "text": "[code=fw:3htevqcm]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br />REQUEST HB_CODEPAGE_HR852<br /><br ...
CP 852
[ { "date": "2021-08-12", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you, although I wrote too simple example <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->)\n\nHow do I create GET of such variables?\n\nRegards, NB", "time": "16:46", "...
CP 852
[ { "date": "2007-01-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, a que puede ser debido que cuando consulto el rendimiento tanto los programas compilados con harbour y fwh25 y los antiguos hechos con versiones mas antiguas de fw20 y clipper me de que el uso de la CPU este al 100% y no...
CPU al 100%
[ { "date": "2007-01-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Andrés,\n\nCon Clipper sería algo más normal, ya que se usa la capa de wow (windows on windows) para ejecutar 16 bits en 32 bits.\n\nCon Harbour no debería ocurrir. Usas algún bucle principal desde donde llames a SysRefresh() ?",...
CPU al 100%
[ { "date": "2007-01-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio me he dado cuenta que eso solo le pasa cuando gestiono la base de datos el tcbrowse lo paro con un: [code:vmh5ht62]\n ACTIVATE WINDOW oWndEdit MAXIMIZED ;\n ON RESIZE oSpl&#58;AdjRight&#40;&#41;;\n ...
CPU al 100%
[ { "date": "2007-01-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Andrés,\n\nLa ventana oWndEdit es una ventana MDI child ?", "time": "13:57", "topic": "CPU al 100%", "username": "Antonio Linares" } ]
CPU al 100%
[ { "date": "2007-01-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Sí, depende de la principal.\n\n[code:1cwdifp3]\n DEFINE FONT oFont NAME \"Ms Sans Serif\" SIZE 0,-8\n DEFINE WINDOW oWndEdit MDICHILD OF oWnd TITLE x_tit //Ventana child de la principal oWnd FROM 2, 2 TO 20, 50\n\n D...
CPU al 100%
[ { "date": "2007-01-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Andrés,\n\nEste código no es necesario en absoluto:\n[code:31sftcc8]\nDO WHILE ! lExit\n SysWait&#40;&#46;1&#41; \nENDDO\n[/code:31sftcc8]\nuna ventana MDI child es siempre no modal. Dices que se cierra la base de datos, y es n...
CPU al 100%
[ { "date": "2007-02-01", "forum": "FiveWin para Harbour/xHarbour", "text": "Indudablemente este es el motivo, cuando quito el syswait el consumo del procesador oscila entre los 40% y el 85% pero no se posiciona como antes al 100%. El problema es que es heredado de la programcion del antiguo clipper y de ...
CPU al 100%
[ { "date": "2015-05-12", "forum": "FiveWin for Harbour/xHarbour", "text": "To all,\nHow can we detect the number of cores and how to bind an Fivewin-exe to a certain core.\nThanks in advance\nOtto", "time": "06:18", "topic": "CPU core", "username": "Otto" } ]
CPU core
[ { "date": "2015-05-12", "forum": "FiveWin for Harbour/xHarbour", "text": "Otto,\n\nNot sure if this may help:\n\n[url:2xvcsvxf]https&#58;//technet&#46;microsoft&#46;com/en-us/magazine/ee851672&#46;aspx[/url:2xvcsvxf]", "time": "11:36", "topic": "CPU core", "username": "Antonio Linares" } ]
CPU core
[ { "date": "2016-06-17", "forum": "FiveWin para CA-Clipper", "text": "Estimados, alguno me podria indicar como crear un archivo de texto sin ocupar TDOSPRN \n\nMuchas gracias!", "time": "20:32", "topic": "CRAR ARCHIVO PLANO SIN USAR TDOSPRN", "username": "ozono1981" } ]
CRAR ARCHIVO PLANO SIN USAR TDOSPRN
[ { "date": "2016-06-18", "forum": "FiveWin para CA-Clipper", "text": "yo lo hago así :\n\nfunction creatxt()\nlocal cFile := \" c:\\nombre.txt\"\nlocal cText:= \"\"\n\n cText += \" lo que quieras en la linea 1 \" +CRLF\n cText += \" lo que quieras en la linea 2 \" +CRLF\n ........\n\n ...
CRAR ARCHIVO PLANO SIN USAR TDOSPRN
[ { "date": "2016-06-19", "forum": "FiveWin para CA-Clipper", "text": "Ozono:\n\nOtra opción es usar las funciones \n\nFCREATE()\nFWRITE()\nFCLOSE()\n\nÉchales una mirada.\n\nSaludos", "time": "01:38", "topic": "CRAR ARCHIVO PLANO SIN USAR TDOSPRN", "username": "Armando" } ]
CRAR ARCHIVO PLANO SIN USAR TDOSPRN
[ { "date": "2016-06-19", "forum": "FiveWin para CA-Clipper", "text": "Ozono:\n\nEncontré un ejemplo\n\n[code=fw:rdj0s11h]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp; nHandle := FCreate<span style=\"color: #000000;\">&#40;</span>cFile,FC_NORMAL<span style=\"color: #0...
CRAR ARCHIVO PLANO SIN USAR TDOSPRN
[ { "date": "2023-03-28", "forum": "FiveWin for Harbour/xHarbour", "text": "How can I find out the CRC of a file without loading it into a variable ?", "time": "10:28", "topic": "CRC of a file", "username": "Natter" } ]
CRC of a file
[ { "date": "2023-03-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear Yuri,\n\nYou can use FWH function nFileCRC( cFileName [, lJumpFirst32bytesForDBFs] )", "time": "10:57", "topic": "CRC of a file", "username": "Antonio Linares" } ]
CRC of a file
[ { "date": "2023-03-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you, Antonio!", "time": "11:12", "topic": "CRC of a file", "username": "Natter" } ]
CRC of a file
[ { "date": "2021-02-27", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola de nuevo\nEn relación a la factura electrónica y su comunicación a las Haciendas vascas necesito generar un CRC8 para validar el código identificativo y el QR que debemos insertar en la factura.\nTodo lo que encuentro es par...
CRC8
[ { "date": "2021-02-28", "forum": "FiveWin para Harbour/xHarbour", "text": "[code=fw:2klokmb3]<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;\">fu...
CRC8
[ { "date": "2021-02-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Thank you very much Mr. Rao, it works perfectly!!!", "time": "09:19", "topic": "CRC8", "username": "landaga" } ]
CRC8
[ { "date": "2013-10-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola amigos, me gustaría saber como puedo imprimir en una hoja legal, un reporte de nómina de empleados, ya que la hoja 8 1/2 x 11 en horizonta no me cabe.\n\nGracias,\nJuan Fco.\nRep. Dom.", "time": "17:25", "topic": "C...
CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE HOJA LEGAL
[ { "date": "2013-10-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Prueba con oPrn:SetPage( 5 ) // Legal 8 1/2 x 14 in\n\nSaludos", "time": "17:44", "topic": "CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE HOJA LEGAL", "username": "TecniSoftware" } ]
CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE HOJA LEGAL
[ { "date": "2013-10-30", "forum": "FiveWin para Harbour/xHarbour", "text": "No me funciono le puse OPRN:SETPAG(5) Y después use OREPORT:SETPAGE(5), esta última es la que usa el creador de reporte.\n\nGracias,\nJuan Fco.", "time": "18:26", "topic": "CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE H...
CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE HOJA LEGAL
[ { "date": "2013-11-03", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola, con REPORT oReport, intenta asi:\n[code=fw:264pnenz]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">     PrnSetSize<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">2160</span>,<spa...
CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE HOJA LEGAL
[ { "date": "2013-11-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Hermano, muchas gracias, así llo resolvi.\n\nBendiciones,\nJuan Fco.\n|Rep. Dom", "time": "01:58", "topic": "CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE HOJA LEGAL", "username": "juan fco. vasquez Mendoza" } ]
CREACDOR DE REPORTE FIVEWIN IMPRIMIR TAMAÑO DE HOJA LEGAL
[ { "date": "2014-12-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Amigos al hacer esto:\n\noPrn:=TDosPrn():New( \"ARCHIVO.TXT\" )\noPrn:Say(1,1,\"HOLA;QUE TAL\" )\noPrn:End()\nel resultado es HOLA;QUE TAL\f y (al final me aparece un cuadradito)", "time": "16:50", "topic": "CREAR ARCHIVO...
CREAR ARCHIVO DE TEXTO
[ { "date": "2014-12-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Jose,\n\nEdita el fichero de texto con un editor hexadecimal y comprueba que byte tiene al final", "time": "18:37", "topic": "CREAR ARCHIVO DE TEXTO", "username": "Antonio Linares" } ]
CREAR ARCHIVO DE TEXTO
[ { "date": "2014-12-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Yo lo hago asi:\n\n[code=fw:2iqkf33y]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; cFileTxt := <span style=\"color: #ff0000;\">\"texto.txt\"</span><br />&nbsp; <br />&nbsp; nHandle:= FCREATE<span st...
CREAR ARCHIVO DE TEXTO
[ { "date": "2007-05-19", "forum": "FiveWin para Harbour/xHarbour", "text": "Estoy necesitando crar un archivo dll con codigo ejecutable, que luego pueda abrir en VBA de Excel, la idea es que esa dll me permita leer y grabar registros en un archivo DBFNTX (para que actualice los indices, ppalmente). \nEst...
CREAR CODIGO EN DLL PARA USAR CON VBA EXCEL
[ { "date": "2012-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "Saludos, estoy usando MYSQL y la clase TDolphin y se me presenta el siguiente caso, tengo 2 tablas, una donde tengo maestro de clientes, y otra donde hay movimientos de esos \nclientes, cada cliente puede tener N cantidad de movi...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "Jose Luis,prueba a adaptar este codigo MySql.\n[code=fw:1noxjg3j]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">SELECT</span> Codigo,nombre,fecha,debe,haber <span style=\"color: #0...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "joseluisysturiz,\n\nHaber si entendi, por ejemplo.\n\nCliente con campos\n Cliente\n Calle\n Numero\n Etc\n\nDetalle de clientes\n Cliente\n Cargos\n Abonos\n Fecha\n Etc\n\n[code=fw:2bjsmpdb]<div class=\"fw\" id=\"{CB}\...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "Francisco, esa idea fuera buena si los codigos fuesen fijos y limitados, pero el select de clientes varia en cantidad de clientes y diferentes codigos dependiendo del filtro que haya hecho el usuario, por eso es que use los do w...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "Jose Luis:\n[color=#FF0000:sch4ah9k]WHERE codigo='1210004099' OR codigo='1210003099') ; //aqui tu condicion[/color:sch4ah9k]\nEs solo un ejemplo; es aqui donde vas a poner la condicion de filtrado de tu tabla de clientes, sobre...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "Willian, doy un ejemplo de los datos que pueden suceder, ya que no es sobre un solo registro sino de varios clientes:\n\nEjemplo, en el select de cliente basado en un filtro obtuve:\n\nccod_cliente nombre\n001 ...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "Jose Luiz,\n\nPuedes crear indices en las tablas y en los campos donde tu haces las busquedas.", "time": "19:26", "topic": "CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS", "username": "Kleyber" } ]
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-12", "forum": "FiveWin para Harbour/xHarbour", "text": "FranciscoA,\n\nEl condicional lo puedes aplicar segun tus necesidades, me refiero puedes filtar por detalle y tambien por el maestro de catalogos. Es cuestion de jugarle con los campos...\n\njoseluisysturiz,\n\nEfectivamente pued...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-12", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"wmormar\":3f1lbtn8]FranciscoA,\nEl condicional lo puedes aplicar segun tus necesidades, me refiero puedes filtar por detalle y tambien por el maestro de catalogos. Es cuestion de jugarle con los campos...\n[/quote:3f1lbt...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-12", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"wmormar\":237vbu8a]FranciscoA,\n\nEl condicional lo puedes aplicar segun tus necesidades, me refiero puedes filtar por detalle y tambien por el maestro de catalogos. Es cuestion de jugarle con los campos...\n\njoseluisys...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-12", "forum": "FiveWin para Harbour/xHarbour", "text": "Jose Luis.\nHe creado esta consulta, basada en el ejemplo de William, que deberia funcionar. Solo agregale las ' ,\", + y ; donde correspondan, y las adaptaciones que estimes necesarias. (Es solo un codigo ejemplo) \n[code=fw:1g...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2012-11-12", "forum": "FiveWin para Harbour/xHarbour", "text": "jose luis\nprueba asi\nSELECT id,campo1,campo2,campo3,campo4 FROM movimientos WHERE id IN (SELECT id,campo1,campo2 FROM clientes WHERE \"tu condicion filtrado de cliente \")\nasi te debe funciionar sin problemas\nsaludos\npaco", ...
CREAR SELECT CON DATOS DE OTRO SELECT O SELECT ANIDADOS
[ { "date": "2020-06-21", "forum": "mod_harbour", "text": "Buenas tardes a Tod@s\n\ncomo her que funcione en modharbour la creación de clases\n\n[code=fw:67btikqb]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">CREATE <span style=\"color: #00C800;\">CLASS</span> tReporteVentas<br /><br /> ...
CREATE CLASS...