Sapete perché il blocco di codice qui sotto annulla "Non è possibile convertire la variante di tipo (Null) in tipo (OleStr)" su alcuni computer, non tutti, ma 3 computer su dieci generano il messaggio di errore.Impossibile convertire la variante di tipo (Null) nel tipo (OleStr)
function GetWMIstringSW(const WMIClass, WMIProperty:string): string;
const
wbemFlagForwardOnly = $00000020;
var
FWbemObjectSet: OLEVariant;
FWbemObject : OLEVariant;
oEnum : IEnumvariant;
iValue : LongWord;
LNode : TTreeNode;
LNode2 : TTreeNode;
begin
Result:='';
FWbemObjectSet:= FWMIService.ExecQuery(Format('Select %s from %s',[WMIProperty, WMIClass]),'WQL',wbemFlagForwardOnly);
oEnum := IUnknown(FWbemObjectSet._NewEnum) as IEnumVariant;
while oEnum.Next(1, FWbemObject, iValue) = 0 do
begin
if not VarIsNull(FWbemObject.Properties_.Item(WMIProperty).Value) then
Result:=FWbemObject.Properties_.Item(WMIProperty).Value;
LNode := ClientForm.TreeView1.Items.AddChild(Node, Format('%s',[String(FWbemObject.Name)]));
LNode2 := ClientForm.TreeView1.Items.AddChild(LNode, Format('%s',[String(FWbemObject.Version)]));
FWbemObject:=Unassigned;
end;
end;
La funzione viene poi eseguito FormCreate:
GETWMIstringSW('Win32_Product','Name');
Grazie mille per il vostro aiuto.
quale variante è nullo? –
Perché non utilizzare i wrapper 'MagWMI' pronti? –