Log And Search A Webpage In 2008 Program?
Sep 12, 2009I want to make a program that connects a webpage and logs in it .And than it should able to do searching in that webpage.[code]...
View 2 RepliesI want to make a program that connects a webpage and logs in it .And than it should able to do searching in that webpage.[code]...
View 2 RepliesI need to scan a webpage to see whether or not there is an image on the webpage. I have the id of the image which is "apples", and I want the program to search the webpage for the image, and if it is not found, to go onto the next thing (which would be to start timer2).
[Code]...
I would like to make a program that will automate a couple things on a webpage. Here is the things I would like to automate:
[Code]...
Im trying to create a small program using the "toaster popup effect". I have the working. My problem is , i have a basic webpage here ( http://www.pro-coders.com/latestthreads.php ) that displays all the recent threads thats created on my forum, so i want to make this popup when theres a new thread to alert the users.How could i code it to automatically detect if a new thread has been posted from the webpage ?
View 2 RepliesI wanted to make a that searches a web page(ex: wikipedia.com) for certain keywords from textbox?
View 2 RepliesIn the program that I am creating I need to scan/search a webpage for a image. I have the ID of the image which is "dog", and I need to scan the webpage to see if the image is on the page. If it is not then I will start timer2, but if it is then I will pop up a message box saying that it was found.
Here is the code I have so far:
Dim Dog As String = WebBrowser1.document.GetElementById("dog").GetAttribute("src")
If dog = Nothing Then
Timer2.Start()
[Code]....
I want to create an invisible webbrowser which searchs for a text in a webpage, like if it finds "update available" that then imagebox1.visible = true
View 1 RepliesI have tried to create a bar to search the form
View 1 RepliesI want to search for a particular string in web page loaded in web browser..
webpagecontent1 = WebBrowser1.DocumentText.ToString
dim strer() as string= {"Hell,"Heaven","Good"}
For Each i As String In strer
[Code]....
I am trying to create a program which does something similar to a function in excel but with increased functionality. What I need to know for this is how to get the program to search a webpage's source code for a specific string and unfortunately I have no idea how to even begin going about this.
View 2 RepliesI am making an application that will save all the names of the movies in my "movies" folder on my computer. I am able to make a list of all the names quite easily, but how would it be possible for me to search The Internet Movie Database (IMDb) for the title of the movie, click on the link of the name of the movie and grab information of the movie off the imdb database (Run time, rating, and plot?)
View 14 Repliescode for Word Search in a webpage for Tabbed Webbrowsers?
View 3 RepliesI was looking through the internet for codes for word search and the onlyone i found was for non-tabbed webbrowsers.I've been fiddling with it but i cant figure out how to change it for Tabbed Browsers.
View 9 RepliesWith writting a program that demotrates Binary Search Tree operation(insert, delete, and search)in VB.N NET?
View 1 RepliesHow do I automate a web page (e.g. retrieve page text, login website, search, click button or hyperlink) via WebBrowser?
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.
The program allows users to insert Documents along with a bunch of their attributes into the program. The documents are stored in a relational database. One of the required functionalities is allowing the user to look for such documents. The User normally search directly for the obvious attributes of the document, like a unique ID, or it's Title. The problem is that from the search parameters is not allways known which ones will the user fill. For example the user inserts the name and version of the deocument, another time the user enters part of the Title and the person that delivered the document, or might just enter the document number and nothing else. Some of the data might even be incomplete, like title, name of the person who created the document and so on. The idea from the person who designed the system (I'm only reimplementing it) was to allow easier searches for the user, and allowing the user to search for more parameters tod with the idea that "the more parameters, the more specific results", since the results are always group of documents instead of single documents.
View 14 RepliesFor web development usually when a person makes a web site for someone else they have a program if the customer wants that can edit the text on a page. How would this be done? Accessing a ftp server by chance?
View 2 RepliesI am making a simple application and im using a browser embedded on a form im able to tell the nrowser what address i want it to open i would now like to enter some text into a text box and then have the program enter it onto the web page and then i want the program to click the next button on the web page[URL}..that is the site i want opened and then i want the user to have entered the postcode in a textbox in the application and then click a button which opens the page enters the postcode and clicks next
View 5 RepliesWhat I am trying to do is go to a website using a webbrowser, and then simulate a click. I can do this easy enough when the click is on a regular button, not handling javascript. But it seems that the website has a javascript function handling the click that I want to simulate[code]...
View 1 RepliesWe have an ASP classic ERP (very large application) that we want to rewrite using ASP.NET. I am looking for a way to organize the application so we are going to be able to separate every program / webpage (over 400) from each other. Every program needs to be independent because many developers will work on the project at the same time.Visual Studio seems to make a DLL for every assembly so I was wondering if it's a good idea to make a huge solution with one project per DLL.[code]This way, we would be able to deploy every program separately without altering the others. We would also have over a thousand DLL to manage...
View 3 RepliesI want to download the same information which is obtained when we right click view page source in browser. I want to do this either in vb.net or perl
I need it for google image search result webpage.When that page is saved then html code is not same as view page source info.tags for images are absent. [code]...
I'd like to know if it possible to show HTML page created in VB using WebBrowser object without using files on disk.That is, create HTML file in memory and show it within WebBrowser object.
View 3 RepliesI have ran into a small problem with my code. I got bored lately so I wanted to try a project. A program that will start up with windows starts up and it opens a webpage like google.
My code is below.
Imports System.IO
Public Class Form1
[CODE]...
I use the code [code] System.Diagnostics.Process.Start [URL] when a button is clicked, but when I add that code in without clicking a button, it does not work. I have tried to put it everywhere, but it just does not work. I have also looked it up.
i have an aspx page with vb.net back end. in that page i get names and url's from the database depending on different conditions. My requirement is that when i get the url, the code should then use that url and have that webpage in a small preview form on my existing aspx page. so basically i have a table as follows -
[Code]...
I need to create/get a simple program that opens up a webpage, writes to a log if it is successful or not, logs out and repeats 5 minutes later.I'm not a coder myself, and I have no coders available at my work, I do on the otherhand have access to Visual Basic .NET 2010.
View 5 RepliesI am parsing a web page with the HTML agility pack in vb.net and it works great most of the time, but I have come across a site I need help with.
When I go to grab the web page with my http object (I am using chilkat http and it does not have a javascript engine) I get back the page which is poorly written with document.writes for basically the entire page.
I do not want to use the browser control to first render the page.
Do you know of anything that will allow me to parse this page easily with xpath... does xpath work with javascript? Is there a way for me to remove the javascript with the agility pack?
I've been trying to make a program which access the internet and takes the source code from the webpage. I've copied this code from the internet:
[Code]...
I have already posted a thread regarding this but no one has ever shed a light upon it. I want a program that searches for files (.docx, exe, ppt, txt) from all folders.
View 7 RepliesDo you have any tutorial how to make a search program in vb.net?I am using dotNet2005 and MS-Access. As a newbie programmer, I know how to make a program that seeks with single filter, but like the picture below that seaches with many filter is out of my programming knowledge
View 1 RepliesI want to be able to effectively search an array for the contents of a string.
dim arr() as string={"ravi","Kumar","Ravi","Ramesh"}
I pass the value is "ra" and I want it to return the index of 2 and 3.
How can I do this in VB.NET?