Search results for query: *

  1. K

    Using StandardOutput.ReadLine()

    How does one use the StandardOutput.ReadLine() in real time? Everytime I use it, it gets blocked until the program closes. I have tried flushing the base stream every second, but that seems to have little effect. Any help would be much appreciated. The program in question, if it would help...
  2. K

    Form designer code

    Before, the form designer code used to be put in the code of the form, in the region called "Windows Form Designer generated code". Now, the form designer seems to put the code in a separate file called Form.Designer.vb. Is there any setting to make it so that it does not do that? Thank you...
  3. K

    Collections

    Is there any way to deep copy a collection in VB .Net? For example, to be able to create a copy of a collection with a different reference without having to create a collection and add each item by looping through. I also need to keep the keys in the copying. Sorry, accidently double-posted...
  4. K

    Capture mouse event outside of form

    I am creating a program to capture mouse clicks and record them to create a macro program, which could then replay what was recorded via the API mouse_event. However, I cannot find how to capture mouse clicks outside of the form, e.g. anywhere on the screen. Any help would be much appreciated! :)
Back
Top