Create A Simple Web Browser?
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
ADVERTISEMENT
Dec 9, 2011
Trying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:
Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage
[code].....
View 2 Replies
Jan 16, 2010
I am trying to make a simple web browser in Visual Basic 2008 (with Visual Studio 2008 Professional Edition) that uses the Gecko engine via a tool called GeckoFX and the XULrunner's dll's and resources.About GeckoFX - geckofx - Project Hosting on Google Code The book I am learning VB with hasn't covered this aspect yet but I almost have it all set up - this is just a side project I decided to play with because it looked really easy.
The Problem:
[code]...
I have downloaded both the GeckoFX package and the XULrunner package and unzipped them and placed the GeckoFX folder and the XULrunner folder in C drive.I have right clicked Choose Item in the toolbar and chosen the GeckoWebBrowser control to use in my form app.I know the path to the XULrunner runtime is C:xulrunner My browser only has the windows form with a text box, a button and the GeckoWebBrowser control.Now I need to set the call for the uxlrunner startup path where it needs to be. I have read that if I right click the project in Solution Explorer, I should see this option under properties.. but I do not see anyplace to do this
View 5 Replies
Jan 7, 2011
I have a small project that I was wondering if it is possible to do with java. I know that VB .net has the ability to make a simple web browser using an Internet explorer interface. I was wanting to do the same thing with java. How to compile VB on linux.
View 3 Replies
Jan 23, 2010
[code]Close to no real programming skills (PhotoShop artist turning Visual Basic Beginner)This is a snippit of the code used in my browser. Basically the items that are in the list box are loaded from a text file hidden in the installation directory so a manager (or such) will be able to edit which websites are navigate-able.Here comes the problem though, I have not been able to get it to work correctly it will not block any of the listbox items. If I can remember it will only block the site which is selected.How can I re-code it to make the program block all the items in the listbox instead of just one.(Also if not too much trouble how can I make something that will enable and disable the code)BTW this isn't a commercial program or anything just a project I have been working for ever at home.
View 9 Replies
Mar 23, 2009
I have a simple RSS reader in a Web Browser application I am making. But whenever I click "Show RSS feeds" which makes my RSS reader window show, my application goes non-responsive! VB 2008 isn't registering any errors or warnings!
View 5 Replies
Nov 19, 2010
I have a simple web browser im seting up for a kiosk its pretty generic.It runs in full screen and on top of all other windows it has a combobox set to readonly, the combobox is fed by an array from a .txt file.This all works fine and the user has no way of directly accessing websites that arent supplied to the combobox from the txt file
....Until they click an advert.how to have the web browser check the address its being given against the array before allowing access to it?
View 2 Replies
Oct 13, 2011
I am trying to create a simple browser that will be mainly for personal use. I followed a tutorial to create the actual browser; the address bar and the Go button and now I need to create the Home button, Back and Forward button.If I can find the source code for it, I am going to implement it into my sample browser and perhaps?
View 20 Replies
Aug 19, 2011
Hi, I need to program a simple Web Browser that can search for keywords and store relevant data in another file.I am facing a problem with authentication, mainly cookies and maintaining a session.So I read that Web Browser Control is based on I.E.? So may I know how are cookies and session handled?Do I have to implement them manually or are they stored and retrieved from the same folder as the one used in I.E? If so, if I delete the I.E.'s cache, am I also deleteing the cache of any Web Browser I make using Web Browser Control?
View 2 Replies
Apr 20, 2007
im making a web browser which is intertwind in a project, but i cant get the progress bar to display the current percent of a page that is loaded, i want to have 10 segments, each standing for 10% of the total page loaded. So say a page is loaded 67%, 6 out of 10 of the segments will be shown.
View 3 Replies
May 27, 2009
I'm wondering, is it possible to create a (REALLY) simple web server in VB.NET? I may be wrong, but don't you essentially just need a listener for port 80 and a way to send pages to the client?
View 3 Replies
Jan 4, 2012
Im trying to create a program with a simple gui that enables me to search for and select parent folders containing child folders containing multiple files and then validate those files based off of constants i set per child folder and file.
Example
User selects Parent FolderX
Parent FolderX > (ChildFolder1 ( Constant for ChildFolder1 says open file 4 ) > File 4
Compare multiple strings of text in a specific order based off of file name to constants i have set for that named file Then continue to ChildFolder2 ( Constant for ChildFolder2 says open file 16 ) > File 16 Compare multiple strings of text in a specific order based off of file name to constants i have set for that named file If there is any constants not read in one of the files after all have been checked, return msgbox with a notification and write .txt log with child folder and file names to specified directory?
View 4 Replies
Mar 2, 2011
My professor said that if I create a cleverbot she will give me a high grade but the problem is I only have 2 weeks to do it. Please help me, i can connect vb 2008 to ms access ( i think i will need it)[code]...
View 39 Replies
Oct 31, 2009
I just want to be able to click on a commandbutton, menu_item, or maybe even a wizard at program install time, to make the database from scratch.
1) I do not care what type of database it is it is as long as it will run on any pc machine without having other programs installed except the one im creating.
2) I do not want to use access or the designers to create the database either
[code]...
View 7 Replies
Apr 22, 2012
I apologize if this question is something of the most simple, but I'm not even sure what terms I should use to search. What I'm trying to do is create a 'Sub' that will do something when I call it in another Sub, however I am unsure in how I would pass variables from one another. Here is what I have;
Private Sub Log
LogBox.AppendText(logstuff & vbNewLine)
End Sub
[code].....
View 2 Replies
Jul 12, 2010
I am currently painting a light blue, partly transparent overlay over owner-drawn objects to indicate certain state. It's OK but I thought that it would be even nicer if I could at some sort of glass effect to further establish the idea that the particular object has "something" overlaid over the top of it.
I thought that some glass streaks, for example, in addition to the blue transparency would lend a nice effect.I've Googled around for GDI+ (and others) algorithms to do simple things painting like this but have come up empty. I prefer .NET but can figure out the painting from pseudo-code on up.
Sorry, shoul've also specified that I need to target WinXP and using .NET version 2.0 - So unable to use WPF or Vista/Win7 goodies.
View 3 Replies
Dec 18, 2010
today I attempted to create a simple application using codedom.Basically I want to be able to compile a messagebox with the custom text entered in the builder.
This is what I have so far.
ICompiler.vb Class "Codedom" Class and in my main form "the builder I have this
[Code]...
If no one could help me perhaps does anyone have a simple source example?
View 1 Replies
Apr 20, 2010
I wanted to create a simple application which has 2 forms.the first one contains a combobox which has the list of names of reports.now i select this report and click on next which takes me to the 2nd form.there i have to enter 4 values(or parameters)like the date from and date to and other 2 values...using these 5 values i want to retrieve the respective reports from the archive folder based on these parameters...i just know how to select and move to the second form from the first..how do i achieve my goal of retrieving the pdf files.i want the result in a table form which will have column names of the parameters i pass and the last column with the report pdfs.
View 6 Replies
Mar 29, 2011
I want to create a simple calculator using only 1 textbox , 1 button and 1 label, but I don't know how to create the code.
for example if i write : 53+35-33=
and if i press the button it will calculate and the answer the label will show the answer (55).
View 3 Replies
Nov 21, 2011
My assignment this week is to create a simple cash register. The kicker here is that I have to have an input box pop up to accept the data. I know I need to use a Do Loop here, but I' not sure what the proper condition should be. Hitting cancel on the input box or inputting nothing ought to terminate the loop.
Private Sub btnCheckout_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCheckout.Click
Static decPrice As Decimal
Static intCount As Integer
Static decSub As Decimal
[code]....
View 1 Replies
Oct 25, 2008
i want to create a simple clock with different time than PC.I mean to say that application will as a user to input time in HH:MM:SS format and after it is submitted clock start from that time.
View 2 Replies
Jun 3, 2010
how to create a simple controllable 3d cube? I think the code should go in the form.paint area, but i dont know what exactly to put..
View 2 Replies
Jun 25, 2010
I want to create a new module in DNN (VB) ... that;
1. does not use DAL or DAL+
2. has only one view.ascx control
3. It has to be a compiled module
I do not need DB connectivity and any bells and whistles just one view control. I thought it would be simple but googling for a day now and it seems very complicated.
View 1 Replies
Apr 26, 2012
I am trying to create a simple DVD Player with Visual Basic 2008 (Express). But I am trying to find this item for the Toolbox-"MSWebDVD".
Does anybody have, like a download link to get it for VB 2008? If you do provide me with a download link, then I would kindly ask to tell me on how to apply it.
View 3 Replies
Mar 5, 2012
I would like to create a simply shortcut to a specified program. All of the codes I've tried use the WshRunTime library and it seem to throw an exception every time.
View 3 Replies
Jan 5, 2012
I wrote webbrowser program with .net. but it's something i need to know it's irrelevant about webbrowesing.. i create simple login console?
View 1 Replies
Nov 15, 2009
as I'm starting at this I'm very confused trying do this stupid code in visual basic 2008 in .net : Each time i create an instance of clsTest (for example) i would like to do an attribute call mID that adds 1
For example:
instance 1-
mName = test1
[code].....
View 3 Replies
May 20, 2010
How to create an address book in visual basic? I have the VB2008 express. Just a simple one. FirstName, LastName and Phone. I should be able to add from there. The resulting file could be an excel based or text file. I do not have Microsoft Access at home.
View 6 Replies
Jun 8, 2012
i want to create a simple chat and server application but i dont know where to start in socket hope someone will help me to create the application.
i found some tutorial in .net but it doesn't explain the code.
View 3 Replies
Feb 20, 2010
I recently started working with Vb.net and I am just trying to create a class that has two properties one is StoreName and the other is StoreImage. What I am trying to do is figure out how to create objects using this class? Each object will be a Store that has a corresponding Name and Image to go with it. Here is the code I have written so far although I am not sure if im headed in the write direction with the function. Also not sure if it matters but I am using ASP with VB?
Imports Microsoft.VisualBasic
Public Class Store
Dim NameofStore As String
Dim ImageofStore As Image
[code]....
View 2 Replies