Search found 3 matches

by VICTOR
Mon Mar 28, 2011 9:33 am
Forum: Feature Requests and Wishlists
Topic: OOP Support (it is time)
Replies: 112
Views: 25433

Re: OOP Support (it is time)

I've just test first code in other computer (XP Pro SP3 x86) and it works... :shock:

Why this code cracks in Windows 7 64 bits? maybe a bug? a bad installation? a wrong compiler option? a clumsy guy at a computer? :oops:


Cheers,

VICTOR
by VICTOR
Mon Mar 28, 2011 2:05 am
Forum: Feature Requests and Wishlists
Topic: OOP Support (it is time)
Replies: 112
Views: 25433

Re: OOP Support (it is time)

TomS wrote:The first code works like a charm.
In which line does the error occur?
It fails in:

*MiObjeto = NewObject.MiClase

I'm using Windows 7 (x64). Tomorrow I'll test it in XP 32 bits...
by VICTOR
Mon Mar 28, 2011 1:04 am
Forum: Feature Requests and Wishlists
Topic: OOP Support (it is time)
Replies: 112
Views: 25433

Re: OOP Support (it is time)

Hi!

I'm a newbie in Purebasic and I'm testing SimpleOOP. Compiler shows an error "Invalid memory access. (read error at address 0)" with a simple example:


EnableExplicit

Class MiClase
Public Variable.l
EndClass

Define *MiObjeto.MiClase

*MiObjeto = NewObject.MiClase
*MiObjeto\Variable = 123 ...