Search results for query: *

  1. T

    Question WebClient Proxy Issue...

    I have been working on a small application that can crawl Google to show some of the search engine results pages and the WebClient normally connects fine, but after trying to connect to Google thru the WebClient proxy property, it just isn't connecting properly. Here is the code that I'm working...
  2. T

    HttpWebRequest Post...

    I am a member of a forum that allows for a BUY/SELL/TRADE section where I'd like to make a couple posts a week. I'd like to use the interface of my VB.NET application to post there. I learned how to login to a the Rocbattl.com forum which was pretty easy to do. Here is the login string that I...
  3. T

    scrape html table - question...

    Say I have a table that will always contain RANDOM DATA (various product titles, prices, & ratings in no particular order). I noticed that sometimes either the "Price:" column or "Rating" column won't always have a value. So when I'm scraping multiple items into an array & sending each column...
  4. T

    checking Proxy Question...

    I am interested in learning more about proxy connections. I've been doing a little testing with connecting to proxies through the HttpWebRequest & using the request.Proxy & request.Timeout. But I've noticed that it seems to be a little difficult trying to move on to the next proxy after checking...
  5. T

    Posting To Facebook....????

    I've tried following along with this tutorial here: https://www.youtube.com/watch?v=wNLAY_s6llY I have tried using the Facebook Graph API, but there is NO documentation on how to use VB.NET along with the api. Here is the code that I've tried to use: dim a as new system.net.webclient...
  6. T

    Facebook API - Need Help Posting...

    I have been looking for good Facebook API examples for VB.NET, but have NOT been able to find any good documentation AT ALL! I have been looking around EVERYWHERE including the developers.facebook.com documentation & NOTHING for VB.NET. However, I have only found a small piece of code that...
  7. T

    Populate DataGridView With Multiple Arrays

    Hi again friends, So actually what I've been trying to do is practice collecting data from one of my temporary websites (more like a web page). I have added product details to this web page & was trying to practice parsing the data & then sending that data to either a listview or datagridview...
  8. T

    Adding Multiple Arrays To a ListView Control

    I have 5 Different arrays that I'm trying to add to 5 different columns in a ListView, BUT I am only going to use 2 Arrays & 2 Columns to make it less complicated for this example. So I'm trying to add 2 Arrays that have "Product Titles" & "Prices" that I'm trying to put into 2 columns of a...
  9. T

    Add Textbox.Lines To Listview....How???

    Hi Friends, I have 3 textboxes with lines that I'm trying to add to 3 columns in a Listivew1. I am trying to get the TextBox1.Lines into Listview1 Column1, TextBox2.Lines into Listview1 Column2, & TextBox3.Lines into Listview1 Column3. I have tried to put the TextBox.Lines into an array &...
  10. T

    Connect Through Priavte Proxy Using Webclient

    Where on those pages that you posted here shows how to use the username of the proxy & the password while connecting through the Webclient? I didn't see one example there that is even similar to the code that I've posted here. Can you elaborate on what you meant? Why did you reference me over to...
  11. T

    Connect Through Priavte Proxy Using Webclient

    Hi friends, So I was trying to connect through a couple private proxies that I've ordered using the Webclient class. Here's the code that I have thus far, but I don't know the exact lines of code for connecting through using credentials: Try Dim client As New...
  12. T

    HttpWebRequest Extract Links or URLS From My Blog...

    I would like to use the httpwebrequest to pull all the links from my blog. I would like for the links to be extracted and sent to a textbox1.text from the httpwebrequest method. Here's the example that I have to extract all the html source code, but all I need is the URLs from my web page: Try...
  13. T

    Listview Sorting In VB 2008 Issue <===

    I'm trying to make the listview sort the green "Yes!" to the top via a column "Click:" option and then the red "No" will be sorted to the bottom. We will need to make sure that the subitems will stay together. Here's an example of what I'm trying to accomplish: I would appreciate a code example...
  14. T

    Scrape Google

    Hey John, could you show me a working example? I'm new to coding, but I will try my best to study and learn from it. Thanks!
  15. T

    Scrape Google

    You're saying to work around the issue of the google redirect links, I should just navigate to each google redirect, let it redirect and then extract the link? I would like to get the links directly from the google search engine results page instead if possible (just like the simple tool that I...
  16. T

    Scrape Google

    Here's what I'm trying to accomplish: I would like to make a simple program that can parse the google serp and return the results to a richtextbox1.text. Here is an example of a very simple program that I'm trying to create for my own personal use: Google Scraper Footprint Finder I would...
Back
Top