Search results for query: *

  • Users: Zexor
  • 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 you get the data from that? With the filedrop from desktop, i catch it in dragdrop and that doesnt fire for link drop. I did a CType(e.Data.GetData(DataFormats.FileDrop), String()) to get the file names but that doesnt work for the link
  5. Zexor

    Question drop link from chrome

    I just dragged a link from chrome address bar and the for loop give me a bunch of those messages in the msgbox. Even some blanks. 23 messages from 1 drop.
  6. Zexor

    Question drop link from chrome

    When I drag a link from chrome, I get a bunch of system.io.memorystream and system.string
  7. 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.
  8. 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.
  9. Zexor

    Question Webbrowser download without prompt

    i use the webbrowser to open to a URL with different links. I would click on one of them to do a download.
  10. Zexor

    Question Webbrowser download without prompt

    webclient can have the browser interface?
  11. 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...
  12. Zexor

    Question WebP in picturebox

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

    Question Bluetooth device power level

    can i use Windows.Devices.Bluetooth to get the power level of a connected device?
  14. Zexor

    Question Bluetooth device power level

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

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

    When i do it the way u did, it works. Then it must mean that when i do it in the command prompt, it failed. "Appname.appref-ms" 123. That doesnt work. How do i pass argument from the command prompt?
  16. 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...
  17. Zexor

    Resolved Moving Sub Windows inside another program

    Oh, the same instance has the same name. It only change when i open another instance. And now they updated to new version, its all just "Nox"
  18. Zexor

    Resolved Moving Sub Windows inside another program

    I just notice the name changed from Nox_2 to Nox_5, can findwindow just search for "Nox_" so it catch either one?
  19. Zexor

    Resolved Moving Sub Windows inside another program

    When i do findwindow, i get the nox4 951074 . and if i findwindowex, it just go down the child 721cce. The one i want is the 168173C which isnt under Nox4 in the tree. Oh i could just findwindow(nothing,"Nox_2")
  20. Zexor

    Resolved Moving Sub Windows inside another program

    how do i know how many siblings or the class
Back
Top