Oh by the way, if the DLL was compiled as an ActiveX dll then you don't have bother with any of this mess you can just include the DLL as a reference in your VB Project and any public properties,...
I hate to even comment because I really don't know C++ code, but from the looks of what you have posted there your MyDLLFunction isn't returning a value. If your MyDLLFunction doesn't provide a...
WizBang in my previous post I mentioned that the variable was a property of an instance of an OPC class object. The external process is an OPC server providing real time values from an Industrial...
For the benefit of anyone following the thread, I'm posting an example project with a quick down an dirty wrapper class for an image control. The class provides a PictureChange event that I've used...
Ah yes, I know what a wrapper class is. In fact most of the custom controls in question, the ones that need the value bound are essentially wrapper controls. I had thought of doing that, but since...
I hate to sound ignorant, but that's essentially what I'm asking, how exactly would I go about creating a change event for something that has no method of triggering said event.
I’m looking for a good way to Bind a property of a control to an existing object property for automatic updating Without polling. The instance of the object and the instance of the control will be...
Yes, I had considered that option as well, but in the particular case I'm developing the control for, there is the likelihood of a dozen or more instances of the control on a single form, and...
Thanks for the reply. Yeah, I knew that controls on my my form were child windows of the parent, and ignoring the mouseclicks is fairly straight forward, but I'm actually looking to ignore...
Question for the gurus. I need to be able to ignore the mousemove event selectively for a selected control on a form. More specifically, I need the X and Y mousepointer coordinates to reflect the...
I have an application where I use a series of GIF images with transparent backgrounds as overlays for a primary image. When transitioning from one overlay image to the next there is a brief moment...
Wow! I solved this problem when I discovered the User Control Wizard. LOL. After looking at the way it built the properties and events though, I still don't understand what I was doing wrong, I did...
I need a Control that is Arrayable for muti-instancing, contains a picture with a stretch property, and can be dynamically positioned at runtime with the mouse. In order to satisfy...
I am subclassing (if what we do in VB can actually be considered true subclassing) I've created a control with nothing but an image on it. I've defined all of the properties I need in my control...
Thanks for the warm welcome and the fantastic response. The code worked beautifully. There is a slight delay in the event response but IT WORKS, and the delay is a small trade-off for having the...
I have a User control with a label on it. If I raise a user control click event from the label it works fine. If I raise a user control dblclick event from the label it works fine. If I raise both...