Making A Web Browser And Want To Add A History Feature
Feb 15, 2010
I am making a web browser and want to add a History feature/I am not asking for any code but I want some help doing it like things to look into or even tutorials.I have no code yet because I have no clue
View 4 Replies
ADVERTISEMENT
May 24, 2011
I am working on making a bookmarks and history interface for my web browser so basicall for the bookmarks the code is
CODE:
Now im assuming that this is not all that is needed.. (this is put inside a sub) however i dont know how to set up the settings so that it will keep the bookmarks into my list after the program closes...
View 6 Replies
Nov 22, 2011
I am a still a beginner at this so bare with me. I have made a web browser which is my starting point in VB. Now its fully functional and has history and all that. And i am using tab control as the browser part. History works when the go button or enter key is pressed but I can't get this to work when a user clicks a link.
Public Class Form1
Dim int As Integer = 0
Dim tabs
[code].....
View 2 Replies
Sep 1, 2009
In the Settings, do I have the type as System.Collections.Specialized.StringCollection and the scope as User?
View 2 Replies
Nov 6, 2009
[Code]...
list of URL for the web pages requested by the user should be maintained. The user should be able to navigate previous pages requested by clicking on the links in the History list. On the browsers start up, the History list should be loaded to the browser.
View 1 Replies
Apr 6, 2010
add history features in the web browser
View 2 Replies
Feb 16, 2010
I have a vb.net program that allows you to access webpages in my localhost. Now, my problem is that, when I try to list records in mysql by using tables, it remembers history and the previous data that you listed will appear like a ghost even if the data you inputted does not correspond to the data that it is showing. How can I avoid that?
View 1 Replies
Dec 24, 2009
I am making a program that clears IE/firefox history and cookies.
View 2 Replies
Jul 20, 2011
I am making a web-browser. I want the browser to have a history function such that, when the webbrowser has navigated, it enters the URL into a combobox (here as combobox3)
I know that to do it, you need for example
CODE:
However in my browser I am using a tab control such that I do not know what to call the navigated function to.
Here is the code for the creation of the browser
CODE:
I have tried to use browser_navigated and tabcontrol1_navigated but none work in this format
CODE:
When I try put
CODE:
I get identifier expected error... What should I do?
What should I put where it says tabcontrol1_navigated?
View 3 Replies
Jan 2, 2009
I am still relatively new to the .NET language , but I will get straight to the point. I have a web bowser i have made after 2 nights of coding and getting myself familiar with it. I have a menustrip at teh top, with a view category. Inside taht category i have a view cookies and view history button. As we know, ths browser stores its history and cookies with the Internet explorer. I am looking on how to create a form with the ability to view history, and another to view cookies. I also want to be able to delete them willingly from within the form. I have a listview control already on the form, but i am lost elsewheres.
View 5 Replies
Feb 23, 2009
I'll start off by saying my website has a landing page of http:[url]....
On PageOne.aspx, I have a link to another page: http:[url].....
On PageTwo.aspx, I have an link to the following:
<a href="http:[url].....
The /MyFiles/ directory is actually a virtual directory which points to a file server that holds many other files (PDF, jpeg, doc, etc.).When I navigate to PageTwo.aspx from PageOne.aspx, I can click "back" and still get to PageOne.aspx (my browser history is ok). When I click on the link on PageTwo.aspx, the PDF opens in the same window...then I can click "back" to get back to PageTwo.aspx, but I can't click "back" again to get to PageOne.aspx (it seems like my browser history has been reduced by one page).
I can only imagine that this happens because of the virtual directory since I can't duplicate this problem if the PDF resides on the same server as my .aspx pages. If that is the case, does anyone know how to get around this and still have my PDF reside on the file server (virtual directory)?
View 1 Replies
Dec 11, 2010
For security purposes, I need to write a program that tracks the browser history of Internet Explorer on my machine. The way it would work is this: it starts up when the computer does (I'm pretty sure I can do that without a problem), then runs in the background as long as the computer is on. When the user types a URL or clicks a link, the program reads the URL and writes it to a text file. It does not check the browser history, as my situation makes checking the browser history useless. It records the URL as soon as the web page is reached.
View 1 Replies
Jun 13, 2010
I'm making a combo box that displays the users history on the browser, but when they first open it and press the combo box theres supposed to be nothing there except for the homepage, but it instead has the homepage and (Collection) in it... help?
View 11 Replies
Feb 26, 2010
I have a small script that logs all of the website I visit and then displays them on a form. When I open the form the first time it displays all of the websites like it should. However, the second time I open it, it displays two of every website. The third time opening it, three of every website. I think that it is because the data doesn't get erased from the listbox when I close the form. Is there a way to clear the listbox when the form closes or do I need to find a new way to set it up?
View 6 Replies
Aug 13, 2009
what a good code to delete my "Webbrowser1" cookies (not my IE7 cookies !) I would also like this program to delete the Webbrowser1 History & Temporary Files as well, but mainly the cookies. I would like for this program to either delete cookies by a simple click of a button or to set a timer that can erase the cookies every few minutes. Also, if it could show the current cookies before being deleted.
View 5 Replies
Jan 21, 2011
I'm currently making a Web Browser, and I was wondering how I can save History after I close the program/form and clicking on the site I visited last and navigate to the link with a single click?
View 2 Replies
Mar 25, 2010
I'm using visual basic 2008 and really need help in this question ...
-I'm creating a web browser : how to stop adding pages to Internet Explorer History...
-And auto save/open Listbox (so i could use my own browsing history)
View 5 Replies
Jun 14, 2010
I'm making a web browser using TabControl...I need some codes Make the button that "go's" execute when clicking enter, aswell as pressing the button itself.A right click menu, aswell as Copy , Paste, and Cut functions Code to print the current page on tab control. and how to add bookmarking (through a top menu strip)
View 6 Replies
Oct 20, 2009
I have made a few siple web browser, using a web browser control, a texbox, and a few buttons.I need to learn how to:Make a download handler(like FireFox)Make a custom web browser control(if possible)Use EXTERNAL .EXE's(like toolbars)Make an installer using a background worker, and System.
View 5 Replies
May 18, 2011
Ive been working on my browser for a while and it seems to be dependant on internet explorer for downloading playing windows media player stuff and general history...
View 2 Replies
Nov 22, 2009
I have created a tabbed browser, and for the Go button, i have added the following commands
View 2 Replies
Jul 7, 2011
in my web browser I am trying to make it run off it's own engine, not off of Internet Explorer.
View 14 Replies
Mar 26, 2009
Ok, it's basically all in the description, but I need to make it so there is not a limited amount of bookmarks. I cannot use My.Settings because when i try to select 'My Project' in the Solution explorer, it doesn't work
View 1 Replies
Jan 13, 2010
How do I make my WebBrowser one do this code?
View 2 Replies
Sep 19, 2009
Make The Enter Button Be Able To Be Used When Using/Making A Web Browser?
View 2 Replies
Apr 20, 2010
i have a program and i want it to visit a pre-set list of websites which will be in a richtextbox and i want it to visit all the sites in order BUT heres my problem that idk how to fix it will only load the last page of the list it will not load any other ones. Heres my code for it to visit the websites
For i = 0 To RichTextBox1.Lines.Count - 1
WebBrowser1.Navigate(RichTextBox1.Lines(i))
[code]....
View 8 Replies
Feb 22, 2009
I'm making a tabbed web browser and I need the browser to go to the link in the textbox when the user presses enter. How do I do this?
View 10 Replies
Dec 22, 2009
I was making a favorites tree browser, but saving an XML Document seems to have a little bit of trouble
View 1 Replies
Sep 5, 2008
I am making a popup program for something, so I added a listbox and such, and I need to know how to go about making the system pull items off the listbox randomly and launch them in the web browser.
View 3 Replies
May 16, 2012
I'm a huge music person (got my own lil record thing going) but I'm wanting to design a program that would make music in my way. I have a decent amount of background knowlege of Visual Basic and Java I'm just wondering how could I execute this whole project. The Project is making a MPC Sampler. MPC is a drum machine; a machine with buttons that once you press it that it will play a sound from a drum (ex: snare, kick, tom, ect.) . So I would want to make some pads on my program that each have their own sound. Total of 16 pads. Which the design wouldn't be hard to make nor would the functionality of it having the play back sound (in my opinoin it wouldn't be hard atleast). But the thing is I wanna map out these pads to number keys on the number pad or keyboard. I'm not so sure how to do that. But that's all the easy stuff...
Also finding information is making a sound directory. What I mean by this is that I want to make a User Interface that will open up a file directory of sounds and the user can select what "kick" or "snare" sound he may want for the kick or snare pad. I don't know how to do that or even know what to search; neverless I don't know if this whole project idea is a good idea for Visual Basic or another programing language.
Also LATER ON I am wanting to add a record and export function that alows users to..well...record and export their beat or instrumental ha. That doesn't seem too too complex (mainly due to the fact that all it needs to do is record the users key strokes and then show them and play the sounds, but obviously it would get more complex than that.)
Here is an image of one of many MPCs but one with a directory - [URL]
View 5 Replies