Jump to content

Error installing 0.90 on Delphi 2009


MarcoRu

Recommended Posts

  • Administrators

What IDE extensions are installed?

 

	{$ifdef COMPILER_10_5_UP}
SetLength(Result, ValuesList[0].Count);
for I := 0 to ValuesList[0].Count - 1 do
{$else}
SetLength(Result, ValuesLists[0].Count);
for I := 0 to ValuesLists[0].Count - 1 do
{$endif}

 

In above code

 

{$ifdef COMPILER_10_5_UP} 

 

Should return True in D2009, can you verify this?

Link to comment
Share on other sites

I try to put the code in a uniGuiForm. This part of code is ok:

 

{$ifdef COMPILER_10_5_UP}

SetLength(Result, ValuesList[0].Count);

for I := 0 to ValuesList[0].Count - 1 do

{$else}

 

but the other part give me error

 

{$else}

SetLength(Result, ValuesLists[0].Count);

for I := 0 to ValuesLists[0].Count - 1 do

{$endif}

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...
  • 3 weeks later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...