J
Joe
Hello,
I have been trying to convert this vb.net code snippet below into c#
for a couple days and I have had no luck. Maybe someone out there can
point in the right direction.
Dim iPersist As IPersistStreamInit.
iPersist = CType(PDF1.GetOcx, IPersistStreamInit)
iPersist.GetSizeMax(len)
PDF1 is an activex control.
I've tried this below without any luck.
IPersistStreamInit iPersist = (IPersistStreamInit)this.PDF1.GetOcx();
iPersist.GetSizeMax(size);
Thanks All,
I have been trying to convert this vb.net code snippet below into c#
for a couple days and I have had no luck. Maybe someone out there can
point in the right direction.
Dim iPersist As IPersistStreamInit.
iPersist = CType(PDF1.GetOcx, IPersistStreamInit)
iPersist.GetSizeMax(len)
PDF1 is an activex control.
I've tried this below without any luck.
IPersistStreamInit iPersist = (IPersistStreamInit)this.PDF1.GetOcx();
iPersist.GetSizeMax(size);
Thanks All,