Search found 27 matches: supress

Return to advanced search

Re: another bug in TDataRow: failure with datetime fields

Thank you. It works perfect.

Just a final adjustement. In xbrowse, showing this datetime field adds .000 to the final time:

Image

What is the picture to supress the final .000, so the vaule would be only:

19-11-2019 20:30.37

Thank you.
by MOISES
Wed Nov 20, 2019 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: another bug in TDataRow: failure with datetime fields [solve
Replies: 15
Views: 3426

Re: Harbour 3.2 Borland 7 32bits 2018/01/27

Ni idea how to supress that warning...

Regarding reporting it, you will never know it unless you try it :-)
by Antonio Linares
Sun Jan 28, 2018 8:34 am
 
Forum: WhatsNew / Novedades
Topic: Harbour 3.2 Borland 7 32bits 2018/01/27
Replies: 9
Views: 2901

Re: Program logic for years in a program

... process: which consists in add new year field modifying database structure. Other (worst) solution is create ~ 30 new years fields at once. It supress database modification. 2. In browse a FOR NEXT iterator, so: FOR nI:= 1980 TO 3000   // H-V   IF FieldPos("Y"+ Str(nI, 4))  ...
by hmpaquito
Thu Jan 18, 2018 12:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program logic for years in a program
Replies: 7
Views: 1960

Re: Strange behavior with dialogs

Antonio,
I solved my problem when i supress this instruction ==> SkinButtons()

If i d'nt use this function, i have no problem .

Any idea ?

Thanks .
by Jack
Tue Oct 24, 2017 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange behavior with dialogs
Replies: 3
Views: 740

Re: eMailDesktop - uses filesystem as database

... -d- Search subdirectories -z- Verbose -e Next argument is searchstring -w- Word search -o- UNIX output format Default set: [0-9A-Z_] -q- Quiet: supress normal output -h- Supress display of filename -u xxx Create a copy of grep named 'xxx' with current options set as default A regular expression ...
by nageswaragunupudi
Tue Dec 06, 2016 12:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMailDesktop - uses filesystem as database
Replies: 5
Views: 2091

Re: DatePicker´s question

Hello Joao, Many thanks. Almost done, but I want to supress the Little mark from the Dialog: http://i61.tinypic.com/2hrzo9g.png Thank you. // MBA 24.02.2015#include "FiveWin.ch"#include "constant.ch"#define DTN_FIRST ...
by MOISES
Tue Feb 24, 2015 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DatePicker´s question
Replies: 6
Views: 1258

Re: function to supress intermediate spaces

Mr Otto You just need one line        aRec[I] := CharRem( CRLF, aRec[I])  All Chr(13) and all Chr(10) will be removed, even if they are not together. select datenaFldNo := {}AEval( DbStruct(), { |a,i| If( a[ 2 ] $ 'CM', AAdd( aFldNo,...
by nageswaragunupudi
Sat Jan 31, 2015 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463

Re: function to supress intermediate spaces

Hello, is this a good and save way to remove CRLF form database-fields. Thanks in advance Otto select datenaStruc := DBStruct()go topdo while .not. eof()    aRec := getrec()    For I := 1 to len( aRec )        if aStruc[I,2] = "C"        aRec[I&#...
by Otto
Sat Jan 31, 2015 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463

Re: function to supress intermediate spaces

This is only available with xHarbour though? Both Harbour and xHarbour. We need to link \xharbour\lib\ct.lib for xHarbour and \harbour\lib\hbct.lib for Harbour. If we are using fwh, it means we already have these libs included in our link scripts though we might not have noticed. These libs contain...
by nageswaragunupudi
Fri Jan 30, 2015 5:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463

Re: function to supress intermediate spaces

EMG,

Your computer is fast--2.4 times faster than mine. I get:

3.31
0.03

Either way, charRem() is 100 times faster than strtran().

Thanks Nages.

This is only available with xHarbour though?
by James Bott
Fri Jan 30, 2015 1:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463

Re: function to supress intermediate spaces

But CharRem() function specially made for such purposes and more efficient. You're right! Look at this sample: FUNCTION MAIN()    LOCAL cSpaces := SPACE( 100000000 )    LOCAL nSec := SECONDS()    cSpaces = STRTRAN( cSpaces, " ", &q...
by Enrico Maria Giordano
Thu Jan 29, 2015 6:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463

Re: function to supress intermediate spaces

Mr James Elvira's first posting was for removing all spaces. StrTran( cString, ' '. '' ) is correct. But CharRem() function specially made for such purposes and more efficient. Mr Carlos Vargas' posting was to remove duplicate adjacent spaces. I suggested CharOne() for this instead of the code he wa...
by nageswaragunupudi
Thu Jan 29, 2015 5:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463

Re: function to supress intermediate spaces

Elvira said: Is there a function to remove the intermediate spaces from a string ? Nages said: This is a highly optimized function specially meant for removing adjacent duplicate characters. I took Elvira's statement to mean that he want to remove all spaces, but I admit it is not clear. Removing a...
by James Bott
Thu Jan 29, 2015 2:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463

Re: function to supress intermediate spaces

Esta es una función que cambia espacios de mas de uno a uno. lo uso mucho con instrucciones sql. FUNCTION TrimSpace( cString )   DO WHILE AtNum( "  ", cString ) > 0      cString := StrTran( cString, "  ", " " )   ENDDORETURN cString  For this...
by sambomb
Thu Jan 29, 2015 12:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function to supress intermediate spaces
Replies: 17
Views: 3463
Next

Return to advanced search