Search found 532 matches: transform

Return to advanced search

Re: FW_SaveImage

I wanted to divide the hBmp into 3 parts - 33%, 33% and 34%
How can I do this using the FW_Transform Bitmap function ?
by Natter
Fri Feb 16, 2024 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SaveImage
Replies: 8
Views: 452

Re: Transform doubt

paquitohm wrote:Try so:

Code: Select all  Expand view
nVar:= 14000
cVar:= Transform(nVar, "@E 999,999.999")


Regards


Thanks, but in this case cVar type change to caracter.
by wartiaga
Sun Jan 28, 2024 9:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transform doubt
Replies: 2
Views: 346

Re: Transform doubt

Try so:

Code: Select all  Expand view
nVar:= 14000
cVar:= Transform(nVar, "@E 999,999.999")


Regards
by paquitohm
Sun Jan 28, 2024 5:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transform doubt
Replies: 2
Views: 346

Transform doubt

Hi,

I have a numeric var with content 14,000 How can I transform this value into 14.000,000?
Thanks in advance.
by wartiaga
Sun Jan 28, 2024 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transform doubt
Replies: 2
Views: 346

Re: I'm not asking for the moon...

... are numeric ( 6 digit , 2 decimals) 1. at init see only a zero "0" at Right, so I not must see 0.00 2. when digit 12345 the get must transform to 123,45, not with dot "." but with "," comma 3. if the user digit another number sample 7 the get must write 123,47 ...
by Silvio.Falconi
Thu Jan 18, 2024 11:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: I'm not asking for the moon... Resolved!!
Replies: 24
Views: 2156

Insert a TUrlLink into xbrowse

It is possible to insert a popup menu into a normal text field of an xbrowse and transform the text with underlined text, for example: https://i.postimg.cc/85Lrf8Zy/kk.jpg and when the end user hovers over the highlight text, and clicking on it could ...
by Silvio.Falconi
Fri Dec 15, 2023 11:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert a TUrlLink into xbrowse
Replies: 0
Views: 499

Re: Add a Checkbox() column

... the record that I see in ths xbrowse for instance this is the penultimane columnt is define in this way oCol = oBrw:AddCol() oCol:bStrData = { || TRANSFORM( field->imp_eff, "@ZE 999,999,999.99" ) } oCol:cHeader = "TOTALE CLIENTE" oCol:nEditType = EDIT_NONE oCol:nWidth = ...
by MarcoBoschi
Mon Dec 11, 2023 12:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add a Checkbox() column
Replies: 8
Views: 854

Re: New FTDN October/Octubre 2023 (FWH 23.10)

... win32 CharUpper() y CharLower() funcionan con codificaciones ANSI y UTF8. Útil para caracteres con acento en el idioma WU, cómo diéresis. Mientras TRANSFORM( cUtf8, "@!" ) no funciona, FW_TRANSFORM( cUtf8, "@!" ) funciona. * Corrección: El ejemplo samples\testtray.prg funciona ...
by Antonio Linares
Sun Dec 03, 2023 4:46 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3906

Number to a format string

Hi,

I need to transform the number 7974563 into the string "7 974 563". Is it possible to do this through Picture templates ?
by Natter
Mon Nov 27, 2023 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Number to a format string
Replies: 2
Views: 317

Tget /tsay disable/enable

Is it possible to transform a Tsay or Tget control when it is disabled and create a rectangle with the dimensions of the control and fill it with a custom color or brush? sample https://i.postimg.cc/SKJ77PDD/uu.png ...
by Silvio.Falconi
Thu Nov 09, 2023 7:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tget /tsay disable/enable
Replies: 5
Views: 367

Re: change Border color BTNBMP

... and so on. Now compiling with the new version I no longer have the problem of bad display of btnbmp when they are disabled. But I would like to transform the button as I do for the last one (the one you see on the right with the lines), and by doing this I also have to modify the border because ...
by Silvio.Falconi
Thu Nov 09, 2023 7:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change Border color BTNBMP
Replies: 2
Views: 283

Interesting discussion with ChtGPT

... possible that simpler languages or approaches might see a renaissance in the future, especially as AI technologies become more integrated and transform the development process. However, it will also be important to strike a balance between simplicity and capability, ensuring developers still ...
by Otto
Mon Nov 06, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1244

New FTDN October/Octubre 2023 (FWH 23.10)

... to win32 API CharUpper() and CharLower() works with both ANSI and UTF8 encodings. Useful for WU language accented characters like Umlauts. While TRANSFORM( cUtf8, "@!" ) does not work, FW_TRANSFORM( cUtf8, "@!" ) works. * Fixed: samples\testtray.prg is properly working with ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3906

Re: Campos en 0 en xbrowse

... donde especificas el campo, utiliza esta sintáxis: If( nElCampo = 0, " ", nElCampo ) o esta otra: If( nElCampo = 0, " ", TransForm( nElCampo, "@E 99,999,999.99" ) )
by FiveWiDi
Mon Oct 30, 2023 4:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Campos en 0 en xbrowse
Replies: 10
Views: 633

Re: Error de Busqueda --- Solucionado

A ver lo que he hecho para resolverlo, que no se porque ya funciona pero es lo que hecho y ha funcionado, He copiado : dbseek(transform(year(Var(4)),"9999")) He borrado todas las líneas que habia puesto para la comprobación de porque no me funcionaba, la he vuelto a poner, compilar ...
by Garbi
Thu Oct 26, 2023 3:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error de Busqueda --- Solucionado
Replies: 9
Views: 509
Next

Return to advanced search