Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have true people count AXI cameras that count the number of people enter the building. we can see live view and the count in\out on webpage. I wanna display the count result on a screen without any animations. I thought about using a webbrowser control in vb.net to load the live view webpage and then inject the javascript in webbrowser and show the count on textbox. here is my code but I keep getting error messages on the javascript text, any help apprecited

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Me.WebBrowser3.Navigate("http://10.xx.xxx.xx/people-counter/liveview.html"

Private Sub WebBrowser3_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser3.DocumentCompleted

    Dim mScript As HtmlElement
    Dim mHead As HtmlElement
    Dim element As mshtml.HTMLScriptElement


    With WebBrowser3
        mHead = WebBrowser3.Document.GetElementsByTagName("head")(0)
        mScript = .Document.CreateElement("script")
        mScript.SetAttribute("type", "text/javascript")
        element = mScript.DomElement
        element.text = "$(function showcount(){$("#video").countingArea($.extend({},cntarea,{displayWidth:320,displayHeight:240,mjpgUrl:"/axis-cgi/mjpg/video.cgi?resolution=320x240",jpegUrl:"/local/people-counter/.api?image.jpg",fps:12}));$.liveviewWithTable({countsTableElement:$("#counts"),countTableElement:$("#count"),directionIn:$.getParam("Counter.DirectionIn"),liveSumUrl:"/local/people-counter/.api?live-sum.json",loadingAnimationUrl:"/people-counter/images/ajax-loader.gif",dataTypes:["in","out"],strings:{"x second ago":"%d second ago","x seconds ago":"%d seconds ago","x minute ago":"%d minute ago","x minutes ago":"%d minutes ago","x hour ago":"%d hour ago","x hours ago":"%d hours ago","x day ago":"%d day ago","x days ago":"%d days ago","x week ago":"%d week ago","x weeks ago":"%d weeks ago","x month ago":"%d month ago","x months ago":"%d months ago","x year ago":"%d year ago","x years ago":"%d years ago"}})});"

        mHead.AppendChild(mScript)
        .Document.InvokeScript("showcount")
    End With
End Sub
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.