CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: AlexanderSupertramp

Search: Search took 0.04 seconds.

  1. Re: MouseUp in ActiveX - works in IDE but not in exe

    Hi Guys,

    Sorry, I am being a bit late in reply, but was busy with something else.

    But solved the problem (somehow ;) ), and though I should post something about it.

    I found out the last...
  2. Re: MouseUp in ActiveX - works in IDE but not in exe

    hey Guys.

    Here's the code. Please put SSubTmr6.dll in System32 and register with regsvr32.exe.

    I have commented the subclassing code, it is in the class module. The commented subclassing code...
  3. Re: MouseUp in ActiveX - works in IDE but not in exe

    Hello Guys.

    @Jonny: Oh I tried to use the OCX ina simpler project. Just drag n dropn the control, and process MouseMove to display X and Y values in textboxes. No loops. Still the same problem....
  4. Re: MouseUp in ActiveX - works in IDE but not in exe

    @WizBang: But the subclassing part is working perfectly fine. Inside/outside. The problem is with the exposed events of PictureBox control. I'll try something in that direction anyway.

    I used...
  5. Re: MouseUp in ActiveX - works in IDE but not in exe

    Hey Guys.
    Here is a update. Strange.

    I added same file logging code inside Form which has my OCX control in OCX's MouseMove.

    The event is logged only when Mouse is clicked!!!

    That means,...
  6. Re: MouseUp in ActiveX - works in IDE but not in exe

    @WizBang: the control basically enhances VB's PictureBox with MouseWheel support.

    I have used WM_MOUSEWHEEL message inside control in a module. I have used VBACELLERATOR's SSubTmr6.dll for...
  7. Re: MouseUp in ActiveX - works in IDE but not in exe

    @WOF: Oh I am so so sorry. MouseUp is same as MouseDown.

    @Jonny: I tried file logging from inside of User Control like this:



    Private Sub Picture1_MouseMove(Button As Integer, Shift As...
  8. Re: MouseUp in ActiveX - works in IDE but not in exe

    @WizBang: Here is how I have exposed the event:




    Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
    RaiseEvent MouseMove(Button, Shift, X, Y)...
  9. Re: MouseUp in ActiveX - works in IDE but not in exe

    Is it possible for me to summon The Wolf somehow (got Marcellus Wallace's no.? )? He is expert in Bonny Situations.

    Yes, you are right. I am going crazy.
  10. Re: MouseUp in ActiveX - works in IDE but not in exe

    @Jonny: Ok I will try the Logging thing and other stuff you said, I will have to figure out a way for that, new concept for me.

    @WOF: Well I did only this thing related to container: I set the...
  11. Re: MouseUp in ActiveX - works in IDE but not in exe

    After trying the utility to make sure that only one OCX is registered on PC, I am sure its not a OCX or versioning problem.

    I tried spy+ as well, the messages trapped for app run inside as well as...
  12. Re: MouseUp in ActiveX - works in IDE but not in exe

    Hi,

    I have used a utility to check all the registered files OCXs on the system. Very handy tool. Find it here: http://www.nirsoft.net/utils/registered_dll_view.html

    I unregistered and deleted...
  13. Re: MouseUp in ActiveX - works in IDE but not in exe

    And how would I solve this problem on client's PCs? Some versioning tools for OCXs?
  14. Re: MouseUp in ActiveX - works in IDE but not in exe

    Thansks for replies guys.
    @Bill: I am sure it is not a mouse diver problem. Thing works in IDE and everything else with mouse works.

    @WOF: :)

    @dglienna: I am not using that same dll anywhere...
  15. Re: MouseUp in ActiveX - works in IDE but not in exe

    No one is replying?
    Have I messed up the information or the question is hard?

    Anyway, I forgot to mention a tiny detail, very important. I apologize:

    The demo works only when opened as a group...
  16. Re: MouseUp in ActiveX - works in IDE but not in exe

    Thanks for the reply Bill.
    I did try manual register/unregister half a dozen of times, keeping ocx at various places.

    Installation keeps the ocx at intended place.

    Besides, other features are...
  17. [RESOLVED] MouseUp in ActiveX - works in IDE but not in exe

    Hello Guys.

    I have this strange problem. Just finished an activeX control involving a pictureBox. I have exposed PictureBox's MouseUp event.

    When I run it in VB IDE, it works fine, shows a...
  18. Re: Problem with LoadPicture in an ActiveX Control

    Hi WoF. Problem solved. :)

    It was not a naming conflict issue though.

    I had to expose the Picture property with:



    Public Property Let Picture(thePic As stdPicture)
    Set Me.Picture =...
  19. [RESOLVED] Problem with LoadPicture in an ActiveX Control

    Hi guys, a problem and I have no promising clue:

    I have created an activeX control which has a PictureBox. I have exposed Picture property like this:
    (Picture1 is the name of constituent ...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured