I'm creating a variable as new com object(the com is in vb).
it opens successfully.
I have a let and get for Field:
$objView = new COM("my.comobj")
the Get: $objView->Field("fName")
works and I get the parameter, but this :
$objView->Field('fName") = "newValue";
gives a Parse error: parse error, unexpected '=' in ...
if I try to use the let function in vb (same function name,takes 2 params)
I get an error in number of arguments sent.
does anyone knows how to do this set??
Guy