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
Printable View
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
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;