How to declare array of structures of bytes

HARRY

Active Member
Licensed User
Longtime User
Hi,

I tried several possibilities, but I do not succeed to declare the following:

an array (10) of structures; each structure consisting of two fields of the type Byte.


Please help,

Harry
 

HARRY

Active Member
Licensed User
Longtime User
Erel,

My problem appeared not to be the declaration, but the addressing,

Many thanks,

Harry
 

derez

Expert
Licensed User
Longtime User
array - type

Harry
It is equivalent to two-dimensional array:
the array somename can be reffered to as somename(i,j) where the i can go from 0 to 9 and the j from 0 to 1.

Example:
Dim Type(No,Surname,Name,Nick,Father,Mother,Spouse,Marriage,Sex,Fcod,Mcod,Scod,Gen,Pic,Birth,Death,Prev_N)DB(2500)
Dim Type(No,Surname,Name,Nick,Father,Mother,Spouse,Marriage,Sex,Fcod,Mcod,Scod,Gen,Pic,Birth,Death,Prev_N)record
.......

For i = 1 To dbsize
For j = 0 To 16
db(i,j) = record(j)
Next
Next
 
Top