Post by ranilwallace on Aug 9, 2015 12:32:33 GMT 10
|
|
Post by ranilwallace on Aug 13, 2015 23:20:29 GMT 10
have u finished with the app framework?
Ranil, Lauve Tech
|
|
Post by dionterry on Sept 9, 2015 7:27:12 GMT 10
These apps that i keep seeing on here are poorly made, if you want enhancements just let me know, i know this is my first post but i was just checking out this site, and decided i'd like to help!
|
|
Post by Prezence on Sept 9, 2015 8:30:05 GMT 10
It is not poorly made as much as maybe a few hours have been spent on this project so far. dionterryFeel free to demonstrate your work...
Check out our website here. Check out AirBrowse here. Follow us on GitHub here.
|
|
Post by dionterry on Sept 9, 2015 10:11:09 GMT 10
Well AirBbrowse honestly isn't that bad looking at all, just some additions could be added such as web filtering, by website category and keywords within a page which can be acomplished semi easily. But of course any program can be made better so it just takes time.
Here is a very simple way to get its category.
Public Sub Display_Website_Category(ByVal url As String) Dim w As New WebBrowser AddHandler w.DocumentCompleted, AddressOf Page_Loaded w.Navigate("http://www.fortiguard.com/ip_rep/index.php?data=" & url) End Sub
Public Sub Page_Loaded(sender As Object, e As WebBrowserDocumentCompletedEventArgs) 'This must be put in after navigation is complete MsgBox(CType(sender, WebBrowser).Document.GetElementById("lookup_cate").GetAttribute("value").ToString) CType(sender, WebBrowser).Dispose() End Sub
Yes that function can be enhanced as well by just using a webclient, but i made it real quick for general purposes!
|
|
Post by Prezence on Sept 9, 2015 11:58:53 GMT 10
Ok well thanks. Ill see if I can add that into my upcoming browser (not AirBrowse).
Check out our website here. Check out AirBrowse here. Follow us on GitHub here.
|
|