Create A File Browser?
May 3, 2010
I've been reviewing some tutorials but can't seem to find the answer(s) I'm looking for.
I have a "Browse" button and I need it to open up a file browser. The trick is this: When the user finds the file and "opens" it, I want ALL the forms in my project to "remember" the filepath and filename of the file they chose.
Do I do this by storing the filepath/filename into a Public String variable and the other forms can access/refer to the main form's String?
View 4 Replies
ADVERTISEMENT
Aug 28, 2010
You know how programs have help files? I really want to make a help file for the internet browser I'm making.
View 2 Replies
Apr 11, 2009
How do I create my own Web Browser?Please remember to mark the replies as answers
View 1 Replies
Sep 23, 2007
I am a beginer and I am trying to create a simple web browser using Visual Basic 2005 Express Edition.
Public Class Form2
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
[Code].....
As you can see from the above code I do not have forward, back and stop buttons. Thats because I do not need them. The browser will be configured to go to a certain website directly.
What I need is this browser should be configured to use specific JRE. That is the browser should use ONLY JRE 1.3.1 or ONLY JRE 1.4.2
View 7 Replies
Oct 5, 2008
I want to create a web browser, and i don't want to use the microsoft web browser element, i want to use webkit can i put this into VB 2008?
View 2 Replies
Mar 11, 2009
I am looking to create a web browser and use Gecko instead of the built in "webbroswer" component.
Any idea on how I go about loading Gecko instead?
View 1 Replies
May 20, 2012
I am trying to create a Web Browser with tabs. Here is my code so far:
Public Class Form1
Private Sub NewTabToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewTabToolStripMenuItem.Click
[Code]...
View 16 Replies
Jul 29, 2009
I am trying to create a browser in visual basic 2008 and have the following problems
1. how can i create tabs in the web browser
2. when i open the link from my browser by "open in a new window" internet explorar pops up.I want my web browser window to pop up
View 1 Replies
Aug 11, 2009
How to create a download manger for my web browser?
View 4 Replies
Jul 18, 2011
I was wondering whether or not I could create a web browser using the webbrowser and the tabcontrol to make it where I could add tabs like in the newer browsers. Or should I just create a bunch of buttons with images and a combo box as my webbrowser?
View 9 Replies
Jul 24, 2011
I noticed in one of your forums somebody had created a web Browser with a built in proxy. What does that mean and how did you do it - I'm coding a web browser myself.
View 2 Replies
Apr 14, 2009
Im tryingto create/run a webbrowser control so that i can check the status. I dont need to see the page so havent placed the webbrowser control on a form - its just in code as follows:
Sub TestBrowse(ByVal url As String)
Dim testbrowse As New WebBrowser
testbrowse.Navigate(url)
[code]....
the problem is that it never initialises and is always at the state 'Uninitialized' do i have to do something to the control to get it to run, or does it have to be physically on a form before i can use a web browse control.
View 2 Replies
Mar 1, 2011
I want to create a fully functional browser with a download manager using Vb-2008.
View 2 Replies
Mar 18, 2011
I create a tabbed web browser, when it loads it has two tabs, one is the main tab with web broswer, the second one is a new tab option when its clicked it creates a new tab. but it has no web browser.this is the code for the new tab.[code]
View 9 Replies
Jan 24, 2012
I hope thisis the right forum for my question. if not, sorry. I am using VB 2010 to create a WPF Web Browser application. I need to open a new page after clicking a button. How do i do this? In vb it would be like form1.show for example. How would it be in this case?
View 1 Replies
Jul 17, 2009
I wanna know How to Create Tabs in Web Browser To all Different Sites At The Same Time.
View 39 Replies
Dec 8, 2009
I'm trying to create a little executable that when launched opens an IE browser to various websites like news sites all in different tabs. for example, a tab for wsj, nytimes, etc. How do I access IE with vb.net? What reference do I need to add? I can't find any sample code that I can make work I think it is because I am missing a library in my assembly?
View 3 Replies
May 30, 2009
I have this code to create an event when a link is clicked in my browser:
Dim link As HtmlElement
Dim links As HtmlElementCollection = Me.document.Links
For Each link In links
[Code]......
How do I get the target of the link (The url which the browser will navigate to when the link is clicked)
View 2 Replies
Aug 16, 2010
I want to be able to take snapshots of the desktop periodically(about 1 every 300 ms) then be able to view them live through a web browser.
Here is what I already have:
I already have a form which takes the snapshots, overwrites a file called 1.jpg with the image. I also already have an http server running which succesfully serves up html documents.[code]...
View 1 Replies
Oct 10, 2010
I have tried last time to do this. but i face lots of hurdles now i want to start from scratch. i want to develop a web browser using gecko skybound rendering engine.
View 2 Replies
Aug 15, 2009
how I could create a pop up to confirm downloads in a web browser?
View 4 Replies
May 10, 2010
I am trying to make a GET request to a .php page. To get to this page I have to pass before to a login page (username and password then).My application has a browser from where I manually login and then with one button I want to do this GET request but not from the browser. I need to create a GET request using the cookie and Session ID from the browser in my app.I think I need to create this GET with the original header from the browser but I am new to vb and I am trying to figure out how:
1. create a simple GET request
2. add cookie, session ID, headers to the GET request
3. get the page source (I already use the browser.document but I'd like to retrieve it from the get request).
View 22 Replies
Mar 26, 2012
am trying to find out is there any way to create a web browser in a vb.net aspx page rather a vb.net form. I have looked on the internet they all seem to be on a form and not a website. The reason I want it on a website is so that i can view other website pages on the website that I am creating for holding game information. For example a user is interested in finding information about a certain game within my website and instead of using another tab or opening another browser page he/she can just use the inbuilt browser on my wbesite.
View 1 Replies
Mar 11, 2011
Is there any way to create a web browser that hides your IP address and pretty much lets you surf the internet anonymously?
View 2 Replies
Dec 8, 2011
I am trying to integrate the ckeditors file browser and upload image tools, i have managed to set the ckeditor to allow you to click on the browse file button and upload tag but how do i use ASP.NET VB to open the file browser and make the upload image work?
I am using the .NET 3.6.0 version where they provided the DLLS
View 1 Replies
Dec 5, 2009
I need to create a small program that runs in the taskbar to monitor browser urls for particular words.We are using it at work to catch people going to certain banned websites in the work place.Right now it works if i hand code each banned site into the code directly and run with a timer:[code]This works perfectly. Problem now is the Admins want direct access to add/remove different sites to the list.There is no way I am giving them access directly to my code (a bad day comes to mind).So I am attaching a small database with a small table to the server and allowing them to add URLS there. I am stuck in how to use this data though.I have tried pulling up the database column into a listbox but can not configure the code to check each line in listbox to compare to each browser window.
I also tried listed the items in a one column datagrid and try to loop through each row to compare each window.I need each browser window to be compared to a list of items and trigger events if a match is found.If your wondering why I am building this, our IS security people are all or nothing. Either no Net or Full Access.Also our people are a bit to smart to be tracked through history or simple blocking methods.
View 2 Replies
Jun 12, 2011
how do I create a label that when clicked by the user, it will open a website using the default browser. I have seen the control LinkLabel but I do not know how it works or how to use it.
View 3 Replies
Sep 27, 2010
Do you have some source code how to open a file (file browser) with file extension specific using Visual basic.net.
Just need to get the path then control this using the vb.net binding
View 2 Replies
Dec 21, 2011
I have an xml file that contains a file/folder structure.I'd like to load the xml file into a Listview (Details view) and being able to navigate through the folders by double-clicking on them.Basically the same as you can do with Windows Explorer, but not with actuall files on the hard drive, but solely with files/folders listed in an xml file. Or shown in the picture below from an FTP client. Double-clicking on "Images" will show the contents of that folder, double-clicking on <Parent directory> will show the contents of the parent directory.I don't need help with the icon/filetype, but I have no idea where to start with the 'xml folder navigation'.
View 1 Replies
Jun 4, 2011
i hve build 1 system inventory using vb.net 2008.can i run execute file from browser...maybe like in asp.net..
View 5 Replies