Forms :: Make A Program To Find Some Text On A Website?
Aug 26, 2011
I am trying to make a program to find some text on a website and fill a text box in the program with that website text.
The website is Generate a Random Name - Fake Name Generator
I would like to take the info generated on that site and fill in text boxes in visual basic.
WebBrowser1.Navigate("http://www.fakenamegenerator.com/")
System.Threading.Thread.Sleep(2000)
Dim theElementCollection As HtmlElementCollection
[Code].....
View 1 Replies
ADVERTISEMENT
Aug 30, 2010
I want to make a program that sends text in the text box to a form on a website and print the page as .xps
View 2 Replies
Jul 5, 2010
Im trying to make a program which would check for users from text file on a certain website I can populate the list box, and loop through it's items here is the code i came up with so far and it doesnt work properly, it pops out first item in the listbox, and last item only, even though that they shouldnt be popped out
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
If Not ListBox1.Items.Count < 2 Then
[code].....
(this is supposed to check every user, and if user doesnt exist, website will return page not found, else user exists and his name is added to listbox2)
View 6 Replies
Jun 17, 2012
So say that I want to find the word "Hello, world!" on a webpage. It has the ID "Text". Using a WebBrowser named WebBrowser1, is there a way return true if that text exists on a webpage, or if it doesn't exist, it will return false? The URL would be EXACTLY the same either way.
Edit: The HTML path to get to it is very long, so I'd need to find the text on the page.
View 2 Replies
Apr 8, 2009
I`m making a program.I`d like to know how to make a code which will navigate to my website and find if there's a newer version of my launcher..I`ll search some codes now, If I find some interesting codes i`ll post here so u can upgrade or tell me how to correctly use them for my auto-update.I cannot publish my Launcher unless I`ve an Auto-Update in my Launcher.
View 1 Replies
Jun 4, 2010
Im trying to make a frame on a website refresh with a new src.
This is my function in a seperate module PHP
Public Function StatusRead()
If Form1.WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then
Dim theStatusCollection As HtmlElementCollection = Form1.WebBrowser1.Document.GetElementsByTagName("frame")
[Code]....
The flag is declared at class level in my form1.vb and the reason for the flag is to stop the frame endlessly refreshing
View 1 Replies
Jun 10, 2011
WebBrowser1.Navigate("http://" + TextBox2.Text + "/robbery/index/humanhunt/1")
How can i make this code execute the times that TextBox1.Text indicated?It should be some kind of loop. but i want it to repeat this every 100 milliseconds?
View 3 Replies
Aug 18, 2010
Hi, I'm working on a program that reads text entered into a textbox and creates a list of items by separating entries by commas. Everything is working fine, except, because I am using an array to store the items in the list, I have a limited number of entries. This is only a problem because, as it is written currently, each comma counts as an individual entry. Therefore, users can enter ",,," for example, and it would use up 3 places in the array.
I'm looking for a way to check to make sure there is text after the comma before adding an entry. I've attempted to use the .substring command to check the character after, which works until it gets to the last character. Because there is no character after that, it will give an error.
Here is my code for extra clarity:
Public Class frmMain
Dim intCounter As Integer 'Stores the # of commas in the string
Dim Messages(49) As MessageProperties
[code]...
View 4 Replies
Jun 28, 2009
I'm BRAND NEW to programming, and I'm starting to learn VB. I need to write a program that views images on a website that are organized. I have 2 textboxes in which you enter variables which affect the URL. It doesn't load anything though when I enter values into the textboxes. Here is the
Dim shoot As String
a = TextBox1.Text
Dim pic As String
b = TextBox2.Text
[Code]...
Also, i want to be able to enter something else in the textboxes and be able to press the button again to load the new image
View 3 Replies
Sep 17, 2009
How can I make my text box go to the enterd web address, through the user's default web browser?(And not by creating an actual web browser in the application..)
View 5 Replies
Feb 12, 2011
Is there any way to make a program that gets data from the input site (like the javascript: Time left:, and the bidding page)
my goal is to make a program that will bid your maximum input using your credentials at the last minute... i hate loosing bids...
is this even possible with vb express 2010?
View 1 Replies
Jun 6, 2009
I cannot find a way to make a program that I write make a shortcut in the start menu for all users.My final goal is to make an MSI and deploy it in group policy to all users on a computers OU. Is this possible?
View 5 Replies
Apr 18, 2010
I have a few questions.
1. What is the best when user doesn't have to see a website: WebBrowser Control, WebClient or something third?
2. How to get element by id in WebClient Class.
3. I am trying to make a program that will read stats of a website from Alexa. How can I make a code that will read Alexa Traffic Rank if code looks like this:
<div class="data up">
<img src="/images/icons/globe-sm.jpg" alt="Global" style="margin-bottom: -2px;">1,126</div>
4. Can someone show me an example of Google parser?
View 1 Replies
Jan 2, 2010
i am trying to make a program that registers and account on a website?
WebBrowser1.Document.GetElementById("date_month").InnerText = ComboBox1.Text
WebBrowser1.Document.GetElementById("date_day").InnerText = ComboBox2.Text
WebBrowser1.Document.GetElementById("date_year").InnerText = TextBox1.Text
[code]....
1. When i inpute the month, it doesnt input it, it just makes the combobox on the website smaller for some reason
2. I cant get the email working because you must put your birhtday before it shows where to put your email, obviously fixing the first problem should fix this.
3. There are 2 radiobuttons on the website, for a boy and a girl and I have 2 radiobuttons in my form, however I have exactly no idea how to program it to change.
View 7 Replies
Oct 19, 2010
Ive been trying to make a program that scans a website for the Forum directory mainly to learn about HttpWebRequest.I know that i need the url, and the request, so i set that up like this:
Dim Message As String = String.Empty
Dim request As HttpWebRequest = DirectCast(HttpWebRequest.Create(Url), HttpWebRequest)
and i set the Credentials to DefaultCredentials Now, How would i scan the directories?
i've tried
for response as HttpWebResponse = DirectCast(request.GetResponse(), HttpWebResponse)
logBox.Text = logBox.Text & vbNewLine & response.ToString()
next
but this has errors...Just trying to scan a site for multiple directories using HttpWebRequest.
View 4 Replies
May 15, 2011
I am new to Visual Basic. I have Visual Basic 2010 Express. I am planning to make a program that can download files from a website to put on an SD Card to Soft Mod, or hack it. I want it so that the user clicks on a radio button based on what System Menu their Wii is running on. There is currently, System Menu 4.0 or less, System Menu 4.2, and System Menu 4.3.
They also have to choose a region from a List Box. The current options are:
Region U (Americas)
Region K (Korean)
Region J (Japanesse)
Region E (European)
I also want it so that the user can choose where to download the installation files for the Wii soft Mod.
I want to have a button that when the user clicks on it, a pop up asks them where they want to download the files to appear, once they choose a location, i want it to download a file based on what they chose and i also want it so that it tells them what to do with the files and where to put them.
View 3 Replies
Dec 1, 2009
I have a pdf here that we use @ my company.I'm trying to write a program that fillsout the pdf.i know iTextSharp exist but i can't seem to find the forms id.
View 19 Replies
Oct 21, 2009
Yeah, I want to make the program find a certain word, such as 10.5, in a textbox. It will have multiple lines. textbox5 is the textbox and a word, like 10.5 or longer such as 10.10.10.10.10.10. an IP.
View 1 Replies
Mar 9, 2009
I use resource files in my web page.
my language in website is English and Farsi(Persian)
BUT I DO'NT KNOW .....
how to change text align or text direction in webpage with ASP.net and VB.Net 2005 ?
View 2 Replies
Apr 29, 2010
Would it be possible to make my program visit a website and basicly filling out a text field and using the submit button in a form?For example; I have a text field named "Field" in my webpage, and I want my Visual Basic 2008 application to visit that page, and automaticly fill out that field named "Field" with a string I gave my application, and next to click on the submit button.The purpose for this is because I want that the users of my application can post feedback on my webpage. I was looking for something like a MySql client but it's best if I would encrypt/hide the protected information such as table names or MySql passwords.And I believe that these users need to have specific MySql drivers installed to use it. So this idea sounds better. So, is there a way to navigate trough a website like this?
View 4 Replies
Dec 23, 2010
so I had an idea today while modding a game I play. I decided to make a mod-manager.In order to start the game with mods, you have to go to the website, log in, click playnow and view the source of the html file. From there you get the sessionID variable and add it to a shortcut on your desktop. I wanted to be able to automate this process by doing the following:
on button1.click: somehow parse the source of the html file to locate the line that looks like chis:
var sessionId = 'random26charSessionID'; and take what is inside of the ' ' and add it to textbox1.text
Any ideas? Not sure if it will be in the same line every time with add banners and stuff...so I wanted to parse the doccument.
View 1 Replies
Dec 18, 2011
[code]How i can make The Program to find Numbers On Form and Do That without making So Many "Same" Codes?Its Pretty Annoying To Make Big Program nad only Copying and Pasting Text.
View 3 Replies
Nov 13, 2011
1) a text document which has content like :
uber|uber|ultra
taxi|taxi|taxi cab|cab|minicab|airport taxi|airport transfer
genitalia|genitalia|genitals
[code].....
View 1 Replies
Jun 22, 2011
I have a XML file. Inside the XML file where ever I find the string as ("C:Results est1_01") I need to replace it with ("B:final est1_01") and save it.
View 1 Replies
May 24, 2010
my program is crashing when i use this code to find the textlength of a text box.this is my code
TextBox13.AppendText("dcmd(" + TextBox14.Text + ", " + TextBox14.TextLength + ", cmdtext);" + vbNewLine)it crashes on textbox.14.textlength
View 7 Replies
Apr 25, 2012
im trying to make a program in which if the textbox text and the listbox text are the same order, which they are in the picture, a bluie fonted text saying well done appears. However only the red text appears which is only meant to come when the order of the text in both listbox and textbox isnt the same.
Here is the code that i used for this:
listarrays = name of listbox
textbox1 = name of textbox
l is the name of the label for correct answer(blue font)label3 is name of label with red font which should only appear for wrong answer
Dim text As String = Me.TextBox1.Text
For Each item As Object In listarrays.Items
If item.ToString = Me.TextBox1.Text Then
[code].....
use another textbox instead of the listbox but thats just making itmuch harder for me as I already made the full code working with the listbox. My lecturer told me i need to convert both in string so both textbox and listbox are compatible and i did so (see code above) but the correct label doesn't show?
View 17 Replies
Sep 30, 2009
I know the code to make labels invisible but i dont know how to make them invisible as soon as the program starts. where would i have to put the code fro that to work?
View 2 Replies
Apr 5, 2009
I need to make the text value of a checkbox appear on a listbox when I check it and when make it disappear when I uncheck it. However, I need to do this with 100 checkboxes, and doing it per checkbox, I need a code that for any checkbox checked and unchecked, the text value will be listed or cleared on a listbox.
View 4 Replies
Jun 14, 2009
I want to make a ProgressBar with text inside it and I want to make the ProgressBar not using bars. Sample in the picture :
I can make the text inside the ProgressBar with CreateGraphics and DrawString, but I still can't make the progressbar not using bars.
View 6 Replies
Sep 25, 2011
application i'm developing in school.I am trying to make the program detect when the user copies new content to the clipboard,when this happens I want the program to check the data type,
I want text content to be written to a text file.Images can be left alone.if a file or folder is copied, i want the location of the copied file and the file name to be written to a text file.
I only really need help in getting the program to detect a clipboard modification, preferably with the AddHandler statement.
View 2 Replies