Search found 30 matches: trimmed

Return to advanced search

Re: Recortar imagen jpg

No vale Sr. Joao, yo preciso un recorte "trimmed" y no un recorte de unas posiciones determinadas
Gracias en todo caso
by paquitohm
Tue Feb 13, 2024 3:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Recortar imagen jpg
Replies: 9
Views: 287

New FTDN November/Noviembre (FWH 21.11)

... like TABs, CRLF(EOL), EOF, EOpage, etc. If an optional list of characters is provided in the second parameter, these characters also are trimmed. Eg: cStr := CRLF + CHR(9) + "<<<*** GOOD ***>>>" + CRLF + CHR( 26 ) FW_AllTrim( cStr, "<>*" ) --> ...
by Antonio Linares
Tue Nov 30, 2021 7:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre (FWH 21.11)
Replies: 2
Views: 1014

New FTDN February/Febrero 2021 (FWH 21.02)

... values is a memo-field. fixed now. * FW_ArrayAsList( aArray, [cDelim = ","], [lTrim = .f.] ) If the new 3rd param is .t., strings are trimmed. * New function FW_CRC8( cStr ) --> nCRC8 (source\function\fwcrc8.c) http://forums.fivetechsupport.com/viewtopic.php?f=6&t=40052&p=239014#p239014 ...
by Antonio Linares
Wed Mar 24, 2021 8:56 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 1479

Re: TGet: RIGHT clause problem

... style and this is how Windows displays text with trailing spaces with this style. Does not "trim" the string and then right-align the trimmed string. However, we can think of an enhancement by trimming the string and right-align when the Get does not have focus. Just thinking ... Whether ...
by nageswaragunupudi
Mon Oct 26, 2020 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet: RIGHT clause problem
Replies: 15
Views: 1297

New FTDN April/Abril 2020 (FWH 20.04)

... * XBROWSE: - New DATA lVarChar in TXbrwColumn class: While editing array browses user can enter longer text than the present value and the text is trimmed while saving. Applies only for character values in arrays. - Positioning of BtnAction in GetBar when the application is themed is not correct. ...
by Antonio Linares
Sun May 03, 2020 12:41 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2020 (FWH 20.04)
Replies: 1
Views: 2206

Re: Como borrar Varios Registros utilizando fwhMariaDB

Is codigo VarChar(6) ?

Such behavior can be expected when you save data with trailing spaces.
In any RDBMS like MySql, it is a good practice to save trimmed data.

Please try
DELETE FROM <table> WHERE RTRIM(codigo) = '<yourvalue>'
by nageswaragunupudi
Sat Oct 19, 2019 9:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como borrar Varios Registros utilizando fwhMariaDB
Replies: 2
Views: 440

Re: help on string comparisons

Hi Antonino
Database is BD2 on iSeries IBM and field CODICE is CHAR(15) (not VARCHAR) but when recordset read table chars are trimmed:
Field CHAR(15) in DBU = "123456abc "
field read = "123456abc".
by damianodec
Fri Oct 18, 2019 1:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help on string comparisons
Replies: 4
Views: 686

Re: help on string comparisons

which database are you using? the column is char(15) or varchar(15)?
On our application on SQL Server we have all column "char" and the spaces are not trimmed.
they are trimmed with varchar
by AntoninoP
Fri Oct 18, 2019 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: help on string comparisons
Replies: 4
Views: 686

New FTDN September/Septiembre 2019 (FWH 19.09)

... ) --> sum of the field Returns zero if the field is not numeric. * function FW_DbfToExcel(). Enhancement: All values of character fields are trimmed while exporting to Excel. * function FW_ArrayToDBF(). When storing into a memo field of DBFCDX, the data can be an array also. * XBROWSE: - ...
by Antonio Linares
Sun Oct 13, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 2911

Re: Search on customers.dbf

... use 3 fields: First, last, and company names. If the customer is not affiliated with a company, then I put their name, ( Last + First, NOT trimmed ... leave the spacing in place ) into the company field. I use the index on the Company field for searches and ordering in the xbrowse. It NEVER ...
by TimStone
Tue Mar 19, 2019 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search on customers.dbf
Replies: 12
Views: 2107

:Setfilter from a defined substring ?

... ) , nAge1, nAge2, dDate1, dDate2, lMarried1, lMarried2 ) // field < oCust:last > needed to be filtered // 'AC' must be replaced with the trimmed -> cLast ( from the get-field ) // 2 must be replaced with LEN( cLast ) // works with fixed values :!: oCust:SetFilter( " SUBSTR( UPPER( ...
by ukoenig
Tue Feb 12, 2019 5:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: :Setfilter from a defined substring ?
Replies: 6
Views: 1033

New FTDN Oct. 2018 (FWH 18.10)

* TDATABASE: - Data was being trimmed while saving to memo fields. Now data is saved along with trailing spaces if any without trimming. http://forums.fivetechsupport.com/viewtopic.php?f=6&t=36178 * Enhanced Active command of Dialog: ...
by Antonio Linares
Sun Nov 11, 2018 11:24 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN Oct. 2018 (FWH 18.10)
Replies: 5
Views: 4249

Re: ReFilter() does not accept empty string?

... has status=" " How does I Refilter with empty string? Refilter does not work with empty string. Very likely the value that is stored is trimmed and is "" or NULL but not " ". Only way is oRs:SetFilter( "PADR( status, 1 ) = ' '" ) My advice is not to rely ...
by dutch
Thu May 31, 2018 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ReFilter() does not accept empty string?
Replies: 5
Views: 629

Re: ReFilter() does not accept empty string?

... has status=" " How does I Refilter with empty string? Refilter does not work with empty string. Very likely the value that is stored is trimmed and is "" or NULL but not " ". Only way is oRs:SetFilter( "PADR( status, 1 ) = ' '" ) My advice is not to rely ...
by nageswaragunupudi
Thu May 31, 2018 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ReFilter() does not accept empty string?
Replies: 5
Views: 629

Alignment of column CHAR in Xbrowse

Hi all

Why when xBrowse display a column of type char (ALIG LEFT) are trimmed left spaces ?
Is it possible fix this ?

Es.: cStr := " Test" align is "Test"

TIA
by mauri.menabue
Tue Jul 25, 2017 11:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Alignment of column CHAR in Xbrowse
Replies: 3
Views: 603
Next

Return to advanced search