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
FiveWin 2203, xHarbour 10264
cFileExt
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: cFileExt
!= is the opposite of =cpheraclio wrote:? cExt == cExt2
? cExt != cExt2
!= is not the opposite of ==
!( == ) is the opposite of ==
-
- Posts: 11
- Joined: Thu Mar 17, 2022 6:47 pm
Re: cFileExt
Gracias por responder.Enrico Maria Giordano wrote:!= is the opposite of =cpheraclio wrote:? cExt == cExt2
? cExt != cExt2
!= is not the opposite of ==
!( == ) is the opposite of ==
? cExt == cExt2 FALSO
? cExt != cExt2 FALSO
? cExt2 == cExt FALSO
? cExt2 != cExt VERDADERO
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: cFileExt
? !( cExt == cExt2 )cpheraclio wrote:? cExt == cExt2 FALSO
? cExt != cExt2 FALSO