When looking to move the pointer on to the next record, an error message is shown that says:
Access violation at address 004070E2 in module 'main_p.exe'. Write of address 00000000
Any way of resolving this?
var
i: integer;
begin
with dmData.dmEventInfo do
begin
tblEventinfo.Open;
i := 0;
while NOT tblEventinfo.Eof do
begin
arrNames[i] := tblEventinfo['bandname'];
tblEventinfo.Next;
i := i + 1;
end;
end;
end;