03-09-2007 10:33 AM
03-09-2007 11:52 AM
Please provide more information on what you are trying to do.
Interact with what, are you trying to take information from the Browser into labview?
03-09-2007 12:18 PM
Thanks for the reply Andrew. Basically I am dropping an ActiveX container onto the front panel and inserting a Web Browser object into the container to give me a browser on my LV front panel. There are html files being displayed in this browser that have textboxes and buttons on them and I need to trap the buttonclicks and read the textboxes from the browser into LV. I have gone down the ActiveX road and I think it can be done but I have run into too many roadblocks and was hopeing someone else has already done this.
Thanks for any help.
03-09-2007 12:51 PM
You might want to take a look at this link.
http://forums.ni.com/ni/board/message?board.id=170&message.id=28812&query.id=110866#M28812
03-09-2007 01:24 PM
03-09-2007 01:47 PM
03-09-2007 02:05 PM
03-09-2007 02:30 PM
The innerHTML text will indicate if a Radio Button is checked, here is an example of the HTML Text:
There are two radio buttons on this page: One titled Round-trip and one titled One-way.
The only button that was "Checked" when I performed the read of the innerHTML was the Round-trip button.
Round-trip
<TD style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; PADDING-TOP: 6px" vAlign=top align=right width=98 rowSpan=2>Travel </TD>
<TD><INPUT onclick=javascript:checkTripType(this.value); type=radio CHECKED value=R name=tripType> Round-trip</TD>
One-way
<TD colSpan=2><INPUT onclick=javascript:checkTripType(this.value); type=radio value=O name=tripType> One-way</TD></TR></TBODY></TABLE></TD></TR>