Post by Izy Coder on Jan 1, 2015 20:22:54 GMT 10
There are sooo many bug in your AirBrowser. Accidently I found the zip file In "C:\AirBrowse" then I extract it. It work and launch from desktop ! but then I got this bug when using Youtube Downloader Extension : And I have found out the feature that not in AirBrowser, select all in textbox. you can see how chrome work ? when you click the address bar it select all text in that so user can easily delete or copy-paste it. But what I like is when you download the extension, like youtube downloader it's will add download to mp3 in youtube.com. WoW I don't know how you make it. And the theme, app center, extension is so cool ! I love to make one extension/theme but I don't know how. And one more thing, if you want installer I can make one, just ask . Instead of downloading .zip file, you can download a .exe file and run the installer. And too bad, when you uninstalling AirBrowser, the uninstall.exe is still there. It should delete it too. You can try this : Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.MouseDown TextBox1.Focus() TextBox1.SelectAll() End Sub Remove beep sound : 'This code needs to go into the Textbox_KeyDown’ event. If e.KeyCode = Keys.Enter Then e.SuppressKeyPress = True End If
Check Out My Project At VSlang InternetTM. More Project : - Poroxnoss Text Editor 2 - Added soon...
- TAP 2D Game Maker - Coming really soon...
- Easy Desktop - Discontinue..
|
|
Post by LaunchSoft on Jan 1, 2015 21:39:07 GMT 10
It would be a nice idea if you start again from scratch the new version
LaunchSoftware, Greece
|
|
Post by Nathan Lecompte on Jan 1, 2015 21:44:56 GMT 10
Yeah it would, that's what I'm doing to Lumia Browser at the moment
|
|
Post by Prezence on Jan 2, 2015 1:09:01 GMT 10
Oh lord. Yes, it sometimes says xMB out of 0 MB but that's something inside the WebClient. The two error boxes : Well the first one (Win32Exception), check in the install folder (C:\AirBrowse) and see if airbrowse.exe is there. The Ionic.Zip.BadReadException i guess means that the .zip file could be corrupted. It has never done that for me ( but it seems like nothing ever happens to me). Thanks for reporting these. I'll try to fix this but then - I don't really know how because I never get any error messages.... :/
Check out our website here. Check out AirBrowse here. Follow us on GitHub here.
|
|
Post by Prezence on Jan 2, 2015 1:14:51 GMT 10
Thanks Izy Coder about the extensions and apps! That was my favorite part of the browser. Making the extensions you can follow the tutorial at airbrowse.weebly.com/creating-an-extension.htmlBut, you know I've got some bug fixing to do. I had already gone from scratch for this version.
Check out our website here. Check out AirBrowse here. Follow us on GitHub here.
|
|
Post by Izy Coder on Jan 2, 2015 4:56:42 GMT 10
Prezence why does the extension creator in html, can you make it to vb.net because I don't know much about html.
Check Out My Project At VSlang InternetTM. More Project : - Poroxnoss Text Editor 2 - Added soon...
- TAP 2D Game Maker - Coming really soon...
- Easy Desktop - Discontinue..
|
|
Post by Prezence on Jan 2, 2015 5:22:46 GMT 10
Extensions are written in HTML and JavaScript so they can be run inside a WebView. If they were in VB.NET, security would be an large issue because VB.NET can download, run, move, delete, open files which could (if malware was downloaded) could be terrible. Plus, it would be hard to compile and run a string VB.NET code inside of compiled VB.NET code if you know what I mean.
Check out our website here. Check out AirBrowse here. Follow us on GitHub here.
|
|
Post by Prezence on Jan 2, 2015 6:35:47 GMT 10
Ok. I am rebuilding AirBrowse. The reason it would not start was that when I created this version, I restarted from scratch and had just copied the UserControls with the WebControl over. Therefore the DLLs did not copy alongside it into the project and even when they were put in the bin folder, they weren't linked. In this new version, I have made sure that the references have been created.
Check out our website here. Check out AirBrowse here. Follow us on GitHub here.
|
|
Post by Nathan Lecompte on Jan 2, 2015 9:29:37 GMT 10
Hopefully it works out smooth! Prezence It's a lot easier the 2nd or 3rd time, because then you've got a pretty good idea of what you're going to do. (also it doesn't take as long as the first time) Izy Coder Learning HTML is very easy, if you just fiddle around in Notepad++ and make some mini-sites you can learn quite a bit. Check out the videos section, I made a tutorial on how to make a simple website with HTML and CSS.
|
|
Post by Prezence on Jan 2, 2015 9:57:36 GMT 10
Haha I know the only thing I really re-did was drag the WebControl in to the usercontrol instead of copying it in from another solution. The rest was a piece of cake so I'm actually almost done, I'm just cleaning up the UI of a few forms and then making the add-on downloads asyncronous. then an update will be released (hopefully tomorrow or Saturday.
Check out our website here. Check out AirBrowse here. Follow us on GitHub here.
|
|