html

  1. R

    Question Using GetElementById (without web browser)

    Hi all, This is my first post in here. I am trying to create a code to get HTML data from the web (without using a web browser element), creating a local variable to store the data and being able to parse it later on using the GetElementById method. The problem is that I am getting an error...
  2. 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...
  3. C

    Parsing Splitting Website Text to Label-Textbox

    <html><head></head> <body> <div style="width:638px; margin-left:-1px;"> <center><br /><img class="store_header" id="store_top" name="store_top" src="" /><div class="store_sub_header"> <span class="yellow_glow_40">Some Text</span> <div class="white_black_glow_24">...
  4. C

    Question i want to get an excel database from a webpage

    The webpage from where i need to retrieve the excel database is: Consulta de Estructura de Informaci?n The checkbox i need to get marked is the one named "Tasa de Rendimiento 3/" that depends on the tree list "CETES a 28 d?as": <input name="series" style="margin: 0px 5px 0px 10px;"...
  5. T

    Question Unresolved problem in creating instance of a HtmlElement object?

    I have created a HtmlElementCollection and am using a FOR statement in order to filter the HtmlElements until one is found thats OuterText property contains "Article". Private Sub ScrollToElement() If (chooseBrowser.Document IsNot Nothing) Then Dim elements As HtmlElementCollection =...
  6. C

    Testing HTML

    How can I import and load an html file to webbrowser1?
  7. T

    Loading an html file in a webBrowser

    I am trying to load an html file in my resources folder using the webBrowser;however, I can't find out what the code is for this. I have been searching online for the past few hours and cannot seem to find anything.This is what I currently have that works but I want to load the page so that the...
  8. C

    HELP!!!! Visual Studio won't display Website Background-Image correctly (Adds margin)

    HELP!!! For my Advanced Web Design course, I decided to design a website. We HAVE TO USE Visual Studio for the project. I'm using Visual Studio 2010. It's going well, minus the fact that Visual Studio won't correctly display my background image! I created a 1600x1680 background image. I set the...
  9. VBobCat

    Question Parsing HTML content into a TreeView

    Hello people, I wrote this code in order to parse HTML elements within an HTML document into a treeview, so I can study its structure. But my iteration must have something wrong, for it doesn't recover all the elements. Could someone help me to fix it? Thank you very much! Public Sub...
  10. R

    Question Insert HTML tags around highlighted text?

    How would I place HTML tags around selected text using VB.NET? If this is my selected text "Procedure", How do I go about adding tags to this string? ex: <code>Procedure</code> Thanx, in advance, for any replies to this post. rspercy65
  11. Z

    Question How to get the howl html document not just the source code ??

    So guys Im now working 5 days on solving this problem. I need to get some inner text from a div witch is not visible in the source code. Someone any idea how to get him? Here is what I have until now Dim doc As New HtmlAgilityPack.HtmlDocument Dim web As New HtmlWeb...
  12. D

    Question Auto-login to website for screen scraping/data collection?

    Hey all, I've written a few simple HTML parsers which scrape data from a URL...or a list of URL's. Getting the data from the HTML is no issue, but now I'm trying to scrape data from a site which requires login before accessing the data. I've tried a couple of things, but no luck. I've done some...
  13. S

    Available Sr. .NET Programmer – Dublin, OH

    Start Date: IMMEDIATELY! Employee Type: 4 Mo. - Contractor - 1099 Pay Rate: Wage $50 – 60 - DOE Work Status: Green Card or US Citizen Highly Desirable H1B Sponsorship is not available at this time. Corp to Corp is available for Green Card Holders. DESCRIPTION OF WORK: The selected...
  14. open eXpressions

    Question QColorPicker Control

    Hi All! I'm new here, and I am trying to use the control below: The QIOS Community • View topic - Qios.DevSuite.ColorPicker (V2) I used the code they provided, but it does not work. I have a QColorPicker that I would like to select the color and be able to put the hex code as a string into a...
  15. S

    Question XPath or any other way to solve this ...

    Hello to all ! Sorry in advance for the long post. I'm trying to get the value of a specific <div> from an html. This div has a class attribute of "itemPrice6", but problem is that this class appears few more times for other <div>s in which i'm not interested in. Best thing for me is if i am...
  16. T

    Question 32-bit UserControl in HTML page does not load on 64-bit workstation

    Hello to all. I need some light on a 64 bit situation. Let me explain. I built a specialized userControl using VB2008 (on XP 32-bit) to embed in HTML (not ASP!) and compiled it, pointing to x86 CPUs. I added the necessary keys to the registry (see attachment) to declare a classId in a HTML...
  17. N

    Question Top border missing from table when collapsing a row

    I have been told that for tables with the table-layout:fixed; property you should set the widths in the first row and the hide that row, as follows: <table cellpadding="0" cellspacing="0" style="border-collapse:collapse;table-layout:fixed;"> <tr style="visibility:collapse;"><td...
  18. M

    Question echoing out vb variables into my html code?

    Hey, Is there an alternative to using response.write()? or Perhaps a method of combining both my vb code and html coding into one page. I know that i can use the <script> blocks but can i place them inside the html <body> tag>? Also is there a way of echoing out vb variables into my html...
  19. taliesan

    Question Stripping HTML

    Hey, I've been writing a program which opens html files in a text area and after allowing the user to make various changes exports it to a word template using bookmarks. My problem is, i want to remove all the HTML from an opened file whilst its in the text area- without it affecting the...
  20. T

    Question Use MSHTML to get Column count in a Table

    Hello everyone. I have been experimenting with using MSHTML to parse HTML documents, in order to retreive data from those documents. First, take a look at the following peice of code: Dim doc As HTMLDocument = New HTMLDocument() Dim d2 As IHTMLDocument = doc 'strHTMLCode contains the html...
Back
Top