History For Web Browser?
Sep 1, 2009In the Settings, do I have the type as System.Collections.Specialized.StringCollection and the scope as User?
View 2 RepliesIn the Settings, do I have the type as System.Collections.Specialized.StringCollection and the scope as User?
View 2 RepliesI 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].....
[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.
add history features in the web browser
View 2 RepliesI 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 RepliesI am making a program that clears IE/firefox history and cookies.
View 2 RepliesI 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?
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 RepliesI 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 RepliesI'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)?
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 RepliesI'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 RepliesI 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 RepliesI 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...
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 RepliesI'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 RepliesI'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)
How would I go about clearing IE's history from with VB? I've looked on the internet and couldn't find anything, and I honestly don't have a clue about how to do it.
View 1 RepliesIm working with vb2010 with ms access as its database and a newbie into programming. is there anybody who have an idea how to make a log in history.. i mean whenever you specify date from..to.. (e.g 01/02/2012 to 01/05/2012 ) on ur filter command it'll display on a listbox the user who logged in at their specific date and time and what they have accessed inside the program.
View 7 RepliesSo basically my webbrowser has comboboxes and 1 menustrip button(clear all history).
In the menustrip i got History
And In history i got "Show All History"
and "Clear All History"
I turned the "Show All History" into a ComboBox.
And i have another ComboBox for history just like firefox has on its navigation TexTbox.
Lets say the Menutrip ComboBox is ComboBox1 and the other one for the NavigationText is ComboBox3.
What happens is when i press Clear All History They get cleared BUT STAY CLEARED Here are my codes:
[Code]...
i'm making a web editor and i do a lot of syntax coloring in a richtextbox, but if i want to Undo it just undo's the font and the coloring, is there a way to disable the rtb's history ? I found this code on the internet but it doesn't seem to work
If e.Control AndAlso (e.KeyCode = Keys.Z) Then
While CodeRTB.CanUndo AndAlso CodeRTB.UndoActionName = "Unknown"
CodeRTB.Undo()
[Code].....
I have created a form and display alot of icons on the location that I want. After I displayed several icon on the form then I would like to delete a couple of them but I could not find the history of location or a link to that icon so I can not delete it.
Here is my code:
Private Sub Form1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
CoorY1 = 410
CoorY2 = 425
[code]....
From the Form1_MouseClick I link to the MyPicClicked with g_CoorX1 and g_CoorY1 but it only give me the location that next the the last icon I display. Please, anyone help to show me how to keep an index or record or anything of the location that I display.
have a web browser and want to know how to create a history thing, I want to be able to view history in a seperate form, I want in my options to be able to delete history, and I want my combobox to be able to view the last addresses I have
View 6 RepliesIam making a web browser which consist a combobox as the address barso how to save any address will be written in it even after closing my app?
View 3 RepliesI have tabcontrol that acts like a web browsers how do I can make it have history and favorites.
View 2 RepliesI'm trying to produce a history viewer similar to the Log File Viewer in SSMS. To group history I'm using Marks TreeGridView [URL] I can filter the results down to just the job in question, but how do I: Group the results similar to the Log File Viewer (Grouped by job run) I cannot see any columns to differentiate job runs. Add them to the TreeGrid in such a way they display as pictured. I'm using SMO to retrive the job history and filtering to show only the required job:
Dim server As New Server(SQLServer)
Dim jobServer As JobServer = server.JobServer
Dim jhf As New JobHistoryFilter()
jhf.JobID = j.JobID
Dim jobHistory As DataTable = j.EnumHistory(jhf)
i have made a basic web browser, i am trying to add bookmarks and history on to it. I have made a basic bookmarks form where you can add pages, but i want when you double click on a bookmark for it to open in the browser, and i have added a button to add the current page into the bookmarks, but that does not have any code as i did not know where to start.
Also i have not made a template for history as i did not know where to start, please help me out as i really want to get a fully working web browser. Also i have put a link for you to look at the code, and i know the media player is affecting the tabs, i would like to keep the media player but would not like it to auto open if you can also help there (i didnt put that in a friend did)
here is the link, i would have attached it but it was more than 500kb, it was 1.17mb on my pc and 1.18 on mediafire:[URL]..
I have not been able to find code to list the sites visited by IE and FireFox. I found code for IE that gets the websites typed in.
View 1 Repliesi was wondering how I can log someones history.I made my own web-browser. I visit vbforums.com . Is there anyway for me to insert a certain code into a Button?.Click so that it will pop up with a MsgBox or a RichTextBox on the sites that I have visited?
View 1 RepliesI have made this history window showing the history of the user on the browser via a database.On opening however, the window freezes with the Histroy button pressed and stops working. here is the code.
[Code]...