Hello!
I'm making a WebBrowser for fun I'm stuck on somethings
Bold I don't need help with anymore
1. I want to be able to make the browser save history from visited websites and view them in a different form (view about 7 in a menu item)
2. How would I make the textbox in the toolstrip resize to the remaining space
on the form resize event also the form start's maximized so it would need to work with that
3. I got a problem with my bookmarks when I remove a bookmark I have to restart the form to be able to see any changes too it (this is in a menu)
I want to be able to remove a bookmark and make it automatic update so no need to restart the form
Current code
Code:Private Sub Form1_FormClosed(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles MyBase.FormClosed
My.Settings.Save()
End Sub
Private Sub RemoveBookMarkITM_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RemoveToolStripMenuItem.Click
My.Settings.BrowserBookmarks.Remove(MainBrowser.Url.ToString)
MainMenuStrip.Refresh()
End Sub
4. Make a combobox show previous searches in items
5. How to clear Cache, Cookies, History, Active logins
6. How to open a new windows in my browser NOT internet explorer
If I haven't explained so you understand it please let me know and I will try give you more information
Danny <3

