help me

If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
5 posts Page 1 of 1
Contributors
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

help me
Shim
Hello Guys ,

i am 20 % complete in my new web browser so i want it to be 100 % complete :P i am needing your kind help to finish it so how can i add the progressbar loading thing ? how to add history option ? how to add bookmark option ?

thank you
Find my programs on Softpedia
User avatar
pip
VIP - Donator
VIP - Donator
Posts: 156
Joined: Tue Jul 12, 2011 3:13 am

Re: help me
pip
For bookmark system go to settings in the project and add 2 settings named History and Bookmarks both are system.collections.specialized.stringcollection and scopes are user
and the value for the 2 settings are
Code: Select all
<?xml version="1.0" encoding="utf-16"?>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <string />
</ArrayOfString>
code for button bookmark to add:
Code: Select all
        Try
            My.Settings.Bookmarks.Add(CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Url.ToString)
            My.Settings.Save()
            MsgBox(CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Url.ToString & " Has Been Bookmarked!", MsgBoxStyle.OkOnly, "Micronet")

        Catch ex As Exception

        End Try
    End Sub
well this is a demo to a source i found here is free source to use :) everything you need is here!:
http://www.mediafire.com/?tzezklj4yj1
<a href="http://www.points2shop.com/s/xbox_point ... 5082"><img src="http://points2shop.com/images/promotion ... ricoxg.gif" border="0"/></a>
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

Re: help me
M1z23R
Post the code also to recover saved bookmarks. And i already gave you source for the progressbar thing.
User avatar
pip
VIP - Donator
VIP - Donator
Posts: 156
Joined: Tue Jul 12, 2011 3:13 am

Re: help me
pip
M1z23R wrote:
Post the code also to recover saved bookmarks. And i already gave you source for the progress bar thing.
i am confused who are you talking to??? you gave me nothing if your refer to me on progress bar thing but what i just posted has all in one for all of that bookmarks history and that progress bar load + label, and is there a way to recover bookmarks if there is can you post it cause i don't know it lol
Edit:
Features of source:
the load thing
bookmarks adding removing
tab add/remove
history system to open/remove history stuff and alot more clapper;
<a href="http://www.points2shop.com/s/xbox_point ... 5082"><img src="http://points2shop.com/images/promotion ... ricoxg.gif" border="0"/></a>
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

Re: help me
M1z23R
pip wrote:
M1z23R wrote:
Post the code also to recover saved bookmarks. And i already gave you source for the progress bar thing.
i am confused who are you talking to??? you gave me nothing if your refer to me on progress bar thing but what i just posted has all in one for all of that bookmarks history and that progress bar load + label, and is there a way to recover bookmarks if there is can you post it cause i don't know it lol
Edit:
Features of source:
the load thing
bookmarks adding removing
tab add/remove
history system to open/remove history stuff and alot more clapper;
Sorry, i saw mashsdfsdf and didn't see it wasn't his topic. my bad... here is the replay i was refering to :)
viewtopic.php?f=38&p=70827#p70795
5 posts Page 1 of 1
Return to “Coding Help & Support”