Search results for query: *

  1. X

    Get weather from a site

    So there's an ID called "conds_details_health" and that gives a lot of info. Do you know how I can break it up into sever text boxes? This is what I get "Health UV7 out of 16Pollen6.00 out of 12 Pollen Forecast OzoneGoodPM2.5ModerateFlu ActivitySporadic View Flu Map "
  2. X

    Get weather from a site

    Thank you sooo much! Now I just have to sift though all that code!
  3. X

    Get weather from a site

    Thanks for the tip. I am having a hard time finding the element ID. I have watched some tutorials and the html code they have has "id" somewhere in it. All mine has is, well, you can see.
  4. X

    Get weather from a site

    Can somebody help me load some if this weather info into textboxes? Burbank, California (91501) Conditions & Forecast : Weather Underground BTW I have no idea what I'm doing. Anything you can give me to help me get started would be great. Perhaps start with how to load this weather into text...
  5. X

    Read html code --> textbox

    thanks, that works well. The code continues to: <div class="adr"> <span class="street-address">2855 Star Route</span><br /><span class="locality">Chicago</span>, <span class="region">IL</span> <span class="postal-code">60631</span> </div> I don't see anything like h4 in there. Also, is there...
  6. X

    Read html code --> textbox

    could you help me out with that? TextBox1.Text = WebBrowser1.Document.GetElementsByTagName("given-name") that by itself does not work "Value of type 'System.Windows.Forms.HtmlElementCollection' cannot be converted to 'String'." I'm not really sure how GetElementsByTagName works.
  7. X

    Read html code --> textbox

    I am trying to get some text into a text box. If the code had an ID that I could find this would not be a problem, but all I can find is <h4><span class="fn n"><span class="given-name">Joshua</span> <span class="additional-name">L.</span> <span class="family-name">Hendren</span></span></h4>...
  8. X

    Help with web page form

    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...
Back
Top