Search results for query: *

  • Users: Zexor
  • Content: Threads
  • Order by date
  1. Zexor

    Question detect Audio Output change

    Is there a trigger that fires when the audio output get changed? from one speaker to a different speaker or from speaker to bluetooth.
  2. Zexor

    Question setforgroundwindow

    i have a program that interact with another window. lets say window 1 is the window i am trying to interact with... window 2 is different window that is current in the foreground. so i did a getforegroundwindow to get window2, getprocessbyname for window1. bring window1 to the foreground with...
  3. Zexor

    Question adding shortcut to contextmenustrip programmatically

    Private Sub cmsTypes_Opening(sender As Object, e As CancelEventArgs) Handles cmsTypes.Opening With cmsTypes.Items .Add("Cut", Nothing, AddressOf cmsTypes_Click) .Add("Paste", Nothing, AddressOf cmsTypes_Click) End With e.Cancel = False End Sub This will just...
  4. Zexor

    Question drop link from chrome

    how do i catch a drag and drop link from chrome? I can catch a file drop from the desktop just fine, but dragging from chrome doesnt seem to work.
  5. Zexor

    Question simulate mouse click

    Is there a way to simulate a mouse click without first setting the cursor position then do a mouse event leftdown? sometime if i am moving my mouse during this event, the mouse won't be clicking where its suppose to be clicking.
  6. Zexor

    Question Webbrowser download without prompt

    I created a webbrowser in a tab. I want to download files to the default directory without the save prompt. Dim imgBrowser As New WebBrowser With imgBrowser AddHandler .DocumentCompleted, AddressOf imgBrowser_DocumentCompleted AddHandler...
  7. Zexor

    Question WebP in picturebox

    Can you load a .webp image into picturebox?
  8. Zexor

    Question Bluetooth device power level

    Is there a way to get a connected bluetooth device power level? something like this Bluetooth Battery Monitor
  9. Zexor

    Question Getting argument from 2nd instance command line in single instance app

    How do i get the argument from and 2nd instance in a single instace app? I tried to catch it in MyApplication_StartupNextInstance. But the e.commandLine or the AppDomain.CurrentDomain.SetupInformation.ActivationArguments.ActivationData seems to be null. I use "Appname.appref-ms" 123 to send 123...
  10. Zexor

    Question Lock input

    Is there a way to lock the keyboard and mouse input? I have a program that sending keypress and mouse click to another program. And for that 1 sec, if i move my mouse or type, it interrupt the process.
  11. Zexor

    Resolved Moving Sub Windows inside another program

    Can you change the location and size of a sub window inside another program externally? I am running Nox, i could move the main window around from another program. But can you move around that Macro Recorder window or the toolstrip bar on the side around?
  12. Zexor

    Resolved capture image and compare

    Lets say i have a play button in another program and it's image toggle between Play and Pause image. How do i capture that image and determine if it's in the play or pause position. Basically, i want to do a capture a specific position on the screen, and compare it to the play and pause image.
  13. Zexor

    Question play video on webbrowser

    i try to navigate to a mp4 video link in code on a webbrowser. but instead of playing the video, it popup a download link. How do i make it play instead?
  14. Zexor

    Question mousewheel on a dropdown

    can mousewheel scroll thru a contextmenustrip dropdownitems?
  15. Zexor

    Resolved DoDragDrop cancel DoubleClick

    When i put a DoDragDrop in the listview_MouseDown event, the MouseDoubleClick event won't trigger. All it does when i double click it is a label edit. What is the best way to do a DoDragDrop for a listview? I did a workaround by just storing the drag data in the MouseDown event, and wait til the...
  16. Zexor

    Resolved Drag and Drop Out to another program

    How can i drag a filename from a listviewitem out from my program to another program that is capable from receiving file drop from windows explorer?
  17. Zexor

    Resolved Select ListviewItem Text

    Is there a way when i do a listviewitem label edit, it only select part of the text? If the text is a filename, it only select the name without the extension?
  18. Zexor

    Question Folder Customize Optimize type

    How to change a folder's Properties' Customize Optimize type to General Items? Also how to set a folder's sort column?
  19. Zexor

    Question chromecast/google home

    can you cast from the axwindowsmediaplayer to chromecast/google home?
  20. Zexor

    Question Detect change of audio output device

    Is there a way to detect a change of audio output device? Also detect a change of volume?
Back
Top