messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2016-05-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Para quien lo necesite el Link Actualizado..\n\n<!-- m --><a class=\"postlink\" href=\"http://www.mediafire.com/download/c8lft8wobhb6jaj/Asociar.rar\">http://www.mediafire.com/download/c8lft ... sociar.rar</a><!-- m -->\n\nSaludos.", "time": "16:34", "topic": "Asociar Extencion de Archivos a mi Aplicación", "username": "cuatecatl82" } ]
Asociar Extencion de Archivos a mi Aplicación
[ { "date": "2016-05-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Victor, gracias", "time": "20:26", "topic": "Asociar Extencion de Archivos a mi Aplicación", "username": "cnavarro" } ]
Asociar Extencion de Archivos a mi Aplicación
[ { "date": "2007-09-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Buenas Foro!, tengo este codigo asociado a un xbrowse:\n\n[code:16ol8xez]\nfunction press_on_browse&#40;nKey,self&#41;\n msginfo&#40;nkey&#41;\n do case \n case nkey = VK_F2 &#46;and&#46; &#58;&#58;lInsertButton\n &#58;&#58;Insert&#40;&#41; \n case nkey = VK_F3 &#46;and&#46; &#58;&#58;lDeleteButton\n &#58;&#58;Delete&#40;&#41; \n case &#40;nkey = VK_F4 &#46;or&#46; nKey = VK_RETURN&#41; &#46;and&#46; &#58;&#58;lModifyButton\n &#58;&#58;Modify&#40;&#41; \n case nkey = VK_F5 &#46;and&#46; &#58;&#58;lSearchButton\n &#58;&#58;Search&#40;&#41; \n case nkey = VK_F6 &#46;and&#46; &#58;&#58;lPrintButton\n &#58;&#58;Print&#40;&#41;\n case nkey = VK_ESCAPE \n &#58;&#58;oContainer&#58;End&#40;&#41;\n end case\nreturn\n[/code:16ol8xez]\n\nMe funciona todo perfectamente menos la tecla ESCAPE, ¿sabeis que puede ser?\n\nMuchas Gracias.", "time": "17:15", "topic": "Asociar teclas a un xBrowse", "username": "Mike Serra" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Se me ha olvidado comentaros que no es problema de VK_ESPAPE, ya que cuando pulso sobre la tecla ESCAPE, no se muestra nada en el msginfo.\n\nSALUDOS", "time": "17:17", "topic": "Asociar teclas a un xBrowse", "username": "Mike Serra" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-26", "forum": "FiveWin para Harbour/xHarbour", "text": "CUAL ÉS LA VERSION DE TU FIVEWIN?\n\nPROBASTES CON bKeyDown()??", "time": "18:31", "topic": "Asociar teclas a un xBrowse", "username": "karinha" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Karina\n\nes la FW 2.8 Octubre de 2006", "time": "18:45", "topic": "Asociar teclas a un xBrowse", "username": "Mike Serra" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-26", "forum": "FiveWin para Harbour/xHarbour", "text": "la llamada a press_on_browse la realizo asi:\n\n[code:32vhr5eg]\n &#58;&#58;oBrowse&#58;bKeydown&#58;=&#123;|nkey|press_on_browse&#40;nKey,self&#41;&#125;\n [/code:32vhr5eg]", "time": "18:46", "topic": "Asociar teclas a un xBrowse", "username": "Mike Serra" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-27", "forum": "FiveWin para Harbour/xHarbour", "text": "Cuando presionas ESC se sale del Browse o se queda alli?\n\n\nSi se sale del Browse entonces tienes que modificar el metodo KEYDOWN\nde la clase XBROWSE", "time": "17:03", "topic": "Asociar teclas a un xBrowse", "username": "jacgsoft" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Lo curioso es que no hace nada, es decir, si os fijais en la función del principio del post hay un msginfo(nkey), si pulso cualquier tecla me sale caracter ascii de la tecla pulsada, del F1, F2, F3, A, B, C, la que sea, pero si pulso ESCAPE no muestra nada.", "time": "12:25", "topic": "Asociar teclas a un xBrowse", "username": "Mike Serra" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-28", "forum": "FiveWin para Harbour/xHarbour", "text": "fijate en el metodo KEYDOWN de la clase XBROWSE y entenderas porque. En mi caso tuve que modificarlo para poder captar todas las teclas sin excepcion.\n\nJaime", "time": "17:06", "topic": "Asociar teclas a un xBrowse", "username": "jacgsoft" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Revisando un poco el código, yo el metodo KeyDown de xBrowse lo veo bien. Claro está que si le añades CASE nKey==27 ..., conseguiras variar el comportamiento.\n\nPero en realidad el hecho de no evaluar bKeyDown, es debido a el metodo KeyDown de la clase control.\nAllí si la tecla recibida es escape \n[code:rjwiu7t9]\nif nKey == VK_ESCAPE\n &#58;oWnd&#58;KeyDown&#40; nKey, nFlags &#41;\n return 0\n[/code:rjwiu7t9]\nmientras que si es otra tecla \n[code:rjwiu7t9]\nreturn Super&#58;KeyDown&#40; nKey, nFlags &#41;\n[/code:rjwiu7t9]\nSupongo que habra algún motivo, que no alcanzo a ver, pero si quitas el if nKey== VK_ESCAPE, veras como si te evalua correctamente el codigo de bKeyDown.\n::oWnd y Super no son el mismo objeto, y el code block bKeyDown esta asignado en Super.\n\nAlgun usuario mas experimentado, o Antonio directamente nos podra dar luz sobre el tema.", "time": "17:28", "topic": "Asociar teclas a un xBrowse", "username": "Biel EA6DD" } ]
Asociar teclas a un xBrowse
[ { "date": "2007-09-29", "forum": "FiveWin para Harbour/xHarbour", "text": "Muchas Gracias a los 2 (Jaime y Gabriel). Esperaré noticias.", "time": "06:30", "topic": "Asociar teclas a un xBrowse", "username": "Mike Serra" } ]
Asociar teclas a un xBrowse
[ { "date": "2006-05-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Colegas, espero puedan ayudarme en esta dificultad.... <!-- s:oops: --><img src=\"{SMILIES_PATH}/icon_redface.gif\" alt=\":oops:\" title=\"Embarassed\" /><!-- s:oops: --> \n\nNecesito asociar a los botones de una dialog que manipula los registros\nde una base de datos (botones: nuevo, modificar, eliminar, anterior, siguiente, ultimo, primero, etc) teclas de función de modo que cuando se presiona por ejemplo la tecla F7 equivalga a presionar el botón eliminar.\n\nLo hice así:\n.....\n#include \"inkey.ch\"\n......\n\n SetKey(K_F2 , {|| Nuevo( oDbf, oBtn, oDlg, oPage:aDialogs[1], ;\n oSay, oGet, cNom_Dbf, cAlias ) })\n SetKey(K_F8 , {|| Modificar(oPage:aDialogs[1], oBtn) })\n SetKey(K_F7 , {|| Borrec( oDbf, oBtn, oDlg, oPage:aDialogs[1], ;\n oSay ) }) .......\n\nDEFINE DIALOG .......\n.....\nACTIVATE DIALOG .......\n SetKey(K_F2 )\n SetKey(K_F8 )\n SetKey(K_F7 )\n......\nRETURN NIL\n\nPero al presionar las teclas de función no pasa nada, aunque con los botones las funciones andan perfecto.\n\nque está mal?:shock: \nHay una forma mejor o más correcta de hacerlo? <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: --> \n\nGracias desde ya por la ayuda que me puedan brindar. <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->", "time": "18:31", "topic": "Asociar teclas de función a funciones específicas", "username": "jose_murugosa" } ]
Asociar teclas de función a funciones específicas
[ { "date": "2006-05-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Oye Jose,\n\nyo lo hago asi como son botones los que quieres activar yo uso\n\nCASE nKey==VK_F2\n o123:SetFocus() \n o123:Click()\n \nsiendo o123 \n\n REDEFINE BUTTON o123 ID 123 OF oDlgLot ;\n PROMPT \"&Buscar Ticket\" Action (::BuscarTicket(::oComboSigno))\n\nespero me entiendas y te funcione \n\nSuerte", "time": "20:29", "topic": "Asociar teclas de función a funciones específicas", "username": "mag071" } ]
Asociar teclas de función a funciones específicas
[ { "date": "2006-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Sr...\ndebe funcionar,, yo oo hago asi\n\nSetKey(VK_F12,{||AbreCajonDinero(aSerieNumero)}) \n\n\nSalu2", "time": "04:22", "topic": "Asociar teclas de función a funciones específicas", "username": "Willi Quintana" } ]
Asociar teclas de función a funciones específicas
[ { "date": "2006-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias amigos por su ayuda, verdaderamente la mayoría de las veces este foro me saca de un apuro.\n\nEl error, (que se desprende de vuestros amables mensajes) es que estaba escribiendo mal la variable k_f2 en lugar de vk_f2 y así susesivamente, al reemplazar esto ya me anda, aunque tengo ahora unos errores que creo que deriban del caracter local de las variables que utilizo en el programa, pero veré como lo soluciono.\n\nLo importante: MUCHAS GRACIAS A TODOS!!!!! <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->", "time": "04:39", "topic": "Asociar teclas de función a funciones específicas", "username": "jose_murugosa" } ]
Asociar teclas de función a funciones específicas
[ { "date": "2006-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "I use this \n\nMaurizio \n\n//---------------------------------\nDEFINE BUTTON oBtn RESOURCE \"TEST\" OF oBar ACTION Msginfo(\"PRESS F2\")\n oBtn[1]:cargo := VK_F2\n oDlg:bKeyDown = { | nKey | CheckKey(nKey,oBar)}\n//----------------------------------\n Function CheckKey(nKey,oBar)\n Local nX,nY\n IF nKey >= VK_F2 .AND. nKey <= VK_F9\n IF oBar:lActive\n FOR ny := 1 TO len(oBar:aControls)\n IF oBar:aControls[ny]:cargo # nil .AND. oBar:aControls[ny]:lActive\n if oBar:aControls[nY]:cargo == nKey\n oBar:setfocus()\n oBar:aControls[nY]:Click()\n endif\n ENDIF\n NEXT\n ENDIF\n ENDIF\nReturn nil\n\n\n\n[/code]", "time": "07:14", "topic": "Asociar teclas de función a funciones específicas", "username": "Maurizio" } ]
Asociar teclas de función a funciones específicas
[ { "date": "2012-09-11", "forum": "FiveWin for Harbour/xHarbour", "text": "To All\n\nI have never had to sort an array before .. I have looked at the asort documentation and looked at some posts in this forum .. and the answer seems a bit 'blurry' to me. <!-- s:? --><img src=\"{SMILIES_PATH}/icon_confused.gif\" alt=\":?\" title=\"Confused\" /><!-- s:? --> \n\nI have a simple 4 element array with multiple rows and the last element is the row number assigned to the row when it was added ..\n\n[code=fw:2iwz8pu7]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />nRow := oLbx:<span style=\"color: #000000;\">KeyNo</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">+1</span><br /><br />aLine := <span style=\"color: #000000;\">&#123;</span> space<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">50</span><span style=\"color: #000000;\">&#41;</span>,nRepairNumber,cInventoryId,nRow <span style=\"color: #000000;\">&#125;</span><br />Aadd<span style=\"color: #000000;\">&#40;</span> aSerial, aLine <span style=\"color: #000000;\">&#41;</span><br /><br />aSort<span style=\"color: #000000;\">&#40;</span> aSerial, <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">&#41;</span>  <span style=\"color: #B900B9;\">// this does not work  </span><br /><br /> </div>[/code:2iwz8pu7]\n\nthe array table may look like this\n\n2345 200001 x3456 3\n5678 200001 x3456 1\n4567 200001 x3486 2\n\nI want to be able to sort this array by element 4 .. as you can see from my above 'feeble' attempt I need some basic array sorting help.\n\nAny advice would be appreciated!\n\nRick Lipkin", "time": "22:43", "topic": "Asort 101", "username": "Rick Lipkin" } ]
Asort 101
[ { "date": "2012-09-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Rick\n\nReal simple and works well.\n\nSyntax -\n ASORT(<aTarget>, [<nStart>], [<nCount>], [<bOrder>]) --> aTarget\n\nExample\n ::aAll:=ASORT(::aAll,,,{|x,y| x[1]<y[1]})\n\nYour code\n aSorted := ASORT(aLine,,,{|x,y| x[4]<y[4]})\n\nThere are no numeris restrictions either. It takes a few seconds to sort hundreds. Harbour developers did well.\nCan supply definitions of syntax if you require them.", "time": "23:37", "topic": "Asort 101", "username": "Jonathan Hodder" } ]
Asort 101
[ { "date": "2012-09-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Rick;\n\n[quote:30hjkwf3]Syntax\nASort( <aArray>, [<nStart>], [<nCount>], [<bSort>] ) --> aArray\n\nArguments\n<aArray> \nThe array to be sorted. \n<nStart> \nThis is a numeric expression indicating the first element in the array to begin sorting with. It defaults to 1, the first element of <aArray>. \n<nCount> \nA numeric expression specifying the number of elements to sort. It defaults to 1+Len(<aArray>)-<nStart>. \n<bSort> \nOptionally, a code block defining a sorting rule can be passed. If this parameter is omitted, all values stored in <aArray> are sorted in ascending order. When a code block is specified, it must be declared with two parameters and must return a logical value. The code block receives the values of two adjacent array elements. When the code block returns .T. (true), the first code block parameter is considered smaller than the second. If .F. (false) is returned, the first code block parameter is larger. \nReturn\nThe function returns a reference to <aArray>. \n[/quote:30hjkwf3]\n\nHere is sample code:\n[code=fw:30hjkwf3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />aSort<span style=\"color: #000000;\">&#40;</span> aArray,,, <span style=\"color: #000000;\">&#123;</span> |x,y| x<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">&#93;</span> < y<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br /> </div>[/code:30hjkwf3]\n\nHope that helps,\n\n\nReinaldo.", "time": "23:37", "topic": "Asort 101", "username": "reinaldocrespo" } ]
Asort 101
[ { "date": "2012-09-12", "forum": "FiveWin for Harbour/xHarbour", "text": "To All\n\nThanks .. this seemed to be my solution\n\naSort( aSerial,,, { |x,y| x[4] < y[4] } ) \n\nThanks\nRick\n\nps .. be sure you do not use AUTOSORT on your xBrowse ( I did <!-- s:oops: --><img src=\"{SMILIES_PATH}/icon_redface.gif\" alt=\":oops:\" title=\"Embarassed\" /><!-- s:oops: --> )", "time": "13:46", "topic": "Asort 101", "username": "Rick Lipkin" } ]
Asort 101
[ { "date": "2020-03-22", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear friends,\n\nI must found the last number (field 1) of this array if the cCode ( field 2) is \"01\"\n\n Local aData:= { ;\n {4,\"01\",\"17/03/2020\",\"17/03/2020\"} ,;\n {7,\"02\",\"17/03/2020\",\"18/03/2020\"} ,;\n {7,\"01\",\"17/03/2020\",\"18/03/2020\"} ,;\n {11,\"02\",\"17/03/2020\",\"18/03/2020\"} ,;\n {8,\"01\",\"17/03/2020\",\"18/03/2020\"} }\n\nlocal cCodice:=\"01\"\n\nI try with \n\n ASort( aData ,,, {|x,y| If ( x[2] == cCodice, x[1]< y[1],) } )\n\n\nHow I can make to found the last value for the code \"01\" ?\n\nit must return me 8", "time": "02:06", "topic": "Asort array base two elements and found the last number", "username": "Silvio.Falconi" } ]
Asort array base two elements and found the last number
[ { "date": "2020-03-22", "forum": "FiveWin for Harbour/xHarbour", "text": "Silvio,\n Try RASCAN\n[code=fw:za1l9gcy]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">LOCAL</span> x , y &nbsp;, nPos<br /><span style=\"color: #00C800;\">LOCAL</span> aData:= <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">4</span> ,<span style=\"color: #ff0000;\">\"01\"</span> , <span style=\"color: #ff0000;\">\"17/03/2020\"</span> , <span style=\"color: #ff0000;\">\"17/03/2020\"</span> <span style=\"color: #000000;\">&#125;</span> , ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">7</span> ,<span style=\"color: #ff0000;\">\"02\"</span> , <span style=\"color: #ff0000;\">\"17/03/2020\"</span> , <span style=\"color: #ff0000;\">\"18/03/2020\"</span> <span style=\"color: #000000;\">&#125;</span> , ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">7</span> ,<span style=\"color: #ff0000;\">\"01\"</span> , <span style=\"color: #ff0000;\">\"17/03/2020\"</span> , <span style=\"color: #ff0000;\">\"18/03/2020\"</span> <span style=\"color: #000000;\">&#125;</span> , ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span><span style=\"color: #000000;\">11</span> ,<span style=\"color: #ff0000;\">\"02\"</span> , <span style=\"color: #ff0000;\">\"17/03/2020\"</span> , <span style=\"color: #ff0000;\">\"18/03/2020\"</span> <span style=\"color: #000000;\">&#125;</span> , ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">8</span> ,<span style=\"color: #ff0000;\">\"01\"</span> , <span style=\"color: #ff0000;\">\"17/03/2020\"</span> , <span style=\"color: #ff0000;\">\"18/03/2020\"</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#125;</span><br /><br /><span style=\"color: #00C800;\">LOCAL</span> cCodice:=<span style=\"color: #ff0000;\">\"01\"</span><br /><br /><br />ASORT<span style=\"color: #000000;\">&#40;</span> aData ,,, <span style=\"color: #000000;\">&#123;</span>|x,y| <span style=\"color: #00C800;\">If</span> <span style=\"color: #000000;\">&#40;</span> x<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">&#93;</span> == cCodice, x<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">&#93;</span>< y<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">&#93;</span>,<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">FOR</span> x := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">TO</span> LEN<span style=\"color: #000000;\">&#40;</span> aData <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ? aData<span style=\"color: #000000;\">&#91;</span> x , <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> , aData<span style=\"color: #000000;\">&#91;</span> x , <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span> ,aData<span style=\"color: #000000;\">&#91;</span> x , <span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">&#93;</span> ,aData<span style=\"color: #000000;\">&#91;</span> x , <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">&#93;</span><br /><span style=\"color: #00C800;\">NEXT</span> x<br /><br />nPos := RASCAN<span style=\"color: #000000;\">&#40;</span> aData, <span style=\"color: #000000;\">&#123;</span> | aData| aData<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span> = cCodice <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br /><br />? nPos , aData<span style=\"color: #000000;\">&#91;</span> nPos , <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> , aData<span style=\"color: #000000;\">&#91;</span> nPos , <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span> ,aData<span style=\"color: #000000;\">&#91;</span> nPos , <span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">&#93;</span> ,aData<span style=\"color: #000000;\">&#91;</span> nPos &nbsp;, <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">&#93;</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br />&nbsp;</div>[/code:za1l9gcy]", "time": "08:31", "topic": "Asort array base two elements and found the last number", "username": "MarcoBoschi" } ]
Asort array base two elements and found the last number
[ { "date": "2020-03-22", "forum": "FiveWin for Harbour/xHarbour", "text": "thanks, I understood that I am doing something bigger than my abilities and when I have a problem that is easy for you it becomes difficult for me, perhaps because the mind is occupied by other thoughts and worries and I do not find the right solution", "time": "11:38", "topic": "Asort array base two elements and found the last number", "username": "Silvio.Falconi" } ]
Asort array base two elements and found the last number
[ { "date": "2016-05-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi all,\nI need to order the following array by date and by name (inside a date). \nDo you have any suggest about ?\n\n* date is the first element, name is the second\naArray:={}\naadd(aArray,{\"01/10/2015\",\"Marc\"}) \naadd(aArray,{\"01/10/2015\",\"Alexandra\"}) \naadd(aArray,{\"01/07/2015\",\"Paul\"}) \naadd(aArray,{\"01/04/2015\",\"Alexandra\"}) \naadd(aArray,{\"01/04/2015\",\"Marc\"})\n\nThank you in advance", "time": "15:21", "topic": "Asort based on two array elements", "username": "Marco Turco" } ]
Asort based on two array elements
[ { "date": "2016-05-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Marco,\n\nmaybe using a third element?\n\naadd(aArray,{ \"01/10/2015\", \"Marc\", DTOS( CTOD( \"01/10/2015\" ) ) + \"Marc\" } )", "time": "15:46", "topic": "Asort based on two array elements", "username": "Diego Decandia" } ]
Asort based on two array elements
[ { "date": "2016-05-19", "forum": "FiveWin for Harbour/xHarbour", "text": "[code=fw:3h8olczr]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">ASort<span style=\"color: #000000;\">&#40;</span> aArray, <span style=\"color: #00C800;\">nil</span>, <span style=\"color: #00C800;\">nil</span>, <span style=\"color: #000000;\">&#123;</span> |x,y| <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">&#40;</span> x<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> == y<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span>, x<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span> < y<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span>, x<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> < y<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp;</div>[/code:3h8olczr]", "time": "17:07", "topic": "Asort based on two array elements", "username": "nageswaragunupudi" } ]
Asort based on two array elements
[ { "date": "2016-05-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Solved, thank you Nages", "time": "16:44", "topic": "Asort based on two array elements", "username": "Marco Turco" } ]
Asort based on two array elements
[ { "date": "2016-11-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola estoy ordenando una tabla, pero el ordenador del cliente es lento y me gustaría añadirle un meter para que viera el progreso y no se pusiera \"nervioso\" pero nunca lo he hecho.\n\n¿Alguien puede ponerme algún ejemplo? \n \nMuchas Gracias de antemano.", "time": "12:43", "topic": "Asort con meter", "username": "Garbi" } ]
Asort con meter
[ { "date": "2016-11-10", "forum": "FiveWin para Harbour/xHarbour", "text": "No creo que se pueda hacer, porque para ello habría que tener información que aSort() no da: el nº de elemento por el que va en la ordenación. \n\nUn workaround es utilizar MsgRun() o similar y al menos poner un texto \"Espere...\"", "time": "12:48", "topic": "Asort con meter", "username": "hmpaquito" } ]
Asort con meter
[ { "date": "2016-11-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Ok. Eso había pensado yo sobre el meter y Asort, pero por si acaso.\n\nProbare con MsgRun() así por lo menos saldré del paso.\n\nGracias.", "time": "13:24", "topic": "Asort con meter", "username": "Garbi" } ]
Asort con meter
[ { "date": "2016-11-11", "forum": "FiveWin para Harbour/xHarbour", "text": "Paco,\n\nComo ASort() permite evaluar un bloque de código, desde él se podria incrementar una variable estática externa que indicaría el elemento por el que va\n\nCreo que se podria hacer asi\n\n[url:hjzd72n7]http&#58;//www&#46;fivetechsoft&#46;com/harbour-docs/api&#46;html#asort[/url:hjzd72n7]", "time": "12:53", "topic": "Asort con meter", "username": "Antonio Linares" } ]
Asort con meter
[ { "date": "2016-11-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio,\n\nMe parece que Asort() utiliza el algoritmo de la burbuja, no estoy muy seguro.\nTampoco estoy seguro que el algoritmo de la burbuja use tantas comparaciones como elementos tiene el array.\n\nSaludos", "time": "09:55", "topic": "Asort con meter", "username": "hmpaquito" } ]
Asort con meter
[ { "date": "2016-11-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Paco,\n\nEste ejemplo funciona, pero la sorpresa es que el bloque de código se evalúa 10 veces, puesto que hacen falta\nmás iteraciones para ordenarlos. Haria falta una primera pasada para contar el total de iteraciones y una segunda\npara mostrar el meter, lo que no lo haría muy práctico:\n\n[code=fw:1cltyi5t]<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 style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> nIndex := <span style=\"color: #000000;\">1</span><br /><br />&nbsp; &nbsp;ASort<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">9</span>, <span style=\"color: #000000;\">6</span>, <span style=\"color: #000000;\">3</span>, <span style=\"color: #000000;\">5</span>, <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#125;</span>,,, <span style=\"color: #000000;\">&#123;</span> | x, y | <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">&#40;</span> nIndex++ <span style=\"color: #000000;\">&#41;</span>, x < y <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span></div>[/code:1cltyi5t]", "time": "10:11", "topic": "Asort con meter", "username": "Antonio Linares" } ]
Asort con meter
[ { "date": "2016-11-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Estos ejemplos se pueden probar desde Fivedit sin necesidad de crear un PRG ni tener que construir el EXE <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "10:12", "topic": "Asort con meter", "username": "Antonio Linares" } ]
Asort con meter
[ { "date": "2016-11-15", "forum": "FiveWin para Harbour/xHarbour", "text": "Muchas Gracias por vuestra ayuda,", "time": "12:04", "topic": "Asort con meter", "username": "Garbi" } ]
Asort con meter
[ { "date": "2013-05-01", "forum": "FiveWin para Harbour/xHarbour", "text": "Buenas tardes\nNo consigo que los GETS Redefinidos desde una DLL tengan un aspecto \"plano\" \nAdjunto imagen en la que aparece en primer lugar como me aparecen y en segundo lugar cómo me gustarían que apareciesen sin tener en cuenta lo del boton de accion.\nUso PellesC como editor de recursos y la DLL la importé en su momento desde un RC ya que estaba en 16 bits\nSi los GETS los creo mediante comando sin Redefinir si adquieren ese aspecto\n[url=http&#58;//imageshack&#46;us/photo/my-images/854/get1&#46;png/:3s4w9oqw][img:3s4w9oqw]http&#58;//img854&#46;imageshack&#46;us/img854/7264/get1&#46;png[/img:3s4w9oqw][/url:3s4w9oqw]\n\nUploaded with [url=http&#58;//imageshack&#46;us:3s4w9oqw]ImageShack.us[/url:3s4w9oqw]\nGracias", "time": "20:27", "topic": "Aspecto de GET", "username": "cnavarro" } ]
Aspecto de GET
[ { "date": "2013-05-01", "forum": "FiveWin para Harbour/xHarbour", "text": "Prueba a quitar a la definición del campo en PellesC, el estilo de windows \"border\"\nWS_BORDER", "time": "20:32", "topic": "Aspecto de GET", "username": "fgondi" } ]
Aspecto de GET
[ { "date": "2013-05-01", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Fernando, efectivamente sale \"plano\", pero no me sale el borde \"azul\" que aparece en la imagen que he puesto como ejemplo y no se distingue bien\nSaludos", "time": "20:39", "topic": "Aspecto de GET", "username": "cnavarro" } ]
Aspecto de GET
[ { "date": "2013-05-01", "forum": "FiveWin para Harbour/xHarbour", "text": "Cristobal,\n\nUsas el fichero de manifiesto desde el RC ?\n\n 1 24 \"WindowsXP.Manifest\" \n\nEl fichero lo tienes en FWH/samples/winxp/WindowsXP.Manifest", "time": "21:10", "topic": "Aspecto de GET", "username": "Antonio Linares" } ]
Aspecto de GET
[ { "date": "2013-05-01", "forum": "FiveWin para Harbour/xHarbour", "text": "No lo uso Antonio\n¿Como lo puedo incorporar ahora a la DLL?\nGracias", "time": "21:13", "topic": "Aspecto de GET", "username": "cnavarro" } ]
Aspecto de GET
[ { "date": "2013-05-01", "forum": "FiveWin para Harbour/xHarbour", "text": "Solucionado, gracias \n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=6&t=23620&p=126983&hilit=1+24+windowsxp+manifest+en+DLL#p126943\">viewtopic.php?f=6&t=23620&p=126983&hilit=1+24+windowsxp+manifest+en+DLL#p126943</a><!-- l -->\n\nUn saludo", "time": "21:43", "topic": "Aspecto de GET", "username": "cnavarro" } ]
Aspecto de GET
[ { "date": "2013-05-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Buenos dias\nTengo el mismo problema con los GETS que incluyo en un TPanel por codigo, su apariencia no es la correcta\nLo he \"solucionado\" incluyendo en mi PRG:\n[code=fw:2piehap6]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">Function</span> IsAppThemed<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> ; <span style=\"color: #00C800;\">Return</span> .F.<br /> </div>[/code:2piehap6]\n\nPero los bordes los sigue pintando en negro, sin aceptar el color que se define.\nEl problema, quiero pensar, esta en el NEW de la clase TGET\n[code=fw:2piehap6]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> #ifdef __CLIPPER__<br />      <span style=\"color: #00C800;\">if</span> ! lNoBorder<br />         ::<span style=\"color: #000000;\">nStyle</span> = nOr<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">nStyle</span>, WS_BORDER <span style=\"color: #000000;\">&#41;</span><br />      <span style=\"color: #00C800;\">endif</span><br />   #else<br />      <span style=\"color: #00C800;\">if</span> ! IsAppThemed<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />         <span style=\"color: #00C800;\">if</span> ! lNoBorder<br />            ::<span style=\"color: #000000;\">nStyle</span> = nOr<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">nStyle</span>, WS_BORDER <span style=\"color: #000000;\">&#41;</span><br />         <span style=\"color: #00C800;\">endif</span><br />      <span style=\"color: #00C800;\">else</span><br />         <span style=\"color: #00C800;\">if</span> ! lNoBorder<br />            ::<span style=\"color: #000000;\">nStyle</span> = nOr<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">nStyle</span>, <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">&#40;</span> oWnd:<span style=\"color: #000000;\">IsKindOf</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"TDIALOG\"</span> <span style=\"color: #000000;\">&#41;</span>, WS_BORDER, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span>    --> Aqui, solo incluye TDIALOG<br />            ::<span style=\"color: #000000;\">nExStyle</span> = WS_EX_CLIENTEDGE<br />         <span style=\"color: #00C800;\">endif</span><br />      <span style=\"color: #00C800;\">endif</span><br />   #endif<br /><br />   ::<span style=\"color: #000000;\">nStyle</span>    = <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">&#40;</span> lNoBorder, nAnd<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">nStyle</span>, nNot<span style=\"color: #000000;\">&#40;</span> WS_BORDER <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span>, ::<span style=\"color: #000000;\">nStyle</span> <span style=\"color: #000000;\">&#41;</span><br /> </div>[/code:2piehap6]\n\nEs asi?\nEsta solucionado en versiones posteriores a la mia?\nGracias", "time": "10:07", "topic": "Aspecto de GET", "username": "cnavarro" } ]
Aspecto de GET
[ { "date": "2015-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola. Quisiera en mi programa poder editar los datos de un xbrowse y que tengan el aspecto de la edición de datos de ourxdbu:\n- no hay que dar doble intro para editar y pasar al siguiente campo\n- el campo a editar está resaltado, ...\n- solo deja entrar ciertos valores\n\nhe revisado los fuentes libres de ourxdbu, pero me queda grande. ¿Alguien podría orientarme un poco o decirme en que parte de ourxdbu.prg fijarme?\n\ngracias. un saludo.", "time": "15:37", "topic": "Aspecto en xbrowse", "username": "informaticaeloy" } ]
Aspecto en xbrowse
[ { "date": "2015-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Download de los fuentes, és este?\n\n[url:1q9rqqyg]http&#58;//sourceforge&#46;net/p/ourxdbu/code/HEAD/tree/source/[/url:1q9rqqyg]\n\nSaludos.", "time": "15:58", "topic": "Aspecto en xbrowse", "username": "karinha" } ]
Aspecto en xbrowse
[ { "date": "2015-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Si, ese es. lo descargué, lo revisé y me perdí", "time": "16:00", "topic": "Aspecto en xbrowse", "username": "informaticaeloy" } ]
Aspecto en xbrowse
[ { "date": "2015-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "No se si he entendido el alcance de tu pregunta\nHas comprobado la claúsula FASTEDIT de XBrowse?", "time": "16:57", "topic": "Aspecto en xbrowse", "username": "cnavarro" } ]
Aspecto en xbrowse
[ { "date": "2008-09-04", "forum": "Off Topic / Otros temas", "text": "This is an interesting article.\r\n\r\nAssertions in Production Code?\r\n<!-- m --><a class=\"postlink\" href=\"http://dobbscodetalk.com/index.php?option=com_myblog&show=Assertions-in-Production-Code-.html&Itemid=29\">http://dobbscodetalk.com/index.php?opti ... &Itemid=29</a><!-- m -->\r\n\r\nI must confess that I have been very lax in using assertions. I am considering spending more time on it.\r\n\r\nComments?\r\n\r\nRegards,\r\nJames", "time": "13:35", "topic": "Assertions in Production Code?", "username": "James Bott" } ]
Assertions in Production Code?
[ { "date": "2008-09-04", "forum": "Off Topic / Otros temas", "text": "James,\r\n\r\nLets make a comparison with the security of a house:\r\n\r\nYou can place gates, security windows, alarms, security guards, etc. but will it be 100% totally safe ? Wouldn't there be a way to bypass all that security ?\r\n\r\nI mean that we can minimize the risks as much as possible, but there will always be a failure percentage.", "time": "14:12", "topic": "Assertions in Production Code?", "username": "Antonio Linares" } ]
Assertions in Production Code?
[ { "date": "2008-09-04", "forum": "Off Topic / Otros temas", "text": "Antonio,\r\n\r\nOh, I agree. But some of the comments like:\r\n\r\n>Professionally written production code is bug free, so there is no need for asserts.\r\n>An assert firing causes the program to abort, which may not be permissible, may cause data loss, and looks unprofessional to the customer.\r\n\r\nReally surprised me. That is just ignoring that there can be problems.\r\n\r\nI think we need to find an acceptable middle ground. This point will vary depending on the consequences of the software failing.\r\n\r\nJames", "time": "14:44", "topic": "Assertions in Production Code?", "username": "James Bott" } ]
Assertions in Production Code?
[ { "date": "2008-09-04", "forum": "Off Topic / Otros temas", "text": "James,\r\n\r\nyes, I fully agree with you", "time": "20:41", "topic": "Assertions in Production Code?", "username": "Antonio Linares" } ]
Assertions in Production Code?
[ { "date": "2006-02-18", "forum": "FiveWin for Harbour/xHarbour", "text": "I am trying to assign a dialog from source as below :\n[code]\n@ 1,1 FOLDER oFld1 of oDlg;\n PROMPT \"List\", \"contracts\", \"Sites\", \"Departments\" ,;\n \"Machines\", \"Operators\", \"Jobs\",;\n \"Machines\", \"Operators\", \"Jobs\";\n DIALOGS \"custDlg\"\nSo custDlg is shared dialog put in other procedures . May I put it as global static variable to be shared between many procedure ?", "time": "09:44", "topic": "Assign Dialog from source to Folder Action", "username": "Ehab Samir Aziz" } ]
Assign Dialog from source to Folder Action
[ { "date": "2007-03-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Everybody,\n\nIs there a way to assign the function of a button to an arrow key so when the user uses the left or right arrow key it functions as if they clicked a button?\n\n\nThanks,\n\nJeff", "time": "02:49", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-03-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff,\n\nIf the button has the focus, then you may use oBtn:bKeyChar or oBtn:bKeyDown to detect those keystrokes and fire the button action", "time": "10:46", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-03-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nActually I have 4 buttons that I would like to give the user the option to either click a button or an arrow key.\n\nEx. Left Arrow = BUTTON1\n Right Arrow = BUTTON2\n Up Arrow = BUTTON3\n Down Arrow = BUTTON4\n\n\nJeff", "time": "21:15", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-03-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff,\n\nWhich control has the focus ? The keystrokes will go to the focused control\n\nAny of the buttons ? Or other control ?", "time": "21:47", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-03-31", "forum": "FiveWin for Harbour/xHarbour", "text": "The area where the buttons are has the focus.\n\nJeff", "time": "22:11", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-03-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Is that area a dialogbox ? a window ?", "time": "22:15", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Sorry, I guess I should have mentioned that.\n\nIt's a Window.\n\n\nI've tried:\n\n SETKEY( K_UP, { || MsgInfo( \"UP pressed\" ) } )\n SETKEY( K_DOWN, { || MsgInfo( \"DOWN pressed\" ) } ) \n SETKEY( K_LEFT, { || MsgInfo( \"LEFT pressed\" ) } )\n SETKEY( K_RIGHT, { || MsgInfo( \"RIGHT pressed\" ) } ) \n\nBut with no luck ... basically nothing happens. (inkey.ch is in my code)\n\n\nJeff", "time": "01:10", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff,\n\nWhen a window or a dialogbox has several controls, one of them has the focus. So you should assign bKeyDown or bKeyChar to all of them:\n\noBtn1:bKeyChar = { | nKey | MsgInfo( nKey ) }\noBtn2:bKeyChar = { | nKey | MsgInfo( nKey ) }\noBtn3:bKeyChar = { | nKey | MsgInfo( nKey ) }\noBtn4:bKeyChar = { | nKey | MsgInfo( nKey ) }\n\nInstead of MsgInfo(), call a function where you check nKey and act accordingly", "time": "06:54", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nIt seems to work with all the keys except the arrow keys <!-- s:cry: --><img src=\"{SMILIES_PATH}/icon_cry.gif\" alt=\":cry:\" title=\"Crying or Very sad\" /><!-- s:cry: --> \n\nWhen I press an arrow key the focus moves to the next control.\n\n\nJeff", "time": "13:06", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff,\n\nUse bKeyDown instead of bKeyChar and try it again", "time": "15:58", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nI've tried both ... and still the arrow keys just move to the next control.\n\n\n\nJeff", "time": "16:01", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff,\n\nPlease try this too besides the bKeyChar/bKeyDown:\n\noBtn1:nDlgCode = DLGC_WANTALLKEYS\noBtn2:nDlgCode = DLGC_WANTALLKEYS\noBtn3:nDlgCode = DLGC_WANTALLKEYS\noBtn4:nDlgCode = DLGC_WANTALLKEYS", "time": "16:11", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nStill no luck. Again, the focus is moved to the next control.\n\n\nJeff", "time": "21:14", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-04-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff,\n\nWe are going to build a sample and try to get it working", "time": "22:04", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-04-02", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks Antonio.", "time": "00:24", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-04-02", "forum": "FiveWin for Harbour/xHarbour", "text": "Jeff,\n\nOk, its working <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nYou have to modify Class TButton Method KeyDown() this way:\n[code:356sx7m8]\nMETHOD KeyDown&#40; nKey, nFlags &#41; CLASS TButton\n\n &#58;&#58;oWnd&#58;nLastKey &#58;= nKey\n\n do case\n case nKey == VK_UP &#46;or&#46; nKey == VK_LEFT\n if &#58;&#58;bKeyDown != nil\n Eval&#40; &#58;&#58;bKeyDown, nkey, nFlags &#41;\n else \n &#58;&#58;oWnd&#58;GoPrevCtrl&#40; &#58;&#58;hWnd &#41;\n endif \n return 0\n\n case nKey == VK_DOWN &#46;or&#46; nKey == VK_RIGHT\n if &#58;&#58;bKeyDown != nil\n Eval&#40; &#58;&#58;bKeyDown, nkey, nFlags &#41;\n else \n &#58;&#58;oWnd&#58;GoNextCtrl&#40; &#58;&#58;hWnd &#41;\n endif \n return 0\n\n case nKey == VK_RETURN\n if &#58;&#58;bKeyDown != nil\n Eval&#40; &#58;&#58;bKeyDown, nkey, nFlags &#41;\n else \n PostMessage&#40; &#58;&#58;hWnd, FM_CLICK &#41; // fire the button's action\n endif \n return 0\n endcase\n\nreturn Super&#58;KeyDown&#40; nKey, nFlags &#41;\n[/code:356sx7m8]\nAnd here you have a working sample:\n[code:356sx7m8]\n#include \"FiveWin&#46;ch\"\n\nfunction Main&#40;&#41;\n\n local oDlg, oBtn1, oBtn2, oBtn3, oBtn4\n\n DEFINE DIALOG oDlg TITLE \"Test\"\n \n @ 3, 2 BUTTON oBtn1 PROMPT \"One\" OF oDlg\n @ 3, 8 BUTTON oBtn2 PROMPT \"Two\" OF oDlg\n @ 3, 14 BUTTON oBtn3 PROMPT \"Three\" OF oDlg\n @ 3, 20 BUTTON oBtn4 PROMPT \"Four\" OF oDlg\n\n oBtn1&#58;bKeyDown = &#123; | nKey | MsgInfo&#40; nKey &#41; &#125;\n oBtn1&#58;nDlgCode = DLGC_WANTALLKEYS\n oBtn2&#58;bKeyDown = &#123; | nKey | MsgInfo&#40; nKey &#41; &#125;\n oBtn2&#58;nDlgCode = DLGC_WANTALLKEYS\n oBtn3&#58;bKeyDown = &#123; | nKey | MsgInfo&#40; nKey &#41; &#125;\n oBtn3&#58;nDlgCode = DLGC_WANTALLKEYS\n oBtn4&#58;bKeyDown = &#123; | nKey | MsgInfo&#40; nKey &#41; &#125;\n oBtn4&#58;nDlgCode = DLGC_WANTALLKEYS\n\n ACTIVATE DIALOG oDlg CENTERED\n\nreturn nil\n[/code:356sx7m8]", "time": "08:58", "topic": "Assign a button control to arrow key", "username": "Antonio Linares" } ]
Assign a button control to arrow key
[ { "date": "2007-04-02", "forum": "FiveWin for Harbour/xHarbour", "text": "Success <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nThanks Antonio, it is now working.\n\n\nJeff", "time": "23:36", "topic": "Assign a button control to arrow key", "username": "Jeff Barnes" } ]
Assign a button control to arrow key
[ { "date": "2007-04-07", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Jeff Barnes\":3r6nx70q]Thanks Antonio.[/quote:3r6nx70q]", "time": "14:54", "topic": "Assign a button control to arrow key", "username": "akis" } ]
Assign a button control to arrow key
[ { "date": "2007-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Is there anything wrong with the way I have created the columns at runtime?\n\nAnd how do I remove these columns and replace them with others? I want to change the columns in the listbox when the user changes the database order for example.\n\n[code:4dwuqteh] DEFINE COLUMN BROWSE oListBox ID 40 OF oDlg_Search UPDATE ON DblClick &#40; lResult &#58;= &#46;T&#46;, oDlg_Search&#58;End&#40;&#41; &#41;\n oListBox&#58;cALIAS = cALIAS\n aFlds &#58;= &#123;\"COMPANY\",\"SURNAME\",\"FIRSTNAME\",\"TEL1\"&#125;\n aTitles &#58;= &#123;\"Company\",\"Surname\",\"FIRSTNAME\",\"Telephone\"&#125;\n aWidths &#58;= &#123;90,100,90,100&#125;\n\n FOR i &#58;= 1 TO LEN&#40; aFlds &#41;\n cTemp &#58;= aFlds&#91; i &#93;\n ADD TO BROWSE oListBox DATA &cTemp HEADER aTitles&#91; i &#93; OEM ALIGN LEFT WIDTH aWidths&#91; i &#93; PIXELS\n NEXT\n[/code:4dwuqteh]", "time": "19:57", "topic": "Assigning columns to listbox programmatically", "username": "Ollie" } ]
Assigning columns to listbox programmatically
[ { "date": "2007-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Prueba con esto?\n\n[code:11d95pce]FOR i &#58;= 1 TO LEN&#40; aFlds &#41;\n MakeBrow&#40; aFld, oListBox, aTitle, aWidths, i &#41;\nNEXT i\n\n//BLABLA\n\nfunction MakeBrow&#40; aFld, oLisBox, aTitle, aWidths, i &#41;\nlocal cTemp &#58;= aFlds&#91; i &#93;\n\n ADD TO BROWSE oListBox DATA &cTemp HEADER aTitles&#91; i &#93; OEM ALIGN LEFT WIDTH aWidths&#91; i &#93; PIXELS\n\nreturn nil\n\n[/code:11d95pce]", "time": "22:22", "topic": "Assigning columns to listbox programmatically", "username": "Patricio Avalos Aguirre" } ]
Assigning columns to listbox programmatically
[ { "date": "2007-05-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi, maybe I was misunderstood. The code DOES WORK, I am just not sure if it is 'good' programming practice to use a &macro like this. If its ok, I will leave it as it is because it works.\n\nWhat I still do need to know is how to change the columns that are displayed. E.g. When the user changes the Database order from SURNAME to COMPANY, I want the columns shown to be different.", "time": "07:16", "topic": "Assigning columns to listbox programmatically", "username": "Ollie" } ]
Assigning columns to listbox programmatically
[ { "date": "2007-05-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Ollie,\n\n> I want the columns shown to be different\n\nYou just need to refresh the browse oBrowse:Refresh()", "time": "07:56", "topic": "Assigning columns to listbox programmatically", "username": "Antonio Linares" } ]
Assigning columns to listbox programmatically
[ { "date": "2007-05-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Ok, I get that, but how do I REMOVE the columns I don't want, so I can add new columns?", "time": "08:10", "topic": "Assigning columns to listbox programmatically", "username": "Ollie" } ]
Assigning columns to listbox programmatically
[ { "date": "2007-05-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Ollie,\n\noBrowse:aColumns := {}\n\n... add columns", "time": "09:26", "topic": "Assigning columns to listbox programmatically", "username": "Antonio Linares" } ]
Assigning columns to listbox programmatically
[ { "date": "2023-07-28", "forum": "FiveWin for Harbour/xHarbour", "text": "If I sub-class class TPrinter;\n[code=fw:3edyu1xn]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">class</span> XPrinter <span style=\"color: #0000ff;\">from</span> TPrinter</div>[/code:3edyu1xn]\nWhat is the correct way to assign var lUseHaruPdf?\nxPrinter():lUseHaruPdf or TPrinter():lUseHaruPdf\n\nTIA", "time": "11:06", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear Hua,\n\n::lUseHaruPdf", "time": "11:15", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "Antonio Linares" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-28", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote:2d2d8to5]xPrinter():lUseHaruPdf or TPrinter():lUseHaruPdf[/quote:2d2d8to5]\nYou can use any.", "time": "14:11", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "nageswaragunupudi" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks for the replies Antonio and Rao", "time": "19:17", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-31", "forum": "FiveWin for Harbour/xHarbour", "text": "I get this error message\n[code=fw:25vukz9c]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> &nbsp; Error description: <span style=\"color: #000000;\">Error</span> BASE/<span style=\"color: #000000;\">1005</span> &nbsp;<span style=\"color: #0000ff;\">Message</span> not found: <span style=\"color: #000000;\">FWPDF</span>:_LUNDERLINEHEADER</div>[/code:25vukz9c]\n\n:lUnderlineHeader is a data in my xprinter class that inherits from tprinter.\n\nWhere did I go wrong?", "time": "05:04", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-31", "forum": "FiveWin for Harbour/xHarbour", "text": "When tested using lUseFWPdf, pdfs are generated but\n1. User is prompted for a file name for the pdf\n2. The word \"FiveWin Report\" is embedded into the pdf\n\nWould still like to use Haru pdf to see what size is the pdf generated", "time": "05:51", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-31", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"hua\":mehhlj4s]I get this error message\n[code=fw:mehhlj4s]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   Error description: <span style=\"color: #000000;\">Error</span> BASE/<span style=\"color: #000000;\">1005</span>  <span style=\"color: #0000ff;\">Message</span> not found: <span style=\"color: #000000;\">FWPDF</span>:_LUNDERLINEHEADER</div>[/code:mehhlj4s]\n\n:lUnderlineHeader is a data in my xprinter class that inherits from tprinter.\n\nWhere did I go wrong?[/quote:mehhlj4s]\nYou have used a DATA that is not in FWPDF class.\nIf you inherit from TPrinter, you should know how to match with FWPDF class thoroughly\nIf not, do not use harupdf\nMy personal advice is not to use derived class. Finally, it is upto you.", "time": "08:53", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "nageswaragunupudi" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-31", "forum": "FiveWin for Harbour/xHarbour", "text": "I see so when lUseHaruPdf = .t. I am actually using FWPDf not TPrinter.\nUnderstood. Thanks", "time": "09:11", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-07-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Is it possible to print to a pdf driver such as Microsoft Print To Pdf, CutePdf, etc programmatically without prompting user for filename?", "time": "09:28", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-01", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"hua\":n1hi78bw]IS it possible to print to a pdf driver such as Microsoft Print To Pdf, CutePdf, etc programmatically without prompting user for filename?[/quote:n1hi78bw]\nBy default, FWH uses Microsoft Word to read emf and print as PDF.\nThe programmer does not have to do anything for it.\nThere is really no need to search for alternatives.", "time": "03:58", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "nageswaragunupudi" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-01", "forum": "FiveWin for Harbour/xHarbour", "text": "To avoid having to re-code my report routine I tried using :lUseFWPdf\n[code=fw:2hukgzt4]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">     XTPrinter<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #000000;\">lUseFWPdf</span> := .t.<br />    XPRINTER oPrn <span style=\"color: #0000ff;\">name</span> ::<span style=\"color: #000000;\">cRptTitle</span> FILE cPdf<br /> </div>[/code:2hukgzt4]\n\nI don't know why the dialog box asking for pdf name appear. Is there something wrong with my pdf name?\n[quote:2hukgzt4]\"F:\\test\\harbour\\pay2023_\\PCB\\2023\\ABD RAHMAN BIN KASSI_202305.pdf\"[/quote:2hukgzt4]\n\nTIA", "time": "08:28", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-01", "forum": "FiveWin for Harbour/xHarbour", "text": "We can not comment on your derived class. \nbut\n[code=fw:1po7ov5q]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">PRINT</span> oPrn FILE cPdf</div>[/code:1po7ov5q]\ndoes not ask for a file name again.", "time": "22:40", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "nageswaragunupudi" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-03", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks for the info Rao. The dialog now no longer appears\nUnfortunately when it's printing in a loop (a bunch of staffs tax calculation), it will eventually generates internal error\n[code=fw:3h1i4uu9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />* hb_out.log<br />Application Internal Error - F:\\test\\harbour\\pay2023_\\bin\\pay.exe<br />Terminated <span style=\"color: #00C800;\">at</span>: <span style=\"color: #000000;\">2023</span><span style=\"color: #000000;\">-08</span><span style=\"color: #000000;\">-02</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">13</span>:<span style=\"color: #000000;\">00</span><br />Unrecoverable error <span style=\"color: #000000;\">6005</span>: <span style=\"color: #000000;\">Exception</span> error:<br /><br />&nbsp; &nbsp; <span style=\"color: #000000;\">Exception</span> Code:<span style=\"color: #000000;\">C0000005</span> ACCESS_VIOLATION<br />&nbsp; &nbsp; Exception Address:0059EC3C<br />&nbsp; &nbsp; EAX:<span style=\"color: #000000;\">00000001</span> &nbsp;EBX:<span style=\"color: #000000;\">00000000</span> &nbsp;ECX:0000000A &nbsp;EDX:<span style=\"color: #000000;\">00000000</span><br />&nbsp; &nbsp; ESI:0000000A &nbsp;EDI:0019E1E8 &nbsp;EBP:0019E1B4<br />&nbsp; &nbsp; CS:<span style=\"color: #000000;\">EIP</span>:<span style=\"color: #000000;\">0023</span>:0059EC3C &nbsp;SS:<span style=\"color: #000000;\">ESP</span>:002B:0019E1A4<br />&nbsp; &nbsp; DS:002B &nbsp;ES:002B &nbsp;FS:<span style=\"color: #000000;\">0053</span> &nbsp;GS:002B<br />&nbsp; &nbsp; Flags:<span style=\"color: #000000;\">00210246</span><br />&nbsp; &nbsp; Exception Parameters: <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000012</span><br />&nbsp; &nbsp; CS:<span style=\"color: #000000;\">EIP</span>: <span style=\"color: #000000;\">F6</span> <span style=\"color: #000000;\">43</span> <span style=\"color: #000000;\">12</span> <span style=\"color: #000000;\">08</span> <span style=\"color: #000000;\">74</span> <span style=\"color: #000000;\">36</span> <span style=\"color: #000000;\">89</span> <span style=\"color: #000000;\">75</span> FC <span style=\"color: #000000;\">83</span> 7D FC <span style=\"color: #000000;\">00</span> <span style=\"color: #000000;\">74</span> <span style=\"color: #000000;\">21</span> <span style=\"color: #000000;\">53</span><br />&nbsp; &nbsp; SS:<span style=\"color: #000000;\">ESP</span>: <span style=\"color: #000000;\">00000000</span> 007652DC 0019E1E8 0000000A 0019E1D0 0059FC87 0019E1E8 0000000A <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000001</span> 008ED100 0019E70C 005A06C7 0019E1E8 <span style=\"color: #000000;\">00764065</span> <span style=\"color: #000000;\">00000000</span><br /><br />&nbsp; &nbsp; C stack:<br />&nbsp; &nbsp; <span style=\"color: #000000;\">EIP</span>: &nbsp; &nbsp; <span style=\"color: #000000;\">EBP</span>: &nbsp; &nbsp; &nbsp; <span style=\"color: #000000;\">Frame</span>: <span style=\"color: #000000;\">OldEBP</span>, RetAddr, Params...<br />&nbsp; &nbsp; 0059EC3C 0019E1B4 &nbsp; 0019E1D0 0059FC87 0019E1E8 0000000A <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000001</span> 008ED100<br />&nbsp; &nbsp; 0059FC87 0019E1D0 &nbsp; 0019E70C 005A06C7 0019E1E8 <span style=\"color: #000000;\">00764065</span> <span style=\"color: #000000;\">00000000</span> 008ED1BC <span style=\"color: #000000;\">46445025</span> 332E312D 00000A0D <span style=\"color: #000000;\">00000000</span><br />&nbsp; &nbsp; 005A06C7 0019E70C &nbsp; 0019E72C 0059EC25 0059EC2C <span style=\"color: #000000;\">00000000</span> 007652D7 <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000000</span> 0019E740<br />&nbsp; &nbsp; 0059EC25 0019E72C &nbsp; 0019E740 00413B6C <span style=\"color: #000000;\">00000000</span> 007652D7 007652DC<br />&nbsp; &nbsp; 00413B6C 0019E740 &nbsp; 0019E75C 004BFEDC 000000AD <span style=\"color: #000000;\">00000062</span> 011F60E4 <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000000</span><br />&nbsp; &nbsp; 004BFEDC 0019E75C &nbsp; 0019E870 004B9CE6 <span style=\"color: #000000;\">00000001</span> 00763BC8 <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00763350</span> 008ED1BC 008ED4D8 <span style=\"color: #000000;\">00000130</span> <span style=\"color: #000000;\">00000000</span><br />&nbsp; &nbsp; 004B9CE6 0019E870 &nbsp; 0019E880 004139CC 00763FD6 <span style=\"color: #000000;\">00763220</span><br />&nbsp; &nbsp; 004139CC 0019E880 &nbsp; 0019E8A0 004C0099 008ED1BC 000000A5 <span style=\"color: #000000;\">00000062</span> 011F60E4 0003002F 000000B4<br />&nbsp; &nbsp; 004C0099 0019E8A0 &nbsp; 0019E9B4 004B9DA4 <span style=\"color: #000000;\">00000002</span> 006336F7 <span style=\"color: #000000;\">00000000</span> 008ED1BC <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000000</span><br />&nbsp; &nbsp; 004B9DA4 0019E9B4 &nbsp; 0019E9C4 0041396C 00763A54 <span style=\"color: #000000;\">00763220</span><br />&nbsp; &nbsp; 0041396C 0019E9C4 &nbsp; 0019E9E0 004BFEDC 000000A1 <span style=\"color: #000000;\">00000062</span> 011F60E4 <span style=\"color: #000000;\">00000000</span> 0000003E<br />&nbsp; &nbsp; 004BFEDC 0019E9E0 &nbsp; 0019EAF4 004B9C63 <span style=\"color: #000000;\">00000003</span> <span style=\"color: #000000;\">00656806</span> <span style=\"color: #000000;\">00000000</span> 008ED1BC 0000000E 011F1994 <span style=\"color: #000000;\">00000007</span> <span style=\"color: #000000;\">00000000</span><br />&nbsp; &nbsp; 004B9C63 0019EAF4 &nbsp; 0019EB04 <span style=\"color: #000000;\">00405154</span> 006335F8 0063176C<br />&nbsp; &nbsp; <span style=\"color: #000000;\">00405154</span> 0019EB04 &nbsp; 0019EB20 004BFEDC <span style=\"color: #000000;\">00000092</span> 0000005E 011F629C <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00000195</span><br />&nbsp; &nbsp; 004BFEDC 0019EB20 &nbsp; 0019EC34 004B9C63 <span style=\"color: #000000;\">00000000</span> 006542B2 <span style=\"color: #000000;\">00000000</span> 006539D8 008ED1BC 008ED1BC <span style=\"color: #000000;\">00000010</span> 0019EB60<br />&nbsp; &nbsp; 004B9C63 0019EC34 &nbsp; 0019EC44 004060C4 006542C7 <span style=\"color: #000000;\">00653878</span><br />&nbsp; &nbsp; 004060C4 0019EC44 &nbsp; 0019EC64 004C0099 008ED1BC 0000008E 0000005E 011F629C 0018002C <span style=\"color: #000000;\">00000130</span><br />&nbsp; &nbsp; 004C0099 0019EC64 &nbsp; 0019ED78 004B9DA4 <span style=\"color: #000000;\">00000000</span> <span style=\"color: #000000;\">00640766</span> <span style=\"color: #000000;\">00000000</span> 006374D0 008ED1BC 00AA704C 011F1674 <span style=\"color: #000000;\">00000001</span><br />&nbsp; &nbsp; 004B9DA4 0019ED78 &nbsp; 0019ED88 004060AC <span style=\"color: #000000;\">00654254</span> <span style=\"color: #000000;\">00653878</span><br />&nbsp; &nbsp; 004060AC 0019ED88 &nbsp; 0019EDA8 004C0099 008ED1BC 0000008A 0000005E 011F629C 0017002C 0000001F<br /><br /><br />Modules:<br /><span style=\"color: #000000;\">00400000</span> <span style=\"color: #000000;\">00001000</span> F:\\test\\harbour\\pay2023_\\bin\\pay.exe<br /><span style=\"color: #000000;\">77990000</span> 0019A000 C:\\WINDOWS\\SYSTEM32\\ntdll.dll<br />778A0000 000E0000 C:\\WINDOWS\\System32\\KERNEL32.DLL<br /><span style=\"color: #000000;\">75170000</span> 001FF000 C:\\WINDOWS\\System32\\KERNELBASE.dll<br />75BB0000 <span style=\"color: #000000;\">00079000</span> C:\\WINDOWS\\System32\\ADVAPI32.DLL<br />75D00000 000BF000 C:\\WINDOWS\\System32\\msvcrt.dll<br /><span style=\"color: #000000;\">77820000</span> <span style=\"color: #000000;\">00076000</span> C:\\WINDOWS\\System32\\sechost.dll<br /><span style=\"color: #000000;\">75520000</span> 000BB000 C:\\WINDOWS\\System32\\RPCRT4.dll<br /><span style=\"color: #000000;\">75150000</span> <span style=\"color: #000000;\">00020000</span> C:\\WINDOWS\\System32\\SspiCli.dll<br /><span style=\"color: #000000;\">75140000</span> 0000A000 C:\\WINDOWS\\System32\\CRYPTBASE.dll<br />75A20000 <span style=\"color: #000000;\">00060000</span> C:\\WINDOWS\\System32\\bcryptPrimitives.dll<br /><span style=\"color: #000000;\">75670000</span> 000B0000 C:\\WINDOWS\\System32\\COMDLG32.DLL<br />74A30000 0020F000 C:\\WINDOWS\\WinSxS\\x86_microsoft.windows.common-controls_6595b64144ccf1df_6<span style=\"color: #000000;\">.0</span><span style=\"color: #000000;\">.18362</span>.1556_none_e62b6e06f8da6adb\\COMCTL32.DLL<br /><span style=\"color: #000000;\">76690000</span> <span style=\"color: #000000;\">00277000</span> C:\\WINDOWS\\System32\\combase.dll<br />75A80000 <span style=\"color: #000000;\">00120000</span> C:\\WINDOWS\\System32\\ucrtbase.dll<br />75CD0000 <span style=\"color: #000000;\">00021000</span> C:\\WINDOWS\\System32\\GDI32.dll<br /><span style=\"color: #000000;\">75490000</span> <span style=\"color: #000000;\">00084000</span> C:\\WINDOWS\\System32\\shcore.dll<br /><span style=\"color: #000000;\">76970000</span> <span style=\"color: #000000;\">00017000</span> C:\\WINDOWS\\System32\\win32u.dll<br />769F0000 0015D000 C:\\WINDOWS\\System32\\gdi32full.dll<br />75F00000 <span style=\"color: #000000;\">00198000</span> C:\\WINDOWS\\System32\\USER32.dll<br /><span style=\"color: #000000;\">75720000</span> 0007C000 C:\\WINDOWS\\System32\\msvcp_win.dll<br /><span style=\"color: #000000;\">76620000</span> <span style=\"color: #000000;\">00044000</span> C:\\WINDOWS\\System32\\SHLWAPI.dll<br />760A0000 0057B000 C:\\WINDOWS\\System32\\SHELL32.dll<br />769B0000 0003B000 C:\\WINDOWS\\System32\\cfgmgr32.dll<br />76E00000 005C1000 C:\\WINDOWS\\System32\\windows.storage.dll<br /><span style=\"color: #000000;\">76670000</span> <span style=\"color: #000000;\">00017000</span> C:\\WINDOWS\\System32\\profapi.dll<br /><span style=\"color: #000000;\">76910000</span> <span style=\"color: #000000;\">00043000</span> C:\\WINDOWS\\System32\\powrprof.dll<br />75EA0000 0000D000 C:\\WINDOWS\\System32\\UMPDC.dll<br />76CC0000 0000F000 C:\\WINDOWS\\System32\\kernel.appcore.dll<br /><span style=\"color: #000000;\">75470000</span> <span style=\"color: #000000;\">00013000</span> C:\\WINDOWS\\System32\\cryptsp.dll<br /><span style=\"color: #000000;\">75370000</span> 000F7000 C:\\WINDOWS\\System32\\OLE32.DLL<br />75C30000 <span style=\"color: #000000;\">00092000</span> C:\\WINDOWS\\System32\\OLEAUT32.DLL<br />6E0A0000 0016B000 C:\\WINDOWS\\WinSxS\\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1<span style=\"color: #000000;\">.1</span><span style=\"color: #000000;\">.18362</span>.1556_none_171660ec536ce4a9\\GDIPLUS.DLL<br />755E0000 0005E000 C:\\WINDOWS\\System32\\WS2_32.DLL<br />661B0000 <span style=\"color: #000000;\">00018000</span> C:\\WINDOWS\\SYSTEM32\\MPR.DLL<br /><span style=\"color: #000000;\">74990000</span> <span style=\"color: #000000;\">00006000</span> C:\\WINDOWS\\SYSTEM32\\MSIMG32.DLL<br />65D00000 0002C000 C:\\WINDOWS\\SYSTEM32\\OLEDLG.DLL<br />74C40000 <span style=\"color: #000000;\">00008000</span> C:\\WINDOWS\\SYSTEM32\\VERSION.DLL<br /><span style=\"color: #000000;\">74480000</span> 0006B000 C:\\WINDOWS\\SYSTEM32\\WINSPOOL.DRV<br />76CD0000 <span style=\"color: #000000;\">00019000</span> C:\\WINDOWS\\System32\\bcrypt.dll<br />634B0000 <span style=\"color: #000000;\">00024000</span> C:\\WINDOWS\\SYSTEM32\\WINMM.DLL<br /><span style=\"color: #000000;\">74390000</span> 000C5000 C:\\WINDOWS\\SYSTEM32\\PROPSYS.dll<br />62FD0000 <span style=\"color: #000000;\">00023000</span> C:\\WINDOWS\\SYSTEM32\\winmmbase.dll<br />74D20000 <span style=\"color: #000000;\">00032000</span> C:\\WINDOWS\\SYSTEM32\\IPHLPAPI.DLL<br /><span style=\"color: #000000;\">75640000</span> <span style=\"color: #000000;\">00025000</span> C:\\WINDOWS\\System32\\IMM32.DLL<br /><span style=\"color: #000000;\">73840000</span> 0007A000 C:\\WINDOWS\\system32\\uxtheme.dll<br /><span style=\"color: #000000;\">75800000</span> <span style=\"color: #000000;\">00103000</span> C:\\WINDOWS\\System32\\MSCTF.dll<br />029F0000 <span style=\"color: #000000;\">00012000</span> C:\\Program Files <span style=\"color: #000000;\">&#40;</span>x86<span style=\"color: #000000;\">&#41;</span>\\4t Tray Minimizer\\ShellEh552.dll<br /><span style=\"color: #000000;\">72400000</span> <span style=\"color: #000000;\">00029000</span> C:\\WINDOWS\\SYSTEM32\\ntmarta.dll<br />6DB50000 <span style=\"color: #000000;\">00009000</span> C:\\WINDOWS\\System32\\drprov.dll<br />738C0000 <span style=\"color: #000000;\">00044000</span> C:\\WINDOWS\\System32\\WINSTA.dll<br />6DB30000 <span style=\"color: #000000;\">00012000</span> C:\\WINDOWS\\System32\\ntlanman.dll<br />6DB10000 <span style=\"color: #000000;\">00019000</span> C:\\WINDOWS\\System32\\davclnt.dll<br />6DB00000 0000A000 C:\\WINDOWS\\System32\\DAVHLPR.dll<br />73B00000 <span style=\"color: #000000;\">00010000</span> C:\\WINDOWS\\System32\\wkscli.dll<br />73AD0000 0000E000 C:\\WINDOWS\\SYSTEM32\\cscapi.dll<br /><span style=\"color: #000000;\">74950000</span> 0000B000 C:\\WINDOWS\\System32\\netutils.dll<br />02DA0000 <span style=\"color: #000000;\">00090000</span> F:\\test\\harbour\\pay2023_\\bin\\BWCC32.DLL<br /><span style=\"color: #000000;\">10000000</span> 000D2000 F:\\test\\harbour\\pay2023_\\bin\\keylib32.dll<br />6D520000 <span style=\"color: #000000;\">00053000</span> C:\\WINDOWS\\SYSTEM32\\OLEACC.dll<br />62BE0000 <span style=\"color: #000000;\">00082000</span> C:\\WINDOWS\\System32\\TextInputFramework.dll<br />628F0000 0025E000 C:\\WINDOWS\\System32\\CoreUIComponents.dll<br />62B50000 <span style=\"color: #000000;\">00089000</span> C:\\WINDOWS\\System32\\CoreMessaging.dll<br /><span style=\"color: #000000;\">66070000</span> 000D7000 C:\\WINDOWS\\SYSTEM32\\wintypes.dll<br />6ED70000 0022A000 C:\\WINDOWS\\System32\\iertutil.dll<br />76D80000 <span style=\"color: #000000;\">00080000</span> C:\\WINDOWS\\System32\\clbcatq.dll<br />6D360000 <span style=\"color: #000000;\">00169000</span> C:\\WINDOWS\\SYSTEM32\\WindowsCodecs.dll<br /><br />Called <span style=\"color: #0000ff;\">from</span> PDFBEGIN<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> in .\\source\\<span style=\"color: #00C800;\">function</span>\\PRV2PDF.PRG<br />Called <span style=\"color: #0000ff;\">from</span> FWPDF:<span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">180</span><span style=\"color: #000000;\">&#41;</span> in .\\source\\<span style=\"color: #00C800;\">function</span>\\PRV2PDF.PRG<br />Called <span style=\"color: #0000ff;\">from</span> FWSAVEPREVIEWTOPDF<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">62</span><span style=\"color: #000000;\">&#41;</span> in .\\source\\<span style=\"color: #00C800;\">function</span>\\PRV2PDF.PRG<br />Called <span style=\"color: #0000ff;\">from</span> XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">405</span><span style=\"color: #000000;\">&#41;</span> in .\\xprinter.PRG<br />Called <span style=\"color: #0000ff;\">from</span> TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> in .\\prnpcb.PRG<br />Called <span style=\"color: #0000ff;\">from</span> TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> in .\\prnpcb.PRG<br />Called <span style=\"color: #0000ff;\">from</span> <span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> in .\\taxcalc2.PRG<br />Called <span style=\"color: #0000ff;\">from</span> TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> in .\\taxcalc2.PRG<br />Called <span style=\"color: #0000ff;\">from</span> P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span> in .\\p_calc.PRG<br />Called <span style=\"color: #0000ff;\">from</span> ENDPAY<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">405</span><span style=\"color: #000000;\">&#41;</span> in .\\endpay.PRG<br />Called <span style=\"color: #0000ff;\">from</span> CHKEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">202</span><span style=\"color: #000000;\">&#41;</span> in .\\pay.PRG<br />Called <span style=\"color: #0000ff;\">from</span> <span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>PAY<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">63</span><span style=\"color: #000000;\">&#41;</span> in .\\pay.PRG<br />Called <span style=\"color: #0000ff;\">from</span> TBTNBMP:<span style=\"color: #0000ff;\">CLICK</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">705</span><span style=\"color: #000000;\">&#41;</span> in <span style=\"color: #0000ff;\">btnbmp</span>.prg<br />Called <span style=\"color: #0000ff;\">from</span> TBTNBMP:<span style=\"color: #000000;\">LBUTTONUP</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">991</span><span style=\"color: #000000;\">&#41;</span> in <span style=\"color: #0000ff;\">btnbmp</span>.prg<br />Called <span style=\"color: #0000ff;\">from</span> TCONTROL:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1791</span><span style=\"color: #000000;\">&#41;</span> in .\\source\\classes\\CONTROL.PRG<br />Called <span style=\"color: #0000ff;\">from</span> TBTNBMP:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">2042</span><span style=\"color: #000000;\">&#41;</span> in <span style=\"color: #0000ff;\">btnbmp</span>.prg<br />Called <span style=\"color: #0000ff;\">from</span> _FWH<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">3559</span><span style=\"color: #000000;\">&#41;</span> in .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG<br />Called <span style=\"color: #0000ff;\">from</span> WINRUN<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span><br />Called <span style=\"color: #0000ff;\">from</span> TWINDOW:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1097</span><span style=\"color: #000000;\">&#41;</span> in .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG<br />Called <span style=\"color: #0000ff;\">from</span> PAY<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">156</span><span style=\"color: #000000;\">&#41;</span> in .\\pay.PRG<br />------------------------------------------------------------------------<br />&nbsp;</div>[/code:3h1i4uu9]\n\nHave a bunch of this message in pay.log\n[code=fw:3h1i4uu9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">47</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">48</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">49</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">49</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">50</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">51</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">51</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">52</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">53</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">53</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">54</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">55</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">56</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">57</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">57</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">58</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">59</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br /><span style=\"color: #000000;\">02</span>/<span style=\"color: #000000;\">08</span>/<span style=\"color: #000000;\">2023</span> <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">59</span>: <span style=\"color: #000000;\">EXCESS</span> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">OF</span> <span style=\"color: #0000ff;\">FONT</span> COURIER <span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">&#91;</span> hFont : <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#40;</span> nCount : <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<-TFONT:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">297</span><span style=\"color: #000000;\">&#41;</span> <-TPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">498</span><span style=\"color: #000000;\">&#41;</span> <-XTPRINTER:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">374</span><span style=\"color: #000000;\">&#41;</span> <-XPRINTEND<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #000000;\">PRINTRESIDENT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">304</span><span style=\"color: #000000;\">&#41;</span> <-TPRNPCB:<span style=\"color: #00C800;\">PRINT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">31</span><span style=\"color: #000000;\">&#41;</span> <-<span style=\"color: #000000;\">&#40;</span>b<span style=\"color: #000000;\">&#41;</span>TPCBCCM<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1102</span><span style=\"color: #000000;\">&#41;</span> <-TPCBCCM:<span style=\"color: #000000;\">DEBUGCALC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span> <-P_CALC<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; ------------------------------------------------------------&nbsp; &nbsp; <br />&nbsp;</div>[/code:3h1i4uu9]", "time": "03:41", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-03", "forum": "FiveWin for Harbour/xHarbour", "text": "Using original printer class or derived class?\nUsing 'FILE cPdf\" ?", "time": "04:58", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "nageswaragunupudi" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-03", "forum": "FiveWin for Harbour/xHarbour", "text": ">Using original printer class or derived class?\nUsing derived class as I don't want to rewrite the report.\n\n>Using 'FILE cPdf\" ?\nYes", "time": "08:03", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-03", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote:27up9e7a]Unfortunately when it's printing in a loop (a bunch of staffs tax calculation), it will eventually generates internal error\n[/quote:27up9e7a]\nAfter how many times in the loop?", "time": "08:55", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "nageswaragunupudi" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-03", "forum": "FiveWin for Harbour/xHarbour", "text": "About 18 and some of the generated pdfs are blank with a filesize of 1.4KB only", "time": "09:10", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-05", "forum": "FiveWin for Harbour/xHarbour", "text": "I tested this program to generate 200 pdf files silently and all 200 files were created in 1.1 seconds and no crash, no errors and no log files about excess font release.\nI have used native fwh library without modifications.\nI tested it with FWH1912.\n\n[code=fw:qgnz4dkp]<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 FWHARU<br />REQUEST DBFCDX<br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> nMax &nbsp;:= <span style=\"color: #000000;\">200</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> bData, cData, cPdf, n, nSecs<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> cLog &nbsp;:= cFileSetExt<span style=\"color: #000000;\">&#40;</span> ExeName<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #ff0000;\">\"log\"</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;FWNumFormat<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"E\"</span>, .t. <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;TPrinter<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #000000;\">lUseHaruPDF</span> := .t.<br /><br />&nbsp; &nbsp;FERASE<span style=\"color: #000000;\">&#40;</span> cLog <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;AEVAL<span style=\"color: #000000;\">&#40;</span> DIRECTORY<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"CUST???.PDF\"</span> <span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #000000;\">&#123;</span> |a| FERASE<span style=\"color: #000000;\">&#40;</span> a<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;USE CUSTOMER <span style=\"color: #00C800;\">NEW</span> VIA <span style=\"color: #ff0000;\">\"DBFCDX\"</span><br />&nbsp; &nbsp;GO TOP<br /><br />&nbsp; &nbsp;bData := &<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"{||{ID,TRIM(FIRST) + ', ' + LAST,STREET,CITY,STATE,AGE,SALARY}}\"</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;nSecs := SECONDS<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;MsgRun<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"CUST000.PDF\"</span>, FWVERSION, <span style=\"color: #000000;\">&#123;</span> |oDlg| cPdf := MultiPDF<span style=\"color: #000000;\">&#40;</span> nMax, bData, oDlg <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;nSecs := SECONDS<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> - nSecs<br /><br />&nbsp; &nbsp;? <span style=\"color: #ff0000;\">\"Created \"</span> + cValToChar<span style=\"color: #000000;\">&#40;</span> nMax <span style=\"color: #000000;\">&#41;</span> + <span style=\"color: #ff0000;\">\" pdfs in \"</span> + cValToChar<span style=\"color: #000000;\">&#40;</span> nSecs <span style=\"color: #000000;\">&#41;</span> + <span style=\"color: #ff0000;\">\" seconds\"</span><br /><br />&nbsp; &nbsp;HtmlView<span style=\"color: #000000;\">&#40;</span> TrueName<span style=\"color: #000000;\">&#40;</span> cPdf <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> File<span style=\"color: #000000;\">&#40;</span> cLog <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; WinExec<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"notepad.exe \"</span> + cLog <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; ? cLog + <span style=\"color: #ff0000;\">\" not created\"</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">static</span> <span style=\"color: #00C800;\">function</span> MultiPDF<span style=\"color: #000000;\">&#40;</span> nMax, bData, oDlg <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> cPdf,cData,n<br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">for</span> n := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nMax<br /><br />&nbsp; &nbsp; &nbsp; cData := FW_ArrayAsList<span style=\"color: #000000;\">&#40;</span> Eval<span style=\"color: #000000;\">&#40;</span> bData <span style=\"color: #000000;\">&#41;</span>, CRLF, .t. <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; cPdf &nbsp;:= <span style=\"color: #ff0000;\">\"CUST\"</span> + STRZERO<span style=\"color: #000000;\">&#40;</span> n, <span style=\"color: #000000;\">3</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span> + <span style=\"color: #ff0000;\">\".PDF\"</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #B900B9;\">//</span><br />&nbsp; &nbsp; &nbsp; oDlg:<span style=\"color: #000000;\">cMsg</span> &nbsp; := cPdf<br />&nbsp; &nbsp; &nbsp; oDlg:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; SysRefresh<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #B900B9;\">//</span><br />&nbsp; &nbsp; &nbsp; MakePDF<span style=\"color: #000000;\">&#40;</span> cData, cPdf <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp; SKIP<br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> EOF<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GO TOP<br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">next</span><br /><br /><span style=\"color: #00C800;\">return</span> cPdf<br /><br /><span style=\"color: #00C800;\">static</span> <span style=\"color: #00C800;\">function</span> MakePDF<span style=\"color: #000000;\">&#40;</span> cData, cPdf <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> oPrn, oFont<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> nRow, nCol<br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">PRINT</span> oPrn FILE cPdf<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"COURIER NEW\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-12</span> <span style=\"color: #0000ff;\">OF</span> oPrn<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">PAGE</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">for</span> nRow := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">7</span> step <span style=\"color: #000000;\">2</span>; <span style=\"color: #00C800;\">for</span> nCol := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">4</span> step <span style=\"color: #000000;\">3</span><br /><br />&nbsp; &nbsp; &nbsp; @ nRow, nCol <span style=\"color: #00C800;\">PRINT</span> <span style=\"color: #0000ff;\">TO</span> oPrn <span style=\"color: #0000ff;\">TEXT</span> cData <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">3</span>,<span style=\"color: #000000;\">2</span> INCHES ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">FONT</span> oFont<br /><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">next</span>; <span style=\"color: #00C800;\">next</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ENDPAGE</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ENDPRINT</span><br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFont<br /><br />&nbsp; &nbsp;oPrn &nbsp;:= <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span></div>[/code:qgnz4dkp]\nYou can try coping this program to fwh\\samples folder and try building with buildh.bat or buildx.bat.", "time": "10:47", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "nageswaragunupudi" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2023-08-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks Rao. \nI was using :lUseFWPdf instead of :lUseHaruPdf in my test that ends up with internal error.\nI'll try to slowly shift to :lUseHaruPdf and see how it goes", "time": "03:21", "topic": "Assigning lUseHaruPdf when TPrinter is sub-classed", "username": "hua" } ]
Assigning lUseHaruPdf when TPrinter is sub-classed
[ { "date": "2012-10-31", "forum": "FiveWin for Harbour/xHarbour", "text": "I have an application that generates a daily report with the ability to view reports from previous dates. For this genre a file, write it to disk and lifted him TTxtFile class. The object generated with class I show that a xBrowse follows:\n\n[code=fw:3oerbn00]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br />@ <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">xBrowse</span> oBrw <span style=\"color: #0000ff;\">Of</span> oDlg Columns <span style=\"color: #ff0000;\">\"cLine\"</span> Object oTxt <span style=\"color: #0000ff;\">Font</span> oFont <span style=\"color: #B900B9;\">// oTxt objeto TTxtFile</span><br /> <br /> </div>[/code:3oerbn00]\nSo far it works perfectly, but when I change the date of reference, the object oTxt genre again, the xBrowse presents me one line (the 1st) and the document has 134. What I find is how cool the new object xBrowse with oTxt. If anyone knows?. From already thank you very much.\n\nregards", "time": "12:24", "topic": "Assigning object xBrowse", "username": "horacio" } ]
Assigning object xBrowse
[ { "date": "2010-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "I have noticed that in FIVEWIN the assign is done with = and := .\n\nCould someone explain when to use = and when := .\n\nThanks in advance\nOtto", "time": "11:01", "topic": "Assignment = or := ?", "username": "Otto" } ]
Assignment = or := ?
[ { "date": "2010-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "= is the normal assignment operator while := in the inline version of the same operator. As an example:\n\nREDEFINE BUTTON ACTION x = 1 // wrong!\n\nREDEFINE BUTTON ACTION x := 1 // ok!\n\nx = 1 // ok!\nx := 1 // ok! It's the same\na = b = 1 // means a = .T. if b = 1 or .F. if b != 1\na = b := 1 // means a = 1 and b = 1\na := b := 1 // the same as above\n\nEMG", "time": "12:12", "topic": "Assignment = or := ?", "username": "Enrico Maria Giordano" } ]
Assignment = or := ?
[ { "date": "2010-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Otto,\n\nIf you have the Clipper help file, there are good descriptions in there.\n\nRegards,\nJames", "time": "20:02", "topic": "Assignment = or := ?", "username": "James Bott" } ]
Assignment = or := ?
[ { "date": "2010-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Enrico, hello James,\n\nThank you for explaining to me.\nFor example in TRBGroup-class assignments are made with := in TBtnBmp classe with = \n( VB6 style which I don’t like). I thought that there is maybe a difference which I am not aware of.\nBest regards,\nOtto", "time": "22:29", "topic": "Assignment = or := ?", "username": "Otto" } ]
Assignment = or := ?