topic
stringlengths 1
63
| text
stringlengths 1
577k
⌀ |
|---|---|
Asociar Extencion de Archivos a mi Aplicación
|
Para quien lo necesite el Link Actualizado..
<!-- m --><a class="postlink" href="http://www.mediafire.com/download/c8lft8wobhb6jaj/Asociar.rar">http://www.mediafire.com/download/c8lft ... sociar.rar</a><!-- m -->
Saludos.
|
Asociar Extencion de Archivos a mi Aplicación
|
Victor, gracias
|
Asociar teclas a un xBrowse
|
Buenas Foro!, tengo este codigo asociado a un xbrowse:
[code:16ol8xez]
function press_on_browse(nKey,self)
msginfo(nkey)
do case
case nkey = VK_F2 .and. ::lInsertButton
::Insert()
case nkey = VK_F3 .and. ::lDeleteButton
::Delete()
case (nkey = VK_F4 .or. nKey = VK_RETURN) .and. ::lModifyButton
::Modify()
case nkey = VK_F5 .and. ::lSearchButton
::Search()
case nkey = VK_F6 .and. ::lPrintButton
::Print()
case nkey = VK_ESCAPE
::oContainer:End()
end case
return
[/code:16ol8xez]
Me funciona todo perfectamente menos la tecla ESCAPE, ¿sabeis que puede ser?
Muchas Gracias.
|
Asociar teclas a un xBrowse
|
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.
SALUDOS
|
Asociar teclas a un xBrowse
|
CUAL ÉS LA VERSION DE TU FIVEWIN?
PROBASTES CON bKeyDown()??
|
Asociar teclas a un xBrowse
|
Gracias Karina
es la FW 2.8 Octubre de 2006
|
Asociar teclas a un xBrowse
|
la llamada a press_on_browse la realizo asi:
[code:32vhr5eg]
::oBrowse:bKeydown:={|nkey|press_on_browse(nKey,self)}
[/code:32vhr5eg]
|
Asociar teclas a un xBrowse
|
Cuando presionas ESC se sale del Browse o se queda alli?
Si se sale del Browse entonces tienes que modificar el metodo KEYDOWN
de la clase XBROWSE
|
Asociar teclas a un xBrowse
|
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.
|
Asociar teclas a un xBrowse
|
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.
Jaime
|
Asociar teclas a un xBrowse
|
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.
Pero en realidad el hecho de no evaluar bKeyDown, es debido a el metodo KeyDown de la clase control.
Allí si la tecla recibida es escape
[code:rjwiu7t9]
if nKey == VK_ESCAPE
:oWnd:KeyDown( nKey, nFlags )
return 0
[/code:rjwiu7t9]
mientras que si es otra tecla
[code:rjwiu7t9]
return Super:KeyDown( nKey, nFlags )
[/code:rjwiu7t9]
Supongo 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.
::oWnd y Super no son el mismo objeto, y el code block bKeyDown esta asignado en Super.
Algun usuario mas experimentado, o Antonio directamente nos podra dar luz sobre el tema.
|
Asociar teclas a un xBrowse
|
Muchas Gracias a los 2 (Jaime y Gabriel). Esperaré noticias.
|
Asociar teclas de función a funciones específicas
|
Colegas, espero puedan ayudarme en esta dificultad.... <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
Necesito asociar a los botones de una dialog que manipula los registros
de 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.
Lo hice así:
.....
#include "inkey.ch"
......
SetKey(K_F2 , {|| Nuevo( oDbf, oBtn, oDlg, oPage:aDialogs[1], ;
oSay, oGet, cNom_Dbf, cAlias ) })
SetKey(K_F8 , {|| Modificar(oPage:aDialogs[1], oBtn) })
SetKey(K_F7 , {|| Borrec( oDbf, oBtn, oDlg, oPage:aDialogs[1], ;
oSay ) }) .......
DEFINE DIALOG .......
.....
ACTIVATE DIALOG .......
SetKey(K_F2 )
SetKey(K_F8 )
SetKey(K_F7 )
......
RETURN NIL
Pero al presionar las teclas de función no pasa nada, aunque con los botones las funciones andan perfecto.
que está mal?:shock:
Hay 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: -->
Gracias 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 -->
|
Asociar teclas de función a funciones específicas
|
Oye Jose,
yo lo hago asi como son botones los que quieres activar yo uso
CASE nKey==VK_F2
o123:SetFocus()
o123:Click()
siendo o123
REDEFINE BUTTON o123 ID 123 OF oDlgLot ;
PROMPT "&Buscar Ticket" Action (::BuscarTicket(::oComboSigno))
espero me entiendas y te funcione
Suerte
|
Asociar teclas de función a funciones específicas
|
Hola Sr...
debe funcionar,, yo oo hago asi
SetKey(VK_F12,{||AbreCajonDinero(aSerieNumero)})
Salu2
|
Asociar teclas de función a funciones específicas
|
Gracias amigos por su ayuda, verdaderamente la mayoría de las veces este foro me saca de un apuro.
El 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.
Lo importante: MUCHAS GRACIAS A TODOS!!!!! <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
|
Asociar teclas de función a funciones específicas
|
I use this
Maurizio
//---------------------------------
DEFINE BUTTON oBtn RESOURCE "TEST" OF oBar ACTION Msginfo("PRESS F2")
oBtn[1]:cargo := VK_F2
oDlg:bKeyDown = { | nKey | CheckKey(nKey,oBar)}
//----------------------------------
Function CheckKey(nKey,oBar)
Local nX,nY
IF nKey >= VK_F2 .AND. nKey <= VK_F9
IF oBar:lActive
FOR ny := 1 TO len(oBar:aControls)
IF oBar:aControls[ny]:cargo # nil .AND. oBar:aControls[ny]:lActive
if oBar:aControls[nY]:cargo == nKey
oBar:setfocus()
oBar:aControls[nY]:Click()
endif
ENDIF
NEXT
ENDIF
ENDIF
Return nil
[/code]
|
Asort 101
|
To All
I 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:? -->
I 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 ..
[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;">(</span><span style="color: #000000;">)</span><span style="color: #000000;">+1</span><br /><br />aLine := <span style="color: #000000;">{</span> space<span style="color: #000000;">(</span><span style="color: #000000;">50</span><span style="color: #000000;">)</span>,nRepairNumber,cInventoryId,nRow <span style="color: #000000;">}</span><br />Aadd<span style="color: #000000;">(</span> aSerial, aLine <span style="color: #000000;">)</span><br /><br />aSort<span style="color: #000000;">(</span> aSerial, <span style="color: #000000;">4</span> <span style="color: #000000;">)</span> <span style="color: #B900B9;">// this does not work </span><br /><br /> </div>[/code:2iwz8pu7]
the array table may look like this
2345 200001 x3456 3
5678 200001 x3456 1
4567 200001 x3486 2
I 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.
Any advice would be appreciated!
Rick Lipkin
|
Asort 101
|
Hi Rick
Real simple and works well.
Syntax -
ASORT(<aTarget>, [<nStart>], [<nCount>], [<bOrder>]) --> aTarget
Example
::aAll:=ASORT(::aAll,,,{|x,y| x[1]<y[1]})
Your code
aSorted := ASORT(aLine,,,{|x,y| x[4]<y[4]})
There are no numeris restrictions either. It takes a few seconds to sort hundreds. Harbour developers did well.
Can supply definitions of syntax if you require them.
|
Asort 101
|
Hi Rick;
[quote:30hjkwf3]Syntax
ASort( <aArray>, [<nStart>], [<nCount>], [<bSort>] ) --> aArray
Arguments
<aArray>
The array to be sorted.
<nStart>
This is a numeric expression indicating the first element in the array to begin sorting with. It defaults to 1, the first element of <aArray>.
<nCount>
A numeric expression specifying the number of elements to sort. It defaults to 1+Len(<aArray>)-<nStart>.
<bSort>
Optionally, 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.
Return
The function returns a reference to <aArray>.
[/quote:30hjkwf3]
Here is sample code:
[code=fw:30hjkwf3]<div class="fw" id="{CB}" style="font-family: monospace;"><br />aSort<span style="color: #000000;">(</span> aArray,,, <span style="color: #000000;">{</span> |x,y| x<span style="color: #000000;">[</span><span style="color: #000000;">1</span><span style="color: #000000;">]</span> < y<span style="color: #000000;">[</span><span style="color: #000000;">1</span><span style="color: #000000;">]</span> <span style="color: #000000;">}</span> <span style="color: #000000;">)</span><br /> </div>[/code:30hjkwf3]
Hope that helps,
Reinaldo.
|
Asort 101
|
To All
Thanks .. this seemed to be my solution
aSort( aSerial,,, { |x,y| x[4] < y[4] } )
Thanks
Rick
ps .. 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: --> )
|
Asort array base two elements and found the last number
|
Dear friends,
I must found the last number (field 1) of this array if the cCode ( field 2) is "01"
Local aData:= { ;
{4,"01","17/03/2020","17/03/2020"} ,;
{7,"02","17/03/2020","18/03/2020"} ,;
{7,"01","17/03/2020","18/03/2020"} ,;
{11,"02","17/03/2020","18/03/2020"} ,;
{8,"01","17/03/2020","18/03/2020"} }
local cCodice:="01"
I try with
ASort( aData ,,, {|x,y| If ( x[2] == cCodice, x[1]< y[1],) } )
How I can make to found the last value for the code "01" ?
it must return me 8
|
Asort array base two elements and found the last number
|
Silvio,
Try RASCAN
[code=fw:za1l9gcy]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><span style="color: #00C800;">LOCAL</span> x , y , nPos<br /><span style="color: #00C800;">LOCAL</span> aData:= <span style="color: #000000;">{</span> <span style="color: #000000;">{</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;">}</span> , ;<br /> <span style="color: #000000;">{</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;">}</span> , ;<br /> <span style="color: #000000;">{</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;">}</span> , ;<br /> <span style="color: #000000;">{</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;">}</span> , ;<br /> <span style="color: #000000;">{</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;">}</span> <span style="color: #000000;">}</span><br /><br /><span style="color: #00C800;">LOCAL</span> cCodice:=<span style="color: #ff0000;">"01"</span><br /><br /><br />ASORT<span style="color: #000000;">(</span> aData ,,, <span style="color: #000000;">{</span>|x,y| <span style="color: #00C800;">If</span> <span style="color: #000000;">(</span> x<span style="color: #000000;">[</span><span style="color: #000000;">2</span><span style="color: #000000;">]</span> == cCodice, x<span style="color: #000000;">[</span><span style="color: #000000;">1</span><span style="color: #000000;">]</span>< y<span style="color: #000000;">[</span><span style="color: #000000;">1</span><span style="color: #000000;">]</span>,<span style="color: #000000;">)</span> <span style="color: #000000;">}</span> <span style="color: #000000;">)</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;">(</span> aData <span style="color: #000000;">)</span><br /> ? aData<span style="color: #000000;">[</span> x , <span style="color: #000000;">1</span> <span style="color: #000000;">]</span> , aData<span style="color: #000000;">[</span> x , <span style="color: #000000;">2</span> <span style="color: #000000;">]</span> ,aData<span style="color: #000000;">[</span> x , <span style="color: #000000;">3</span> <span style="color: #000000;">]</span> ,aData<span style="color: #000000;">[</span> x , <span style="color: #000000;">4</span> <span style="color: #000000;">]</span><br /><span style="color: #00C800;">NEXT</span> x<br /><br />nPos := RASCAN<span style="color: #000000;">(</span> aData, <span style="color: #000000;">{</span> | aData| aData<span style="color: #000000;">[</span> <span style="color: #000000;">2</span> <span style="color: #000000;">]</span> = cCodice <span style="color: #000000;">}</span> <span style="color: #000000;">)</span><br /><br />? nPos , aData<span style="color: #000000;">[</span> nPos , <span style="color: #000000;">1</span> <span style="color: #000000;">]</span> , aData<span style="color: #000000;">[</span> nPos , <span style="color: #000000;">2</span> <span style="color: #000000;">]</span> ,aData<span style="color: #000000;">[</span> nPos , <span style="color: #000000;">3</span> <span style="color: #000000;">]</span> ,aData<span style="color: #000000;">[</span> nPos , <span style="color: #000000;">4</span> <span style="color: #000000;">]</span><br /><br /><span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span><br /> </div>[/code:za1l9gcy]
|
Asort array base two elements and found the last number
|
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
|
Asort based on two array elements
|
Hi all,
I need to order the following array by date and by name (inside a date).
Do you have any suggest about ?
* date is the first element, name is the second
aArray:={}
aadd(aArray,{"01/10/2015","Marc"})
aadd(aArray,{"01/10/2015","Alexandra"})
aadd(aArray,{"01/07/2015","Paul"})
aadd(aArray,{"01/04/2015","Alexandra"})
aadd(aArray,{"01/04/2015","Marc"})
Thank you in advance
|
Asort based on two array elements
|
Hi Marco,
maybe using a third element?
aadd(aArray,{ "01/10/2015", "Marc", DTOS( CTOD( "01/10/2015" ) ) + "Marc" } )
|
Asort based on two array elements
|
[code=fw:3h8olczr]<div class="fw" id="{CB}" style="font-family: monospace;">ASort<span style="color: #000000;">(</span> aArray, <span style="color: #00C800;">nil</span>, <span style="color: #00C800;">nil</span>, <span style="color: #000000;">{</span> |x,y| <span style="color: #00C800;">If</span><span style="color: #000000;">(</span> x<span style="color: #000000;">[</span> <span style="color: #000000;">1</span> <span style="color: #000000;">]</span> == y<span style="color: #000000;">[</span> <span style="color: #000000;">1</span> <span style="color: #000000;">]</span>, x<span style="color: #000000;">[</span> <span style="color: #000000;">2</span> <span style="color: #000000;">]</span> < y<span style="color: #000000;">[</span> <span style="color: #000000;">2</span> <span style="color: #000000;">]</span>, x<span style="color: #000000;">[</span> <span style="color: #000000;">1</span> <span style="color: #000000;">]</span> < y<span style="color: #000000;">[</span> <span style="color: #000000;">1</span> <span style="color: #000000;">]</span> <span style="color: #000000;">)</span> <span style="color: #000000;">}</span> <span style="color: #000000;">)</span><br /> </div>[/code:3h8olczr]
|
Asort based on two array elements
|
Solved, thank you Nages
|
Asort con meter
|
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.
¿Alguien puede ponerme algún ejemplo?
Muchas Gracias de antemano.
|
Asort con meter
|
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.
Un workaround es utilizar MsgRun() o similar y al menos poner un texto "Espere..."
|
Asort con meter
|
Ok. Eso había pensado yo sobre el meter y Asort, pero por si acaso.
Probare con MsgRun() así por lo menos saldré del paso.
Gracias.
|
Asort con meter
|
Paco,
Como 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
Creo que se podria hacer asi
[url:hjzd72n7]http://www.fivetechsoft.com/harbour-docs/api.html#asort[/url:hjzd72n7]
|
Asort con meter
|
Antonio,
Me parece que Asort() utiliza el algoritmo de la burbuja, no estoy muy seguro.
Tampoco estoy seguro que el algoritmo de la burbuja use tantas comparaciones como elementos tiene el array.
Saludos
|
Asort con meter
|
Paco,
Este ejemplo funciona, pero la sorpresa es que el bloque de código se evalúa 10 veces, puesto que hacen falta
más iteraciones para ordenarlos. Haria falta una primera pasada para contar el total de iteraciones y una segunda
para mostrar el meter, lo que no lo haría muy práctico:
[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;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> nIndex := <span style="color: #000000;">1</span><br /><br /> ASort<span style="color: #000000;">(</span> <span style="color: #000000;">{</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;">}</span>,,, <span style="color: #000000;">{</span> | x, y | <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">(</span> nIndex++ <span style="color: #000000;">)</span>, x < y <span style="color: #000000;">}</span> <span style="color: #000000;">)</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span></div>[/code:1cltyi5t]
|
Asort con meter
|
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:-) -->
|
Asort con meter
|
Muchas Gracias por vuestra ayuda,
|
Aspecto de GET
|
Buenas tardes
No consigo que los GETS Redefinidos desde una DLL tengan un aspecto "plano"
Adjunto 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.
Uso PellesC como editor de recursos y la DLL la importé en su momento desde un RC ya que estaba en 16 bits
Si los GETS los creo mediante comando sin Redefinir si adquieren ese aspecto
[url=http://imageshack.us/photo/my-images/854/get1.png/:3s4w9oqw][img:3s4w9oqw]http://img854.imageshack.us/img854/7264/get1.png[/img:3s4w9oqw][/url:3s4w9oqw]
Uploaded with [url=http://imageshack.us:3s4w9oqw]ImageShack.us[/url:3s4w9oqw]
Gracias
|
Aspecto de GET
|
Prueba a quitar a la definición del campo en PellesC, el estilo de windows "border"
WS_BORDER
|
Aspecto de GET
|
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
Saludos
|
Aspecto de GET
|
Cristobal,
Usas el fichero de manifiesto desde el RC ?
1 24 "WindowsXP.Manifest"
El fichero lo tienes en FWH/samples/winxp/WindowsXP.Manifest
|
Aspecto de GET
|
No lo uso Antonio
¿Como lo puedo incorporar ahora a la DLL?
Gracias
|
Aspecto de GET
|
Solucionado, gracias
<!-- 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 -->
Un saludo
|
Aspecto de GET
|
Buenos dias
Tengo el mismo problema con los GETS que incluyo en un TPanel por codigo, su apariencia no es la correcta
Lo he "solucionado" incluyendo en mi PRG:
[code=fw:2piehap6]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">Function</span> IsAppThemed<span style="color: #000000;">(</span><span style="color: #000000;">)</span> ; <span style="color: #00C800;">Return</span> .F.<br /> </div>[/code:2piehap6]
Pero los bordes los sigue pintando en negro, sin aceptar el color que se define.
El problema, quiero pensar, esta en el NEW de la clase TGET
[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;">(</span> ::<span style="color: #000000;">nStyle</span>, WS_BORDER <span style="color: #000000;">)</span><br /> <span style="color: #00C800;">endif</span><br /> #else<br /> <span style="color: #00C800;">if</span> ! IsAppThemed<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">if</span> ! lNoBorder<br /> ::<span style="color: #000000;">nStyle</span> = nOr<span style="color: #000000;">(</span> ::<span style="color: #000000;">nStyle</span>, WS_BORDER <span style="color: #000000;">)</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;">(</span> ::<span style="color: #000000;">nStyle</span>, <span style="color: #00C800;">If</span><span style="color: #000000;">(</span> oWnd:<span style="color: #000000;">IsKindOf</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"TDIALOG"</span> <span style="color: #000000;">)</span>, WS_BORDER, <span style="color: #000000;">0</span> <span style="color: #000000;">)</span> <span style="color: #000000;">)</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;">(</span> lNoBorder, nAnd<span style="color: #000000;">(</span> ::<span style="color: #000000;">nStyle</span>, nNot<span style="color: #000000;">(</span> WS_BORDER <span style="color: #000000;">)</span> <span style="color: #000000;">)</span>, ::<span style="color: #000000;">nStyle</span> <span style="color: #000000;">)</span><br /> </div>[/code:2piehap6]
Es asi?
Esta solucionado en versiones posteriores a la mia?
Gracias
|
Aspecto en xbrowse
|
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:
- no hay que dar doble intro para editar y pasar al siguiente campo
- el campo a editar está resaltado, ...
- solo deja entrar ciertos valores
he 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?
gracias. un saludo.
|
Aspecto en xbrowse
|
Download de los fuentes, és este?
[url:1q9rqqyg]http://sourceforge.net/p/ourxdbu/code/HEAD/tree/source/[/url:1q9rqqyg]
Saludos.
|
Aspecto en xbrowse
|
Si, ese es. lo descargué, lo revisé y me perdí
|
Aspecto en xbrowse
|
No se si he entendido el alcance de tu pregunta
Has comprobado la claúsula FASTEDIT de XBrowse?
|
Assertions in Production Code?
|
This is an interesting article.Assertions in Production Code?<!-- 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 -->I must confess that I have been very lax in using assertions. I am considering spending more time on it.Comments?Regards,James
|
Assertions in Production Code?
|
James,Lets make a comparison with the security of a house:You 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 ?I mean that we can minimize the risks as much as possible, but there will always be a failure percentage.
|
Assertions in Production Code?
|
Antonio,Oh, I agree. But some of the comments like:>Professionally written production code is bug free, so there is no need for asserts.>An assert firing causes the program to abort, which may not be permissible, may cause data loss, and looks unprofessional to the customer.Really surprised me. That is just ignoring that there can be problems.I think we need to find an acceptable middle ground. This point will vary depending on the consequences of the software failing.James
|
Assertions in Production Code?
|
James,yes, I fully agree with you
|
Assign Dialog from source to Folder Action
|
I am trying to assign a dialog from source as below :
[code]
@ 1,1 FOLDER oFld1 of oDlg;
PROMPT "List", "contracts", "Sites", "Departments" ,;
"Machines", "Operators", "Jobs",;
"Machines", "Operators", "Jobs";
DIALOGS "custDlg"
So custDlg is shared dialog put in other procedures . May I put it as global static variable to be shared between many procedure ?
|
Assign a button control to arrow key
|
Hi Everybody,
Is 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?
Thanks,
Jeff
|
Assign a button control to arrow key
|
Jeff,
If the button has the focus, then you may use oBtn:bKeyChar or oBtn:bKeyDown to detect those keystrokes and fire the button action
|
Assign a button control to arrow key
|
Antonio,
Actually I have 4 buttons that I would like to give the user the option to either click a button or an arrow key.
Ex. Left Arrow = BUTTON1
Right Arrow = BUTTON2
Up Arrow = BUTTON3
Down Arrow = BUTTON4
Jeff
|
Assign a button control to arrow key
|
Jeff,
Which control has the focus ? The keystrokes will go to the focused control
Any of the buttons ? Or other control ?
|
Assign a button control to arrow key
|
The area where the buttons are has the focus.
Jeff
|
Assign a button control to arrow key
|
Is that area a dialogbox ? a window ?
|
Assign a button control to arrow key
|
Sorry, I guess I should have mentioned that.
It's a Window.
I've tried:
SETKEY( K_UP, { || MsgInfo( "UP pressed" ) } )
SETKEY( K_DOWN, { || MsgInfo( "DOWN pressed" ) } )
SETKEY( K_LEFT, { || MsgInfo( "LEFT pressed" ) } )
SETKEY( K_RIGHT, { || MsgInfo( "RIGHT pressed" ) } )
But with no luck ... basically nothing happens. (inkey.ch is in my code)
Jeff
|
Assign a button control to arrow key
|
Jeff,
When 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:
oBtn1:bKeyChar = { | nKey | MsgInfo( nKey ) }
oBtn2:bKeyChar = { | nKey | MsgInfo( nKey ) }
oBtn3:bKeyChar = { | nKey | MsgInfo( nKey ) }
oBtn4:bKeyChar = { | nKey | MsgInfo( nKey ) }
Instead of MsgInfo(), call a function where you check nKey and act accordingly
|
Assign a button control to arrow key
|
Antonio,
It 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: -->
When I press an arrow key the focus moves to the next control.
Jeff
|
Assign a button control to arrow key
|
Jeff,
Use bKeyDown instead of bKeyChar and try it again
|
Assign a button control to arrow key
|
Antonio,
I've tried both ... and still the arrow keys just move to the next control.
Jeff
|
Assign a button control to arrow key
|
Jeff,
Please try this too besides the bKeyChar/bKeyDown:
oBtn1:nDlgCode = DLGC_WANTALLKEYS
oBtn2:nDlgCode = DLGC_WANTALLKEYS
oBtn3:nDlgCode = DLGC_WANTALLKEYS
oBtn4:nDlgCode = DLGC_WANTALLKEYS
|
Assign a button control to arrow key
|
Antonio,
Still no luck. Again, the focus is moved to the next control.
Jeff
|
Assign a button control to arrow key
|
Jeff,
We are going to build a sample and try to get it working
|
Assign a button control to arrow key
|
Thanks Antonio.
|
Assign a button control to arrow key
|
Jeff,
Ok, its working <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
You have to modify Class TButton Method KeyDown() this way:
[code:356sx7m8]
METHOD KeyDown( nKey, nFlags ) CLASS TButton
::oWnd:nLastKey := nKey
do case
case nKey == VK_UP .or. nKey == VK_LEFT
if ::bKeyDown != nil
Eval( ::bKeyDown, nkey, nFlags )
else
::oWnd:GoPrevCtrl( ::hWnd )
endif
return 0
case nKey == VK_DOWN .or. nKey == VK_RIGHT
if ::bKeyDown != nil
Eval( ::bKeyDown, nkey, nFlags )
else
::oWnd:GoNextCtrl( ::hWnd )
endif
return 0
case nKey == VK_RETURN
if ::bKeyDown != nil
Eval( ::bKeyDown, nkey, nFlags )
else
PostMessage( ::hWnd, FM_CLICK ) // fire the button's action
endif
return 0
endcase
return Super:KeyDown( nKey, nFlags )
[/code:356sx7m8]
And here you have a working sample:
[code:356sx7m8]
#include "FiveWin.ch"
function Main()
local oDlg, oBtn1, oBtn2, oBtn3, oBtn4
DEFINE DIALOG oDlg TITLE "Test"
@ 3, 2 BUTTON oBtn1 PROMPT "One" OF oDlg
@ 3, 8 BUTTON oBtn2 PROMPT "Two" OF oDlg
@ 3, 14 BUTTON oBtn3 PROMPT "Three" OF oDlg
@ 3, 20 BUTTON oBtn4 PROMPT "Four" OF oDlg
oBtn1:bKeyDown = { | nKey | MsgInfo( nKey ) }
oBtn1:nDlgCode = DLGC_WANTALLKEYS
oBtn2:bKeyDown = { | nKey | MsgInfo( nKey ) }
oBtn2:nDlgCode = DLGC_WANTALLKEYS
oBtn3:bKeyDown = { | nKey | MsgInfo( nKey ) }
oBtn3:nDlgCode = DLGC_WANTALLKEYS
oBtn4:bKeyDown = { | nKey | MsgInfo( nKey ) }
oBtn4:nDlgCode = DLGC_WANTALLKEYS
ACTIVATE DIALOG oDlg CENTERED
return nil
[/code:356sx7m8]
|
Assign a button control to arrow key
|
Success <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Thanks Antonio, it is now working.
Jeff
|
Assign a button control to arrow key
|
[quote="Jeff Barnes":3r6nx70q]Thanks Antonio.[/quote:3r6nx70q]
|
Assigning columns to listbox programmatically
|
Is there anything wrong with the way I have created the columns at runtime?
And 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.
[code:4dwuqteh] DEFINE COLUMN BROWSE oListBox ID 40 OF oDlg_Search UPDATE ON DblClick ( lResult := .T., oDlg_Search:End() )
oListBox:cALIAS = cALIAS
aFlds := {"COMPANY","SURNAME","FIRSTNAME","TEL1"}
aTitles := {"Company","Surname","FIRSTNAME","Telephone"}
aWidths := {90,100,90,100}
FOR i := 1 TO LEN( aFlds )
cTemp := aFlds[ i ]
ADD TO BROWSE oListBox DATA &cTemp HEADER aTitles[ i ] OEM ALIGN LEFT WIDTH aWidths[ i ] PIXELS
NEXT
[/code:4dwuqteh]
|
Assigning columns to listbox programmatically
|
Prueba con esto?
[code:11d95pce]FOR i := 1 TO LEN( aFlds )
MakeBrow( aFld, oListBox, aTitle, aWidths, i )
NEXT i
//BLABLA
function MakeBrow( aFld, oLisBox, aTitle, aWidths, i )
local cTemp := aFlds[ i ]
ADD TO BROWSE oListBox DATA &cTemp HEADER aTitles[ i ] OEM ALIGN LEFT WIDTH aWidths[ i ] PIXELS
return nil
[/code:11d95pce]
|
Assigning columns to listbox programmatically
|
Hi, maybe I was misunderstood. The code DOES WORK, I am just not sure if it is 'good' programming practice to use a ¯o like this. If its ok, I will leave it as it is because it works.
What 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.
|
Assigning columns to listbox programmatically
|
Ollie,
> I want the columns shown to be different
You just need to refresh the browse oBrowse:Refresh()
|
Assigning columns to listbox programmatically
|
Ok, I get that, but how do I REMOVE the columns I don't want, so I can add new columns?
|
Assigning columns to listbox programmatically
|
Ollie,
oBrowse:aColumns := {}
... add columns
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
If I sub-class class TPrinter;
[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]
What is the correct way to assign var lUseHaruPdf?
xPrinter():lUseHaruPdf or TPrinter():lUseHaruPdf
TIA
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
Dear Hua,
::lUseHaruPdf
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
[quote:2d2d8to5]xPrinter():lUseHaruPdf or TPrinter():lUseHaruPdf[/quote:2d2d8to5]
You can use any.
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
Thanks for the replies Antonio and Rao
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
I get this error message
[code=fw:25vukz9c]<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:25vukz9c]
:lUnderlineHeader is a data in my xprinter class that inherits from tprinter.
Where did I go wrong?
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
When tested using lUseFWPdf, pdfs are generated but
1. User is prompted for a file name for the pdf
2. The word "FiveWin Report" is embedded into the pdf
Would still like to use Haru pdf to see what size is the pdf generated
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
[quote="hua":mehhlj4s]I get this error message
[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]
:lUnderlineHeader is a data in my xprinter class that inherits from tprinter.
Where did I go wrong?[/quote:mehhlj4s]
You have used a DATA that is not in FWPDF class.
If you inherit from TPrinter, you should know how to match with FWPDF class thoroughly
If not, do not use harupdf
My personal advice is not to use derived class. Finally, it is upto you.
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
I see so when lUseHaruPdf = .t. I am actually using FWPDf not TPrinter.
Understood. Thanks
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
Is it possible to print to a pdf driver such as Microsoft Print To Pdf, CutePdf, etc programmatically without prompting user for filename?
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
[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]
By default, FWH uses Microsoft Word to read emf and print as PDF.
The programmer does not have to do anything for it.
There is really no need to search for alternatives.
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
To avoid having to re-code my report routine I tried using :lUseFWPdf
[code=fw:2hukgzt4]<div class="fw" id="{CB}" style="font-family: monospace;"> XTPrinter<span style="color: #000000;">(</span><span style="color: #000000;">)</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]
I don't know why the dialog box asking for pdf name appear. Is there something wrong with my pdf name?
[quote:2hukgzt4]"F:\test\harbour\pay2023_\PCB\2023\ABD RAHMAN BIN KASSI_202305.pdf"[/quote:2hukgzt4]
TIA
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
We can not comment on your derived class.
but
[code=fw:1po7ov5q]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">PRINT</span> oPrn FILE cPdf</div>[/code:1po7ov5q]
does not ask for a file name again.
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
Thanks for the info Rao. The dialog now no longer appears
Unfortunately when it's printing in a loop (a bunch of staffs tax calculation), it will eventually generates internal error
[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 /> <span style="color: #000000;">Exception</span> Code:<span style="color: #000000;">C0000005</span> ACCESS_VIOLATION<br /> Exception Address:0059EC3C<br /> EAX:<span style="color: #000000;">00000001</span> EBX:<span style="color: #000000;">00000000</span> ECX:0000000A EDX:<span style="color: #000000;">00000000</span><br /> ESI:0000000A EDI:0019E1E8 EBP:0019E1B4<br /> CS:<span style="color: #000000;">EIP</span>:<span style="color: #000000;">0023</span>:0059EC3C SS:<span style="color: #000000;">ESP</span>:002B:0019E1A4<br /> DS:002B ES:002B FS:<span style="color: #000000;">0053</span> GS:002B<br /> Flags:<span style="color: #000000;">00210246</span><br /> Exception Parameters: <span style="color: #000000;">00000000</span> <span style="color: #000000;">00000012</span><br /> 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 /> 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 /> C stack:<br /> <span style="color: #000000;">EIP</span>: <span style="color: #000000;">EBP</span>: <span style="color: #000000;">Frame</span>: <span style="color: #000000;">OldEBP</span>, RetAddr, Params...<br /> 0059EC3C 0019E1B4 0019E1D0 0059FC87 0019E1E8 0000000A <span style="color: #000000;">00000000</span> <span style="color: #000000;">00000001</span> 008ED100<br /> 0059FC87 0019E1D0 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 /> 005A06C7 0019E70C 0019E72C 0059EC25 0059EC2C <span style="color: #000000;">00000000</span> 007652D7 <span style="color: #000000;">00000000</span> <span style="color: #000000;">00000000</span> 0019E740<br /> 0059EC25 0019E72C 0019E740 00413B6C <span style="color: #000000;">00000000</span> 007652D7 007652DC<br /> 00413B6C 0019E740 0019E75C 004BFEDC 000000AD <span style="color: #000000;">00000062</span> 011F60E4 <span style="color: #000000;">00000000</span> <span style="color: #000000;">00000000</span><br /> 004BFEDC 0019E75C 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 /> 004B9CE6 0019E870 0019E880 004139CC 00763FD6 <span style="color: #000000;">00763220</span><br /> 004139CC 0019E880 0019E8A0 004C0099 008ED1BC 000000A5 <span style="color: #000000;">00000062</span> 011F60E4 0003002F 000000B4<br /> 004C0099 0019E8A0 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 /> 004B9DA4 0019E9B4 0019E9C4 0041396C 00763A54 <span style="color: #000000;">00763220</span><br /> 0041396C 0019E9C4 0019E9E0 004BFEDC 000000A1 <span style="color: #000000;">00000062</span> 011F60E4 <span style="color: #000000;">00000000</span> 0000003E<br /> 004BFEDC 0019E9E0 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 /> 004B9C63 0019EAF4 0019EB04 <span style="color: #000000;">00405154</span> 006335F8 0063176C<br /> <span style="color: #000000;">00405154</span> 0019EB04 0019EB20 004BFEDC <span style="color: #000000;">00000092</span> 0000005E 011F629C <span style="color: #000000;">00000000</span> <span style="color: #000000;">00000195</span><br /> 004BFEDC 0019EB20 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 /> 004B9C63 0019EC34 0019EC44 004060C4 006542C7 <span style="color: #000000;">00653878</span><br /> 004060C4 0019EC44 0019EC64 004C0099 008ED1BC 0000008E 0000005E 011F629C 0018002C <span style="color: #000000;">00000130</span><br /> 004C0099 0019EC64 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 /> 004B9DA4 0019ED78 0019ED88 004060AC <span style="color: #000000;">00654254</span> <span style="color: #000000;">00653878</span><br /> 004060AC 0019ED88 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;">(</span>x86<span style="color: #000000;">)</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;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</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;">(</span><span style="color: #000000;">180</span><span style="color: #000000;">)</span> in .\source\<span style="color: #00C800;">function</span>\PRV2PDF.PRG<br />Called <span style="color: #0000ff;">from</span> FWSAVEPREVIEWTOPDF<span style="color: #000000;">(</span><span style="color: #000000;">62</span><span style="color: #000000;">)</span> in .\source\<span style="color: #00C800;">function</span>\PRV2PDF.PRG<br />Called <span style="color: #0000ff;">from</span> XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">405</span><span style="color: #000000;">)</span> in .\xprinter.PRG<br />Called <span style="color: #0000ff;">from</span> TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> in .\prnpcb.PRG<br />Called <span style="color: #0000ff;">from</span> TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> in .\prnpcb.PRG<br />Called <span style="color: #0000ff;">from</span> <span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> in .\taxcalc2.PRG<br />Called <span style="color: #0000ff;">from</span> TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> in .\taxcalc2.PRG<br />Called <span style="color: #0000ff;">from</span> P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span> in .\p_calc.PRG<br />Called <span style="color: #0000ff;">from</span> ENDPAY<span style="color: #000000;">(</span><span style="color: #000000;">405</span><span style="color: #000000;">)</span> in .\endpay.PRG<br />Called <span style="color: #0000ff;">from</span> CHKEND<span style="color: #000000;">(</span><span style="color: #000000;">202</span><span style="color: #000000;">)</span> in .\pay.PRG<br />Called <span style="color: #0000ff;">from</span> <span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>PAY<span style="color: #000000;">(</span><span style="color: #000000;">63</span><span style="color: #000000;">)</span> in .\pay.PRG<br />Called <span style="color: #0000ff;">from</span> TBTNBMP:<span style="color: #0000ff;">CLICK</span><span style="color: #000000;">(</span><span style="color: #000000;">705</span><span style="color: #000000;">)</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;">(</span><span style="color: #000000;">991</span><span style="color: #000000;">)</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;">(</span><span style="color: #000000;">1791</span><span style="color: #000000;">)</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;">(</span><span style="color: #000000;">2042</span><span style="color: #000000;">)</span> in <span style="color: #0000ff;">btnbmp</span>.prg<br />Called <span style="color: #0000ff;">from</span> _FWH<span style="color: #000000;">(</span><span style="color: #000000;">3559</span><span style="color: #000000;">)</span> in .\source\classes\<span style="color: #0000ff;">WINDOW</span>.PRG<br />Called <span style="color: #0000ff;">from</span> WINRUN<span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span><br />Called <span style="color: #0000ff;">from</span> TWINDOW:<span style="color: #0000ff;">ACTIVATE</span><span style="color: #000000;">(</span><span style="color: #000000;">1097</span><span style="color: #000000;">)</span> in .\source\classes\<span style="color: #0000ff;">WINDOW</span>.PRG<br />Called <span style="color: #0000ff;">from</span> PAY<span style="color: #000000;">(</span><span style="color: #000000;">156</span><span style="color: #000000;">)</span> in .\pay.PRG<br />------------------------------------------------------------------------<br /> </div>[/code:3h1i4uu9]
Have a bunch of this message in pay.log
[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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <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;">[</span> hFont : <span style="color: #000000;">0</span><span style="color: #000000;">]</span> <span style="color: #000000;">(</span> nCount : <span style="color: #000000;">0</span> <span style="color: #000000;">)</span><br /> <-TFONT:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">297</span><span style="color: #000000;">)</span> <-TPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">498</span><span style="color: #000000;">)</span> <-XTPRINTER:<span style="color: #000000;">END</span><span style="color: #000000;">(</span><span style="color: #000000;">374</span><span style="color: #000000;">)</span> <-XPRINTEND<span style="color: #000000;">(</span><span style="color: #000000;">408</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #000000;">PRINTRESIDENT</span><span style="color: #000000;">(</span><span style="color: #000000;">304</span><span style="color: #000000;">)</span> <-TPRNPCB:<span style="color: #00C800;">PRINT</span><span style="color: #000000;">(</span><span style="color: #000000;">31</span><span style="color: #000000;">)</span> <-<span style="color: #000000;">(</span>b<span style="color: #000000;">)</span>TPCBCCM<span style="color: #000000;">(</span><span style="color: #000000;">1102</span><span style="color: #000000;">)</span> <-TPCBCCM:<span style="color: #000000;">DEBUGCALC</span><span style="color: #000000;">(</span><span style="color: #000000;">0</span><span style="color: #000000;">)</span> <-P_CALC<span style="color: #000000;">(</span><span style="color: #000000;">1999</span><span style="color: #000000;">)</span><br /> ------------------------------------------------------------ <br /> </div>[/code:3h1i4uu9]
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
Using original printer class or derived class?
Using 'FILE cPdf" ?
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
>Using original printer class or derived class?
Using derived class as I don't want to rewrite the report.
>Using 'FILE cPdf" ?
Yes
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
[quote:27up9e7a]Unfortunately when it's printing in a loop (a bunch of staffs tax calculation), it will eventually generates internal error
[/quote:27up9e7a]
After how many times in the loop?
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
About 18 and some of the generated pdfs are blank with a filesize of 1.4KB only
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
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.
I have used native fwh library without modifications.
I tested it with FWH1912.
[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;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> nMax := <span style="color: #000000;">200</span><br /> <span style="color: #00C800;">local</span> bData, cData, cPdf, n, nSecs<br /> <span style="color: #00C800;">local</span> cLog := cFileSetExt<span style="color: #000000;">(</span> ExeName<span style="color: #000000;">(</span><span style="color: #000000;">)</span>, <span style="color: #ff0000;">"log"</span> <span style="color: #000000;">)</span><br /><br /> FWNumFormat<span style="color: #000000;">(</span> <span style="color: #ff0000;">"E"</span>, .t. <span style="color: #000000;">)</span><br /> TPrinter<span style="color: #000000;">(</span><span style="color: #000000;">)</span>:<span style="color: #000000;">lUseHaruPDF</span> := .t.<br /><br /> FERASE<span style="color: #000000;">(</span> cLog <span style="color: #000000;">)</span><br /> AEVAL<span style="color: #000000;">(</span> DIRECTORY<span style="color: #000000;">(</span> <span style="color: #ff0000;">"CUST???.PDF"</span> <span style="color: #000000;">)</span>, <span style="color: #000000;">{</span> |a| FERASE<span style="color: #000000;">(</span> a<span style="color: #000000;">[</span> <span style="color: #000000;">1</span> <span style="color: #000000;">]</span> <span style="color: #000000;">)</span> <span style="color: #000000;">}</span> <span style="color: #000000;">)</span><br /><br /> USE CUSTOMER <span style="color: #00C800;">NEW</span> VIA <span style="color: #ff0000;">"DBFCDX"</span><br /> GO TOP<br /><br /> bData := &<span style="color: #000000;">(</span> <span style="color: #ff0000;">"{||{ID,TRIM(FIRST) + ', ' + LAST,STREET,CITY,STATE,AGE,SALARY}}"</span> <span style="color: #000000;">)</span><br /><br /> nSecs := SECONDS<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> MsgRun<span style="color: #000000;">(</span> <span style="color: #ff0000;">"CUST000.PDF"</span>, FWVERSION, <span style="color: #000000;">{</span> |oDlg| cPdf := MultiPDF<span style="color: #000000;">(</span> nMax, bData, oDlg <span style="color: #000000;">)</span> <span style="color: #000000;">}</span> <span style="color: #000000;">)</span><br /> nSecs := SECONDS<span style="color: #000000;">(</span><span style="color: #000000;">)</span> - nSecs<br /><br /> ? <span style="color: #ff0000;">"Created "</span> + cValToChar<span style="color: #000000;">(</span> nMax <span style="color: #000000;">)</span> + <span style="color: #ff0000;">" pdfs in "</span> + cValToChar<span style="color: #000000;">(</span> nSecs <span style="color: #000000;">)</span> + <span style="color: #ff0000;">" seconds"</span><br /><br /> HtmlView<span style="color: #000000;">(</span> TrueName<span style="color: #000000;">(</span> cPdf <span style="color: #000000;">)</span> <span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">if</span> File<span style="color: #000000;">(</span> cLog <span style="color: #000000;">)</span><br /> WinExec<span style="color: #000000;">(</span> <span style="color: #ff0000;">"notepad.exe "</span> + cLog <span style="color: #000000;">)</span><br /> <span style="color: #00C800;">else</span><br /> ? cLog + <span style="color: #ff0000;">" not created"</span><br /> <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;">(</span> nMax, bData, oDlg <span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> cPdf,cData,n<br /><br /> <span style="color: #00C800;">for</span> n := <span style="color: #000000;">1</span> <span style="color: #0000ff;">to</span> nMax<br /><br /> cData := FW_ArrayAsList<span style="color: #000000;">(</span> Eval<span style="color: #000000;">(</span> bData <span style="color: #000000;">)</span>, CRLF, .t. <span style="color: #000000;">)</span><br /> cPdf := <span style="color: #ff0000;">"CUST"</span> + STRZERO<span style="color: #000000;">(</span> n, <span style="color: #000000;">3</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">)</span> + <span style="color: #ff0000;">".PDF"</span><br /> <span style="color: #B900B9;">//</span><br /> oDlg:<span style="color: #000000;">cMsg</span> := cPdf<br /> oDlg:<span style="color: #0000ff;">Refresh</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> SysRefresh<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #B900B9;">//</span><br /> MakePDF<span style="color: #000000;">(</span> cData, cPdf <span style="color: #000000;">)</span><br /><br /> SKIP<br /> <span style="color: #00C800;">if</span> EOF<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> GO TOP<br /> <span style="color: #00C800;">endif</span><br /> <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;">(</span> cData, cPdf <span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> oPrn, oFont<br /> <span style="color: #00C800;">local</span> nRow, nCol<br /><br /> <span style="color: #00C800;">PRINT</span> oPrn FILE cPdf<br /><br /> <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 /> <span style="color: #0000ff;">PAGE</span><br /> <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 /> @ 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 /> <span style="color: #0000ff;">FONT</span> oFont<br /><br /> <span style="color: #00C800;">next</span>; <span style="color: #00C800;">next</span><br /> <span style="color: #0000ff;">ENDPAGE</span><br /> <span style="color: #0000ff;">ENDPRINT</span><br /><br /> <span style="color: #0000ff;">RELEASE</span> <span style="color: #0000ff;">FONT</span> oFont<br /><br /> oPrn := <span style="color: #00C800;">nil</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span></div>[/code:qgnz4dkp]
You can try coping this program to fwh\samples folder and try building with buildh.bat or buildx.bat.
|
Assigning lUseHaruPdf when TPrinter is sub-classed
|
Thanks Rao.
I was using :lUseFWPdf instead of :lUseHaruPdf in my test that ends up with internal error.
I'll try to slowly shift to :lUseHaruPdf and see how it goes
|
Assigning object xBrowse
|
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:
[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]
So 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.
regards
|
Assignment = or := ?
|
I have noticed that in FIVEWIN the assign is done with = and := .
Could someone explain when to use = and when := .
Thanks in advance
Otto
|
Assignment = or := ?
|
= is the normal assignment operator while := in the inline version of the same operator. As an example:
REDEFINE BUTTON ACTION x = 1 // wrong!
REDEFINE BUTTON ACTION x := 1 // ok!
x = 1 // ok!
x := 1 // ok! It's the same
a = b = 1 // means a = .T. if b = 1 or .F. if b != 1
a = b := 1 // means a = 1 and b = 1
a := b := 1 // the same as above
EMG
|
Assignment = or := ?
|
Otto,
If you have the Clipper help file, there are good descriptions in there.
Regards,
James
|
Assignment = or := ?
|
Hello Enrico, hello James,
Thank you for explaining to me.
For example in TRBGroup-class assignments are made with := in TBtnBmp classe with =
( VB6 style which I don’t like). I thought that there is maybe a difference which I am not aware of.
Best regards,
Otto
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.