|
-
December 5th, 2008, 09:16 AM
#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
-
December 5th, 2008, 09:35 AM
#2
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|