How do I pass a user defined type (udt) to an OLE server?
MS Knowledge Base Q129868 You cannot directly pass a udt to an OLE server, so you have indirectly pass the information. There are two ways to do this: First, pass each element of the UDT as separate elements. Second, you can create an udt class, i.e. a class module that contains properties that replicate the elements of your udt and then use property procedure to reference the individual elements. You could also replicate a udt array by using a class collection, with each object in the collection your class udt. 18. Why is the terminate event not fired in my OLE server, when I end my application? MS Knowledge Base Q129885 If you use the END statement in your program, the terminate events of objects will not be fired (except under NT). In order to have the terminate event fire, you need to set the object reference to Nothing. Set obj = Nothing. This will cause the terminate event to fire. 19. How do I pass parameters to the Initialize event of a class? MS Knowledge Base Q138065 You cann
Related Questions
- When I type "*USERS" on my SJ server, I see this strange user at the bottom called "SYSTEM" (and maybe his friend, "SPOOL"). Whats going on?
- How can I monitor which user, PC, server in my network creates how much traffic and what type of traffic?
- Can I use a JNDI Initial Context to pass the security credentials of a WebLogic Server user?