No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
Hi im im trying to get attributes from two diffrent tag names.. <img class="chimg" alt="SOME TEXT" src=" #1 IMAGE LINK TO GET"/> <span>" #2 TIME TO GET" </span>" SOME TEXT "</a> </h3> <div> <a href=' #4 LINK TO GET' onclick="window.open('Some link'); return true;" title=' #3 TITLE TO GET' >SOME TEXT</a> …
Im trying to bind my custom vertical scrollbar to datagridview is this possible.. Please help Thnak you..
Hi been trying to **click on a button.**.  heres the **code** from html** webDocument**  within **WebBrowser control**.. **Please Help**.. Thank You.. Heres my code so far.. Dim theElementCollection As Windows.Forms.HtmlElementCollection = Nothing theElementCollection = WebBrowser1.Document.GetElementsByTagName("a") For Each curElement As HtmlElement In theElementCollection If curElement.GetAttribute("id").Contains("remove-over") Then curElement.InvokeMember("click") …
Hi im trying to **click** on a **button** within a **webbrowser control**.. to close a ad in a **iframe** wich i have no **access** to my code works on first page but not on second page heres my **Code** Dim theElementCollection12 As Windows.Forms.HtmlElementCollection theElementCollection12 = WebBrowser1.Document.GetElementsByTagName("a") For Each curElement As …
Hi Im trying to Populate my datagridview from data scraped off of webpage i Want to be able to report progress when datagrid finished updating.. with a progressbar.. Please Help!!!!!! Thank You.. Heres My code Dim theElementCollection As Windows.Forms.HtmlElementCollection theElementCollection = Form1.WebBrowser2.Document.GetElementsByTagName("a") For Each curElement As HtmlElement In theElementCollection Form1.DataGridView1.Rows.Add(curElement.GetAttribute("title"), …
hi im trying to run this method without a webBrowser.. Please help.. Thank you... This is what i got so far.. Dim PageElements As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("iframe") For Each CurElement As HtmlElement In PageElements TextBox1.Text = CurElement.GetAttribute("src") Next
Im trying to **close** this **ad banner** from webpage.. please Help.. <div id="hiddenBannerCanvas"></div> <div id="bannerInCenter"> <a href="http://record.bettingpartners.com/_8tAZwUrL2Ja3jsFw_KD1gyyZw0gXuLb7/0/" target="_new"><img src="http://media.bettingpartners.com/GIF/Bovada/Sports/F1/300x250.gif" /></a> <span id="bannerClose" class="closebet">->-X-<-</span> </div>
Hi im trying to Scrape a **table** of a website and list it in a **datagridview** wich has a column **Name** and a **Url Link** Please Help!!!! Heres the source.. <div class="text"><table class="links"> <thead> <tr class="thblue"><td style="width: 105px"></td><td style="width: 85px">Time</td><td style="width: 540px">Teams</td><td>Broadcast</td></tr> </thead> <tbody><img src='/img/nowplay.gif'><tr> <td colspan='5' class='accordion greybg'><span class='icon'><img …
Hi ive been trying to InvokeMember onmouseup to close a banner in WebBrowser Control.. <div id="layer1" style="height: 0px; left: 240px; position: absolute; top: 30px; width: 10px; z-index: 1;"> <span onmouseup="document.getElementById('floatLayer2').style.display='none'"> <img alt="" border="0" height="12" src="http://www.streamking.info/images/close.png" width="12" /></span></div> PLease!!!! Help!! Thank You...
hey I'm trying to make a **flash player fullscreen** With a **click** of a **button**.. within a **webbrowser control** webpage source is not mine.. Pleasee!! Help!! Thank you..
Hi i got this issue with accessing a iframe and invokeclick.. i would like to have access to the iframe so i can click button within iframe.. heres an image of what im dealing with..  **VB Code** Dim theElementCollection3 As Windows.Forms.HtmlElementCollection 'This line now includes access to the …
Hi ive been trying to click a close button within a iframe within a webbrowser control.. my code works in WebBrowser.Document not Reading Outterhtml="x" Try WebBrowser1.Document.GetElementById("bannerClose").InvokeMember("Click") Catch ex As Exception End Try and Dim theElementCollection3 As Windows.Forms.HtmlElementCollection theElementCollection3 = WebBrowser1.Document.GetElementsByTagName("img") For Each curElement As HtmlElement In theElementCollection3 If curElement.GetAttribute("alt").Contains("x") Then …
Hi i Been Trying all night to get **Flash Player** to occupy **All** Browser Control using the height="100%" and width="100%"   Making **Flash Player** Full screen in Browser Control.. Please!! Help!! Thank you..
Hi ive been trying hard to get a img url collection from a textbox.. or how to stop loop on 3rd img url please help me. Thank You.. Heres What ive Got.. URL: https://www.facebook.com/tony.trujillo.3517 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim PageElement As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName(TextBox1.Text) …
The End.