Link to home
Start Free TrialLog in
Avatar of sk33v3
sk33v3

asked on

UDT and OCX

how do you pass a User Defined Type variable through an event or through a public function. I would prefer not to have to use lset on both sides but if I have to I have to.
Avatar of Brendt Hess
Brendt Hess
Flag of United States of America image

I assume that you are using Classes here.  A UDT can not be passed through a Public Class interface.  Instead, you must use Friend properties and methods to pass UDTs.

ASKER CERTIFIED SOLUTION
Avatar of ameba
ameba
Flag of Croatia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sk33v3
sk33v3

ASKER

Worked like a charm