| | |
vb.net 08 Show all visited websites
Please support our VB.NET advertiser: Intel Parallel Studio Home
Thread Solved |
When I need to get them, I do that
I don't know, what done behind the scene, but your question will le me work around this, thanks a lot
vb.net Syntax (Toggle Plain Text)
ComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend ComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.AllUrl
BI Developer | LINKdotNET
B.Sc Computer Science, Helwan University
Technical blog | http://ramymahrous.wordpress.com
LinkedIn | http://www.linkedin.com/in/ramymahrous
B.Sc Computer Science, Helwan University
Technical blog | http://ramymahrous.wordpress.com
LinkedIn | http://www.linkedin.com/in/ramymahrous
Play with registry... and I assumed it as Windows-based application.
BI Developer | LINKdotNET
B.Sc Computer Science, Helwan University
Technical blog | http://ramymahrous.wordpress.com
LinkedIn | http://www.linkedin.com/in/ramymahrous
B.Sc Computer Science, Helwan University
Technical blog | http://ramymahrous.wordpress.com
LinkedIn | http://www.linkedin.com/in/ramymahrous
•
•
Join Date: Mar 2008
Posts: 44
Reputation:
Solved Threads: 0
I was thinking of trying something along the lines of this
VB.NET Syntax (Toggle Plain Text)
Public Function PopulateUrlList() As List(Of String) Dim regKey As String = "Software\Microsoft\Internet Explorer\TypedURLs" Dim subKey As RegistryKey = Registry.CurrentUser.OpenSubKey(regKey) Dim url As String Dim urlList As New List(Of String)() Dim counter As Integer = 1 While True Dim sValName As String = "url" + counter.ToString() url = DirectCast(subKey.GetValue(sValName), String) If DirectCast(url, Object) Is Nothing Then Exit While End If urlList.Add(url) counter += 1 End While Return urlList End Function
You would have to do something entirely different. Firefox stores it's URL's in files.... I believe under something like "c:\documents and settings\%username%\Application Data\Mozilla\Firefox\Profiles\<somenumberhash>\history.dat" although now, I think they store it in an sqlite database (same path), making it that much more complicated to read.
![]() |
Similar Threads
- .NET Software Applications Developer (Software Development Job Offers)
Other Threads in the VB.NET Forum
- Previous Thread: Displaying time in a text box
- Next Thread: VB.NET
| Thread Tools | Search this Thread |
.net .net2008 2008 access account add advanced application array basic beginner browser button buttons click code combo cpu cuesent data database datagrid datagridview date datetimepicker designer dissertation dissertations dissertationtopic employees excel exists fade filter forms generatetags html images input intel internet listview mobile module monitor mysql net number objects open panel pdf picturebox picturebox2 port position print printing printpreview problem regex reuse right-to-left save search searchvb.net select serial settings shutdown socket sqldatbase sqlserver storedprocedure survey temperature textbox timer timespan transparency txttoxmlconverter update user usercontol vb vb.net vb.netformclosing()eventpictureboxmessagebox vba vbnet vista visual visualbasic.net visualstudio.net visualstudio2008 web winforms wpf wrapingcode xml year






