what you mean like this?it has to have that structure that i wrote above.
Maybe?
Delphi-Quellcode:
type
propertys=record
index:integer;
name:string;
Value:String;
end;
type
instance=record
Index:Integer;
name:string;
Propertys:array of Propertys;
end;
type
WMIClass=record
index:integer;
name:string;
Instances:array of instance;
end;
var
_WMIClass:array of WMIClass;