After hours of combing through the internet, I've come up empty-handed in my quest to find information related to my current project. I've created an HTML document that gathers user data and stores it in a JavaScript array. This array is then combined and saved as a hidden string within the document. Initially, I planned to transfer this string to a C# program, but I have since switched to using LabVIEW.
In my C# project, I was able to achieve my goal with just two simple lines of code:
System.Windows.Forms.HtmlElement hidden = webBrowser1.Document.GetElementById("hiddenfield1");
List<latlng> data = formharvest.extract(hidden.GetAttribute("value"));
However, I am now facing difficulties accessing the data stored in the hidden document. In my VI, I am using the IWebBrowser2 block to embed my HTML code. Any assistance on how to proceed with this would be greatly appreciated. Thank you for your help!