VS 2008 Program To Grab Any Image On The Site?
Mar 26, 2010
I want my program to grab any image on the site that the url starts with like lets say can I use wildcards on vb.net?[URL] like [a-z|A-Z|0-9] or something like that? The full url for a image smaple would be [URL]
View 6 Replies
ADVERTISEMENT
Jun 15, 2010
Have code
WebBrowser1.Document.GetElementById("email").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("pass").SetAttribute("value", TextBox2.Text)
WebBrowser1.Document.Forms(0).InvokeMember("submit")
System.Threading.Thread.Sleep(500)
WebBrowser1.Navigate("http://www.vk.com")
How do I make that when login to the site, name and lastname written in Label1.Text.
And if the password is not correct, written in Label1.Text "Wrong password"
View 10 Replies
Jul 22, 2011
I am making a world clock app that relies on an internet response... I have made a situation where it sends the latitude and longitude to a website and the website generates a response in the form of an xml file in a webpage... Here is a demo:
[Code]...
View 3 Replies
Oct 13, 2010
When i publish my program i choose to let the application check for updates via a website and if their is one update automatically when the program starts. Is their a way were on the main user form i can make it so that the user can change the update site with out me building the program again with the new site. I want to do this becuase the site i use goes down alot so when i changed the update url no one was able to download the update for the new update server.
View 16 Replies
Feb 9, 2010
Ive got an app that holds a list of site we have, At each site there are a few devices. The idea is when they click on a site all the details for the site are loaded and then a second thread sits and pings each device to see if its live. Im trying to do this in a seperate thread so if they click another site while its still pinging them it doesn't wait before it switches site. This all seems to be workling fine except if you click through the sites quickly, when you do that it will eventually come up with
Quote:
{"Collection was modified; enumeration operation might not execute."}
The error flags up on the "Next" line in "ThreadedPing"
Thread stuff
Public Sub ThreadedPing(ByVal dt As DataTable)
Try
Dim dr As DataRow
[CODE]...
View 2 Replies
Jan 29, 2012
I'm making an application that involves grabbing an image from a website. On said website, there's only one .png image that needs to be grabbed, but the image name changes. I'd like the image to show up in a picture box. Everything's working out except one line.[code]
View 1 Replies
Apr 10, 2011
I was searching MSDN for a function to grab an image from a website and add to my imagelist control. I could not find any thing on MSDN but did come across this.
image = ImageList.LoadImage(Filepath or URL of image)
http://social.msdn.microsoft.com/For...9-f63e40d2ccce
but there is no property in the imagelist control that does that.
am i missing something? if not what would you suggest best way to grab a url to use in my listview as an icon.
View 2 Replies
Dec 14, 2011
I've got myself a listview, and an imagelist. I'm using the following code to grab all images from a folder and place them into an image list.
[Code]...
View 2 Replies
Jan 31, 2011
I'm making an image uploader for a site but sometimes a captcha from [URL] appears? Is there any code I can use so when the captcha appears, a box with the captcha image appears so I can manually solve it? I've seen some programs that do it so i know it can be done...
View 5 Replies
Oct 28, 2009
right let me try to explain what i am trying to build.a bit of software which logs onto a website and downloads all of the users images i have found all the URLs etc and can build most of my vari
View 4 Replies
Jan 18, 2011
I want to be able to double click a custom file that contains text and it pulls up my program and adds the text in the richtextbox.
Basicly I created a file extention called .pwt but I can't get it to load the text stored in it on the richtextbox.
View 14 Replies
Apr 21, 2010
I had a for a program that would grab the current url and display it in like a label or something on my VB project. I have no idea how I'd go about doing this. The thing I'd like to do is simple, but I just don't understand how...For example:
1) Click a command button on my VB Project
2) Say I'm currently on [URL] it grabs this url and places it on my VB project.
View 1 Replies
Oct 13, 2011
I am making the tough transition from VBA to VB and would be pleased to hear from a VB expert. I am trying to make a program to grab numbers from the screen so that I can log them to a text file. The numbers are part of a flash animation which is regularly updating the number I want to capture and as there is no API i am grabbing the region where the number is displayed into a bitmap and then want to recognise the number with OCR. The code below grabs the screen region ok.
[Code]...
View 1 Replies
May 24, 2012
I have a https site where i have to display images from a http source. To enable this i want to make a proxy, so i can display the image as:
src="https://mydomain/showimage.aspx?url=http://externalserver/image.jpg"
I can do this in Java, somthing like this:
Code:
InputStream in = new WebInputStream( url );
BrowserOutStream out = new BrowserOutStream();
while(in.read()){ out.write() };
in.close();
out.close();
Simple enough (although the code is simplified here). But i cant seem to find a proper example of the equivalent in vb .net. I am assuming i have to use System.Net.WebClient.OpenRead, but not sure where to go from there.
View 1 Replies
Aug 16, 2009
Im trying to create a program that will login to a site for me, and cant get it to work for some reason. The code on the site im logging on to looks like this
<!--<p class="pleaselogin">Please Log In!</p>-->
<div style="MARGIN-TOP: 1px; COLOR: rgb(153,0,0); FONT-SIZE: 12px"
><b>Member Login</b></div>
<br>Sign in for more FREE features and tools!<br><br>
<form method="post" action="http://my.domain.com/login
[Code]...
View 2 Replies
May 27, 2010
I Was trying to make a program in vb.net, its idea like that
1) Check site titles name in every web browser that opened in the computer
2) find a specified word in the site titles
3) if the program found it , it Msgbox the site URL
I have tried this to check site titles name in every browser
Code:
For Each a As Process In Process.GetProcesses
Dim x As String = a.MainWindowTitle
x = x.ToLower
[code]....
but the problem in this code that if i'm opening some tabs and specified title in site is opened but i'm in another tab (another site) it does not work !
so how can i fix it ? and how can I make the program gives me the URL if specified word in title is found in IE and Firefox?
View 3 Replies
Sep 2, 2009
How do you set Site values in FTPWebRequest in VB.net.[code]...
View 1 Replies
Nov 5, 2011
I have a 'health check' program that I have scheduled to run every 10 minutes. When it detects a problem, it sends a message to my cell phone.
Right now I have it checking databases by connecting to them, and trying to open them - that seems to work fairly well. I also have it checking web sites but all I'm doing to test them is[code]....
View 3 Replies
Jan 10, 2012
I have this working code from this link, to upload a file to an ftp site[code]...
I wonder, if the file already exists in the ftp directory, the file will be overwritten?
View 2 Replies
May 27, 2010
I Was trying to make a program in vb.net, its idea like that
1) Check site titles name in every web browser that opened in the computer
2) find a specified word in the site titles
3) if the program found it , it Msgbox the site URL
I have tried this to check site titles name in every browser For Each a As Process In Process.GetProcesses
Dim x As String = a.MainWindowTitle
x = x.ToLower
If x.Contains("microsoft") Then
MsgBox("microsoft website is opened")
[code]....
but the problem in this code that if i'm opening some tabs and specified title in site is opened but i'm in another tab (another site) it does not work !
View 7 Replies
May 27, 2010
I Was trying to make a program in vb.net, its idea like that
1) Check site titles name in every web browser that opened in the computer
2) find a specified word in the site titles
3) if the program found it , it Msgbox the site URL
I have tried this to check site titles name in every browser [code]but the problem in this code that if i'm opening some tabs and specified title in site is opened but i'm in another tab (another site) it does not work !so how can i fix it ? and how can I make the program gives me the URL if specified word in title is found in IE and Firefox?
View 3 Replies
Jan 6, 2010
I'm trying to write a program that will get certain text from an intranet site, but there is a form for user name and password that I have to enter first. I found HttpWebRequest and HttpWebResponse and can use those, but how do I programatically log into the site so I can get the data I want?
View 5 Replies
Mar 26, 2010
I am not sure if this is possiable but I am looking to build an application that will login to a web site, navigate the site and download files. I would like to do this all in code and able to run multiple instances of the program to get information from many different web sites. Is something like this possiable in VB.net?
View 3 Replies
Aug 4, 2011
i have a webbrowser. listbox and button.
I need it to get info from the website and pop it into the listbox when i click the button.
But im not sure on how to get this info :/
[Code].....
View 5 Replies
Oct 23, 2009
In a textbox, someone puts www.websitehere.whatever along with more text and then clicks a button.. in the Button_Click, I want some code which if www. is in the textbox then it grabs the whole url and replaces it with another url
View 3 Replies
May 19, 2011
I'm deploying a VB.Net app (VS 2010 Pro) that requiers the user click a command button to open IE to a financial WEB site and download informaion from the site. The app works fine in every detail when installed on the development computer. But, on the target computer when the command button is clicked an unhandled exception occurs which says: System.IO. FileNotFoundException:File Not found.My code behind the button is Shell("C:Program Files (x86)Internet Exploreriexplore.exe www,fidelity.com",AppWinStyle.NormalFocus)
This works fine on the development computer. Do I need a way to code this as a relative path? If so,can you tell me how this is done?Throughout the app I have written relative paths to needed files using paths like (Open(Environment. GEtFolderPath (Environment. SpecialFoldder.Desktop) + "File Name). They all work fine when deployed.
View 7 Replies
Jun 19, 2008
I'm trying to write a vb.net program that will upload a file to a FTP site that has SSL (explicit, although I'm not sure what this means).The sample code and explanations I've Googled always assume when it's SSL that I'm using a client certificate. But I have no certificate to load.I simply need to login, accept their certificate and upload my file.When I accept their certificate am I actually installing it on the client? For example of FileZilla a box pops up and I just click on accept, then my login is complete.
View 1 Replies
Jun 8, 2010
My first project is a scraper program. I would like to see if anyone can send me code or a tutorial on how to do it. I would also like to learn how to make a message posting program for a social site.
View 1 Replies
Jan 19, 2011
I want to build a VB program that will go to a web site and pull out a specific piece of data.I am using VB Express 2010 not sure if it belongs in this .net forum.I am successfully getting to the website using WebBrowser.navigate()The data is provided to me in XML format and I am told that it is ready to be retrieved. They tell me to use XML Parser.When I go to their web site I see the data I need to pull out there is a column with tags in front of each piece, the piece I need is between <Vr0> and </Vr0>.I have no resources other than the net currently I do have a dummies book ordered but will be at least next week (at the earliest) before my first book arrives.Can you explain how I can sort through the data and pull out the data in XML format on a web site?
View 5 Replies
Oct 25, 2011
TextBox2.Text = WebBrowser1.Document.GetElementById("msgplace").InnerTextBy the ID "msgplace" has multilple texts with that ID but I dont want it to return all of them. The source code is
<div class="msgcontents">
Text here...
</div>
[code]....
View 1 Replies