Search results for query: *

  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

    Thanks for the help :)
  3. A

    Help With Looping Through Listbox

    What is an arraylist?
  4. 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...
  5. A

    Remove "/" from url?

    Oh, thank you. I never did this before.
  6. 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...
  7. 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...
  8. A

    Command Help

    I have found the answer I was looking for by messing around with the code. Thanks for all of your help and your advice :)
  9. A

    Command Help

    I'm sorry I should have been more clear. When my program starts it checks to see if it has a command sent from windows. Form Load Procedure: If Command() = "" then Exit Sub Else ' Open the picture img.Image = Image.FromFile(Command()) End If
  10. 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...
  11. A

    Copy Link Shortcut In Web Browser

    Thanks for the help.
  12. 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...
  13. A

    Favorites With Registry

    No it is a combobx. I had a textbox at first and changed after I already wrote the code for it. I will look at it now that I am home and if I don't get it I will try something new. Thanks for your help :)
  14. A

    Favorites With Registry

    I still don't understand what is wrong, I have looked at it all night and now a little this morning, I've changed stuff and altered it and it still won't work correctly. I don't understand.
  15. A

    Favorites With Registry

    Public Structure Favourite Private _name As String Private _url As String 'The friendly name. Public Property Name() As String Get Return Me._name End Get Set(ByVal value As String) Me._name = value End Set End Property 'The full address. Public Property Url() As String Get Return Me._url End...
  16. A

    Favorites With Registry

    I don't understand, I thought I did it right, here is the code: Dim regKey As RegistryKey = My.Computer.Registry.CurrentUser.OpenSubKey("Software\JFenske\Pluto\URLS\") Dim valueNames AsString() = regKey.GetValueNames() 'Get all the friendly names. Dim upperBound AsInteger =...
  17. A

    Favorites With Registry

    I am having trouble with this code when I use it on another combobox. It loads the valuemember fine, but it doesn't show the right text. It just shows: "Pluto_Web_Browser.Favourite" so it shows The project name as a string and .Favourite, the Structure. How can I fix this? All I did was copy it...
  18. A

    Favorites With Registry

    Thanks a lot. I will ook over the code :)
  19. 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