Search results for query: *

  • Users: ivor
  • Order by date
  1. I

    Tricky question: my and other applications are competing?!

    I understand now, excellent explanation. Actually I tried to use timer but need to change interval to 1 (from 1000; because only then has changed behavior, I mean, only in that case everything worked like it should). Although, I will ask you again, having in mind that this part of my program...
  2. I

    Tricky question: my and other applications are competing?!

    Thanks for trying guys, actually both ideas are ok: that with shortcut keys, and that with setting to topmost. I will try both. But do you think that this mean powerpoint do the same, every moment sets itself to top? If that is case, then why you think Flippedbeyond that is not good idea?
  3. I

    Tricky question: my and other applications are competing?!

    I have an little application that has a role to zoom currently screen (magnify it). There is also posibillity to zoom more if you scroll wheel. BUT - if currently PowerPoint slideshow is running, it is not possible to zoom - and i realize why - because PowerPoint also uses mouse wheel for going...
  4. I

    Question how to get items in combo box to appear in a list box fb

    Theazza, this is simple Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click For Each item In ComboBox1.Items ListBox1.Items.Add(item) Next End Sub Does it help?
  5. I

    Question My application does not detect scrolling mouse

    I discovered problem. There was also one little form in my application that was set to top most. That was problem. Thanks jmcilhinney for trying to help.
  6. I

    Question My application does not detect scrolling mouse

    Thanks for trying to help jmcilhinney. No, problem. Actually my code is very simple. I have an image that is screenshoot of currently screen. Then, with rolling mouse, i zoom it + or -. Nothing more. 'zooming down If e.Delta < 0 Then If img_zumiranje.Height >...
  7. I

    Question My application does not detect scrolling mouse

    Hello guys, can anybody help with my problem. I made an application where i used mouse scrool event. On my PC everyting work excellent, but when I try it on different machine scrolling is not detected!? How is that possible?! i am using e.delta < 0 and e.delta > 0 Please help
Back
Top