Two questions on 6.90

HARRY

Active Member
Licensed User
Longtime User
Hi,

Previous code won't compile anymore.

In a program I have the following code:

In Globals: Dim Type (TagCode,TagType,TagCount,TagOffset) Tags(0)

In a sub:

Dim Tags(NumberOfTags)

Look at new version, this one was sent too early and incomplete.

For i = 0 To NumberOfTags-1
Tags(i).TagCode =GetValue(22 + (i*12),2)
etc
 
Last edited:

mjcoon

Well-Known Member
Licensed User
Errm, what is the compile failure, and for which of those lines?

My code is similar, except that I establish the array size using Array() and step through it using ArrayLen(), but it works with 6.90 beta.

Mike.
 
Top