Simple ActiveX control without GUI
-
How can I create a simple ActiveX control, that has no GUI. I want to create a simple ActiveX control that is not visible in rutime in the client (like Visual Basic). It should be only display an little Icon during the design time in the client (VB), like the MsCOMM control. Any link, tutorial, sample? Thanks! Cheers, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)
-
How can I create a simple ActiveX control, that has no GUI. I want to create a simple ActiveX control that is not visible in rutime in the client (like Visual Basic). It should be only display an little Icon during the design time in the client (VB), like the MsCOMM control. Any link, tutorial, sample? Thanks! Cheers, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)
-
And how can I display a icon at design time? Cheers, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)
-
And how can I display a icon at design time? Cheers, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)
simply, the
OnDraw
method works as before, only the results will be visible only in design mode - you don't need to take special steps. I just tried it (because I never did it before) and the sample generated by the wizard implements theOnDraw
with the standard "ATL:Test
" but it was visible only in design time. In runtime it shows nothing. hope this helps -
simply, the
OnDraw
method works as before, only the results will be visible only in design mode - you don't need to take special steps. I just tried it (because I never did it before) and the sample generated by the wizard implements theOnDraw
with the standard "ATL:Test
" but it was visible only in design time. In runtime it shows nothing. hope this helpsThanks! I will try it! Cheers, Daniel. -- FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. ;)