Migrating to Harbour
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Migrating to Harbour
Antonio,
great! Now I can go on with my tests!
I'll keep you informed...
EMG
great! Now I can go on with my tests!
I'll keep you informed...
EMG
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Migrating to Harbour
Another Harbour bug. The following sample:
gives this compilation error:
While xHarbour compiles correctly.
Any ideas?
EMG
Code: Select all
FUNCTION MAIN()
LOCAL n := "01"
PRIVATE cVar01 := "Test"
? cVar&n
INKEY( 0 )
RETURN NIL
Code: Select all
Harbour 3.2.0dev (r1501292255)
Copyright (c) 1999-2015, http://harbour-project.org/
BUG.prg(7) Error E0042 Macro of declared symbol 'CVAR&N'
1 error
No code generated.
Any ideas?
EMG
Re: Migrating to Harbour
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Migrating to Harbour
Cristobal,
thank you. Is this the correct way?
EMG
thank you. Is this the correct way?
Code: Select all
FUNCTION MAIN()
LOCAL n := "01"
PRIVATE cVar01 := "Test"
? &( "cVar" + n )
INKEY( 0 )
RETURN NIL
Re: Migrating to Harbour
Look
Code: Select all
MEMVAR cVar01
FUNCTION MAIN()
LOCAL n := "01"
PRIVATE cVar01 := "Test"
? &( "cVar" + n )
INKEY( 0 )
RETURN NIL
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- James Bott
- Posts: 4654
- Joined: Fri Nov 18, 2005 4:52 pm
- Location: San Diego, California, USA
- Contact:
Re: Migrating to Harbour
Enrico,
Are you still using PRIVATEs?
James
Are you still using PRIVATEs?
James
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Migrating to Harbour
James,
EMG
No, but I have older applications to maintain.James Bott wrote:Are you still using PRIVATEs?
EMG
- James Bott
- Posts: 4654
- Joined: Fri Nov 18, 2005 4:52 pm
- Location: San Diego, California, USA
- Contact:
Re: Migrating to Harbour
Enrico,
Thank goodness. You had me worried.
Those older apps must be really old.
James
Thank goodness. You had me worried.
Those older apps must be really old.
James
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Migrating to Harbour
James,
EMG
James Bott wrote:Thank goodness. You had me worried.
19xxJames Bott wrote:Those older apps must be really old.
EMG
Re: Migrating to Harbour
Yeah some of us are getting up there in years.
Tim Stone
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
Re: Migrating to Harbour
What do you mean getting? dBase II cp/m
Re: Migrating to Harbour
Gale,
Several years ago I attended some training sessions held by Microsoft, and all the people there were commenting how they had to earn their retirement by 35 years of age. Beyond that, they believed, no one could possibly continue as a programmer.
When I explained I had been programming, as my 3rd profession, for over 30 years, they didn't think that was possible.
And I do remember starting my first applications using dbase II, CP/M and the runtime licenses from Ashton Tate. Because they were close, it was always fun to go to their offices for "training" sessions.
A few years ago I went to the Microsoft museum and everything on display had been in my "arsenal" at one time or another. I thought maybe I should take residence in a display case with all the other dinosaurs.
Tim
Several years ago I attended some training sessions held by Microsoft, and all the people there were commenting how they had to earn their retirement by 35 years of age. Beyond that, they believed, no one could possibly continue as a programmer.
When I explained I had been programming, as my 3rd profession, for over 30 years, they didn't think that was possible.
And I do remember starting my first applications using dbase II, CP/M and the runtime licenses from Ashton Tate. Because they were close, it was always fun to go to their offices for "training" sessions.
A few years ago I went to the Microsoft museum and everything on display had been in my "arsenal" at one time or another. I thought maybe I should take residence in a display case with all the other dinosaurs.
Tim
Tim Stone
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
-
- Posts: 3
- Joined: Wed Oct 26, 2016 6:06 pm
Re: Migrating to Harbour
Tengo una cita en el sat para pagar impuestos de mi negocio.