CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2008
    Posts
    1

    Create IE AutoFill toolbar using C#

    Hi

    I need to create a IE autofill toolbar similar to IE toolbar using C#. Can you please help me on that. It would be great if you can provide me the sample code to do this.

    Thanks
    Janakiraman

  2. #2
    Join Date
    Sep 2008
    Location
    Netherlands
    Posts
    865

    Re: Create IE AutoFill toolbar using C#

    What exactly do do you mean with toolbar?

    I think that you mean the adressbar (where you type you URL), if that's the case, I suggest using a combobox.

    Code:
    comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
    comboBox1.AutoCompleteSource = AutoCompleteSource.HistoryList;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured