Page 1 of 1

cFileExt

Posted: Wed May 03, 2023 10:11 pm
by cpheraclio
cFile:="C:\Users\Admin\Documents\Projects\dbf\timbres.xlsx"
cExt:=Upper(cFileExt(cFile))
cExt2:="XLS"

? cExt,cExt2

? cExt == cExt2
? cExt != cExt2

En los 2 casos retorna FALSO :shock:

FiveWin 2203, xHarbour 10264

Re: cFileExt

Posted: Thu May 04, 2023 7:50 am
by Enrico Maria Giordano
cpheraclio wrote:? cExt == cExt2
? cExt != cExt2
!= is the opposite of =
!= is not the opposite of ==
!( == ) is the opposite of ==

Re: cFileExt

Posted: Thu May 04, 2023 1:40 pm
by cpheraclio
Enrico Maria Giordano wrote:
cpheraclio wrote:? cExt == cExt2
? cExt != cExt2
!= is the opposite of =
!= is not the opposite of ==
!( == ) is the opposite of ==
Gracias por responder.

? cExt == cExt2 FALSO
? cExt != cExt2 FALSO

? cExt2 == cExt FALSO
? cExt2 != cExt VERDADERO

Re: cFileExt

Posted: Thu May 04, 2023 2:14 pm
by Enrico Maria Giordano
cpheraclio wrote:? cExt == cExt2 FALSO
? cExt != cExt2 FALSO
? !( cExt == cExt2 )