Page 1 of 1

Help with the tabbed webbrowser srccode

Posted: Sun Mar 15, 2015 10:06 am
by xDev
so i finished debugging the browser project im making but i need many help from you guys!


first:
when watching a video, there are a lot of script errors appear and it's a massive bug

second:
how to add a download option?

third:
everytime i watch a video, the memory goes up to 100+ mb

fourth:
everytime i change the position of the magnifier and the plus button, when i go maximize on debug, they dont move

(same on putting label below it doesnt change position)

fifth:
how can i add incognito mode?

sixth:
how to add a close button to the tabs?

there. please help me guys! :( I'll appreciate it if you guys help me! :D

- xDev

Re: Help with the tabbed webbrowser srccode

Posted: Sun Mar 15, 2015 1:00 pm
by Usman55
I don't have the time but I can help you with one quick fix.

To make the magnify and plus button move when resizing, you need to set their anchor property to top right.

For the tab close button, have a look at this: http://www.codeproject.com/Articles/200 ... ab-Control

Re: Help with the tabbed webbrowser srccode

Posted: Sun Mar 15, 2015 9:42 pm
by comathi
I also don't have much time to give you extensive help, but one way I've dealt with script errors in WebBrowsers is using the ScriptErrorsSuppressed property.

You can read more about it here: https://msdn.microsoft.com/en-us/librar ... 10%29.aspx

Also, as far as I know, incognito just means that the browser doesn't record your activity. If you're recording the user's history for other tabs, you could simply add a property to any incognito tab and make sure that it doesn't add the URL to the history if the property is true.

To get a close button on the tabs, you'll need a custom TabControl. This link might help you: https://social.msdn.microsoft.com/Forum ... =vbgeneral