FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Converting an old Clipper app
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Converting an old Clipper app
Posted: Mon Jan 12, 2015 09:26 AM

On my old clipper app I have this line

xpos := substr(&xlinha.[xn],1,1) + "x" + substr(&xlinha.[xn],2,1)

How I can converte it ?

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: Converting an old Clipper app
Posted: Mon Jan 12, 2015 10:11 AM
Silvio.Falconi wrote:On my old clipper app I have this line

xpos := substr(&xlinha.[xn],1,1) + "x" + substr(&xlinha.[xn],2,1)

How I can converte it ?


Prueba asi
Code (fw): Select all Collapse
 xpos := substr(&(xlinha).[xn],1,1) + "x" + substr(&(xlinha).[xn],2,1)
Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: Converting an old Clipper app
Posted: Wed Jan 14, 2015 08:25 AM

ok seem to tun

how I can resolve this

I have these clipper commands:

restore from &xalfmem. additive

save to (xalfmem) all like ?x?

inkey(1.2)

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
Re: Converting an old Clipper app
Posted: Wed Jan 14, 2015 01:18 PM
Try:

Code (fw): Select all Collapse
restore from &(xalfmem) additive

save to &(xalfmem) all like *x*
FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10

Continue the discussion