Search results for query: *

  1. jumper77

    Answered How to Copy a folder from Explorer to the Desktop?

    Thanks so much for the reply. I was wondering if I had to create the directory myself or not. I should be able to get it working now. Thanks!!!
  2. jumper77

    Answered How to Copy a folder from Explorer to the Desktop?

    I'm trying to copy a folder to the desktop. My code isn't working though. It copies all the files within the folder to the desktop. What do I need to do to make it copy just the directory. Private Sub ListView1_DragDrop(sender As Object, e As DragEventArgs) Handles ListView1.DragDrop...
  3. jumper77

    Question Need help with some NetSH concepts...

    It seems like this is the place to put this question. If I'm wrong, I'm sure someone will let me know :) I've been working with NetSH.exe for the last few days and playing with all the Firewall commands. However most of them are not working right now. I'm sure I'm missing something pretty...
  4. jumper77

    Resolved How to avoid exceptions while looping through processes

    Thank you. I'm using 2017 also and it's in debug elevated as well (debug elevated). But I have everything working right now. My confusion was due to a "stupid" mistake I had made (hangs head in shame...) Thank you for the help my friend. I will make an effort in the future not to ask questions...
  5. jumper77

    Resolved How to avoid exceptions while looping through processes

    Sorry for the extra reply, but just hold off on commenting because I'm getting really odd behavior from the software right now. I have to fix that before anything will make sense. My apology
  6. jumper77

    Resolved How to avoid exceptions while looping through processes

    Hi John. I have my manifest file set to "HighestAvailable", but just found out something I didn't know about... I took the check for Process.SessionId out and launched the release version (outside of Visual Studio) and everything worked fine. Until now I've been running it in the debugger, so...
  7. jumper77

    Resolved How to avoid exceptions while looping through processes

    I just found an answer that is good enough. I check to see if Process.SessionID is 0 before getting the filename now. The form is loading quick now. I'm a bit brain dead at the moment so I'm not positive this is the workaround, but for now I'm happy and I'm going to sleep :)
  8. jumper77

    Resolved How to avoid exceptions while looping through processes

    Hi everyone... I have a routine that loops through processes and I'm using a try and catch block to catch exceptions. What I would like to find out is if there is a way to avoid the exception completely. I'm seeing a high cost in execution time because of all the exceptions. Here's the place in...
  9. jumper77

    Need full path returned from Listview double click event

    That's great! I got it to work now. There are 2 things you need to do. One is set the ImageList ColorDepth to 32bit. Then you sent the transparent color to Color.Black (not sure why that works, but it does). Now all my icons are transparent in the Listview. Thanks a bunch sir! Here's what I...
  10. jumper77

    Need full path returned from Listview double click event

    Wow! You are the man with the answers. That looks like it might be the right thing. Thank you so much, I'm going to check it out!
  11. jumper77

    Need full path returned from Listview double click event

    If you are around sometime John (or anyone), I've noticed that in the Listview, some of the icons are transparent, but some are not. Any idea why that happens? edit: I realize that some are and some are not transparent, but I know some are, yet they have a square rectangle around them...
  12. jumper77

    Need full path returned from Listview double click event

    The Detail view works fine for me. Not sure why yours didn't work. I've never used the largeIconList before. I might try that. I think I have to change the size of the icons first though...
  13. jumper77

    Need full path returned from Listview double click event

    Also, I was going to send you a message and introduce myself, but you may have that turned off. It's cool. Have a great one!
  14. jumper77

    Need full path returned from Listview double click event

    Hi John (my name is actually John too). Thank you so much for the help. I knew it had to be there somewhere. The "lvProcesses.FocusedItem.ImageKey" did indeed contain the full path! I will check out the links after I submit this message, so thanks for the those. I do appreciate the help. Very...
  15. jumper77

    Need full path returned from Listview double click event

    Hi all. I have been trying to loop through processes and put the process icon and name in a Listview. I actually found the solution here before I (just now) became a member. It was a 2008 post where JohnH was helping out. Here's the code. But it has been modified some.... Private Sub...
Back
Top