Search results for query: *

  • Users: Azreal
  • Content: Threads
  • Order by date
  1. A

    Delete External System Tray Icon

    Hello, I am making a program launcher, and it opens programs that have system tray icons. I want to be able to erase the tray icons after they are opened. I have no idea how to do this. Could somebody please help me? Thanks
  2. A

    Help With Looping Through Listbox

    Hello, how would I push a button on my form and have that see if a listbox contains a word(s) in a textbox? Say the listbox has the words: "hello", "lake", "cat", "pants", or anything in it. And say you have the following in the textbox "Hello, my name is Azreal. I live in a small house by...
  3. A

    Remove "/" from url?

    Hello, I have a url of a file as a string, if the url were "h++p://www.vbdotnetforums.com/newthread.php" how would I just get the "newthread.php"? I have this: Dim str As String str = TextBoxURL.Text str = str.Substring(str.IndexOf("/"), str.Length - str.IndexOf("/")) But that only...
  4. A

    [VB 2005 Express] New Window In Web Browser

    Hello, I am having dificulties with the web browser control in Visual Basic 2005 Express Edition. I have this checkbox and when it is enabled it makes my boolean true, and it makes it so popups are not allowed. But I press Ctrl+N in the program Interent Explorer opens up! How do I fix this...
  5. A

    Command Help

    Hello, I am using Visual Basic 2005 Express, and I am having some trouble with the Command function. I want a picturebox to load a picture from the command, but it always fails giving me an error. I use image.fromfile(Command) but the command has quotation marks around it. This is what causes...
  6. A

    Copy Link Shortcut In Web Browser

    Hello, I have added my own context menu to a web browser control and I was wondering if and how I would be able to add text to the clipboard from a link in the web browser control. Kind of like the IE Copy Shortcut. This is how I copy text: Dim docx As HtmlDocument = wb1.Document Dim readme...
  7. A

    Favorites With Registry

    Hello, I am currently trying to make a web browser with Visual Studio 2005 and I am stuck with the favorites. Instead of using data files for the option I am using the registry. I was showed how to loop throgh a certain regisrty key and get all of the strings from it. Here is the code for that...
Back
Top