It has not arrived
Could you resend it ?
It has not arrived
Could you resend it ?
Antonio Linares wrote:Dear Enrico and Karinha,Very good Master:
https://github.com/harbour/core/pull/358
Thank you!
FiveTechSoft commented 3 hours agoTks.
Harbour can't be showing 2021. We are on 2024 and Harbour remains very much alive.
ACWoo, actually ECC2024.exe is slower than ECC2015.exe, ECC2024.exe buttons disappear. Are you using the TRANSPARENT command in the dialog? Is it a hassle for you to show the SOURCE(.prg) for testing?
ACWoo, en realidad ECC2024.exe es más lento que ECC2015.exe, los botones de ECC2024.exe desaparecen. ¿Estás utilizando el comando TRANSPARENTE en el cuadro de diálogo? ¿Le resulta complicado mostrar la FUENTE (.prg) para realizar pruebas?
El antivirus AVG no detectó virus.
AVG anti-virus did not detect viruses.
Regards, saludos.
Hi
If a mouse is put on top of a button, the button will appear.
Regards
ACWoo
Using FWH2404, bcc770 and hb30
Dear ACWoo,
Please provide the source code to build it and test it locally or an example PRG to test it.
many thanks
Hi
The problem is with skinbuttos().
How to solve this problem.
Regards
ACWoo
Using FWH2407 + bcc770
acwoo1 wrote: Hihttps://forums.fivetechsupport.com/~fivetec1/forums/viewtopic.php?p=104372#p104372
The problem is with skinbuttos().
How to solve this problem.
Regards
ACWoo
Using FWH2407 + bcc770
Need to change from:
@ -0.361, -0.1 group to 13.945, 44.714
@ -0.361, -0.1 group to 12.545, 44.714
@ -0.361, -0.1 group to 10.945, 44.714
to:
@ 0, 0 group to 28.03, 89.160
@ 0, 0 group to 25.22, 89.160
@ 0, 0 group to 22.00, 89.160
so that the lines are OK.
How to solve the problem for other dialog box lines.
ACWoo
Using FWH2404 + bcc770
Dear Acwoo,
you can use these formulas:
For the x-coordinate:
x new =(S x ×x old )+T x
​x new =(2.007×x old )+0.041
For the y-coordinate:
y new =y old +T y
​y new =y old +44.446
Where:
x old ,y old are the initial coordinates.
x new ,y new are the new, transformed coordinates.
Example:
To verify the formulas, let's apply them to the initial coordinates for the first line:
x new =(2.007×13.945)+0.041=27.989+0.041=28.03 (Matches)
y new =44.714+44.446=89.160 (Matches)
new_x ≈ 2.01 * old_x - 0.016 * old_y + 0.724
new_y ≈ 0 * old_x + 1.989 * old_y + 0.199