Re: [DUG] Assembler

2010-09-27 Thread Paul Heinz
Hi Todd > movl TSparseList.FList, %eax > > but I don't think it is the equivalent of the original statement > > Function TSparseList.ForAll( ApplyFunction: Pointer {TSPAApply} ): > Integer; assembler; > Asm >MOV EAX,[EAX].TSparseList.FList >JMP TSparsePointerArray.ForAll > End;

Re: [DUG] Assembler

2010-09-27 Thread Todd
Hi Paul > Well, that should add the (hopefully) correct offset. > > You'll need to follow that with an explicit derefence: > > addl TSparseList.FList, %eax > movl (%eax), %eax > > Those two instructions combined should give the same effect as a single > > movl TSpareList.FList(%eax), %eax > > B

[DUG] DLL Win 7

2010-09-27 Thread Bob Pawley
Hi I have a .DLL that likes Win XP but doesn't like Win 7. It came in an executable and I stripped out the DLL which I tried to register in Win 7 - without luck so far. Suggestion would be welcome. Bob___ NZ Borland Developers Group - Delphi mailing

Re: [DUG] DLL Win 7

2010-09-27 Thread Rohit Gupta
Bob, You may have to post more information on it - its name, author, function etc. Rohit On 28/09/2010 11:30, Bob Pawley wrote: Hi I have a .DLL that likes Win XP but doesn't like Win 7. It came in an executable and I stripped out the DLL which I tried to register in Win 7 - without luck s

Re: [DUG] DLL Win 7

2010-09-27 Thread Jason Saggers
There where a number of interfaces changes between XP and Win7. It is most likely this dll is try to register against one of these and docent know how to... My 2c worth Sent from my iPad On 28/09/2010, at 11:30 AM, "Bob Pawley" wrote: > Hi > > I have a .DLL that likes Win XP but doesn't l

[DUG] Rad Studio XE Enterprise

2010-09-27 Thread Rohit Gupta
I see there is a special on Rad Studio XE Professional. Is the special only for the professional ? What about the enterprise version ??? Rohit ___ NZ Borland Developers Group - Delphi mailing list Post: delphi@delphi.org.nz Admin: http://delphi.or

Re: [DUG] DLL Win 7

2010-09-27 Thread Bob Pawley
It is inovagis.com I don't know the author, but the function an interface for GIS data. Bob From: Rohit Gupta Sent: Monday, September 27, 2010 5:53 PM To: NZ Borland Developers Group - Delphi List Subject: Re: [DUG] DLL Win 7 Bob, You may have to post more information on it - its name, a

Re: [DUG] Rad Studio XE Enterprise

2010-09-27 Thread Nick Fauchelle
Anyone actually using XE yet? We're using 2009 and still some buggy things in the IDE which would make me consider jumping to 2010 alone, if they were fixed eg; randomly unable to find 'controls' or some other core unit which then adds red lines to half the unit, annoying! On Tue, 2010-09-28 at

Re: [DUG] Rad Studio XE Enterprise

2010-09-27 Thread John Bird
Ha - does it still do that? (D2007 here) The instant compiler does not always find stuff. Such as TEdit for instance. As long as normal compile works I can live with it John Anyone actually using XE yet? We're using 2009 and still some buggy things in the IDE which would make me consider

Re: [DUG] Rad Studio XE Enterprise

2010-09-27 Thread Jeremy North
It's called Error Insight and there will most likely always be some differences - due to different parsers being used. It has been improved a lot since it was first introduced and the release of XE was no exception. If it fails for known components, then most likely it has failed due to something

Re: [DUG] Rad Studio XE Enterprise

2010-09-27 Thread Alister Christie
I've started porting stuff to it, most of the components that we use are working with it, but there are still a few outstanding ones that I haven't sorted yet. Our major product is currently stuck in D2007 because of one of the components it uses. Alister Christie Computers for People Ph: 04

Re: [DUG] DLL Win 7

2010-09-27 Thread Vik Vasudev
Hi Bob, I had similar problem with one Custom made DLL in Vista which worked perfectly in XP, Later i found that in vista UAC was causing the issue.So i need to go and disable to UAC to register the DLL. I am not sure if you got this error message "Regsvr32 failed with exit code 0x3" I still wo

Re: [DUG] DLL Win 7

2010-09-27 Thread Leigh Wanstead
Hi Bob, You might need register as admin rights. Have a nice day Regards Leigh From: delphi-boun...@delphi.org.nz [mailto:delphi-boun...@delphi.org.nz] On Behalf Of Bob Pawley Sent: Tuesday, 28 September 2010 11:31 a.m. To: delphi@delphi.org.nz Subject: [DUG] DLL Win 7 Hi I have a .DLL that l