$comobj = &new COM('MyComlib.ComLib'); // Works
$comobj->FieldValue = "somedata"; // Works
$myval = $comobj->Property("Record");// Kind of
Works.throws an exception if the value doesn't exist
$comobj->Property("Record") = "otherdata";
Hi, I'm having difficulty trying to use the com extension in php5.
Here's the asp equivalent of what I'm trying to do.
Set comobj = Server.CreateObject("MyComlib.ComLib")
comobj.FieldValue = "somedata"
myval = comobj.Property("Record")
comobj.Property("Record") = "otherdata"
My php code looks lik
2 matches
Mail list logo