Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pass property of HTML tag to function inside parent vb app?

Status
Not open for further replies.

davemarsh

Technical User
Feb 11, 2003
12
IN
Hi, how could I pass the 'bgColor' property of a TD html tag for example to my vb app's code when it's clicked on in my webbrowser control?

eg:-

vb code inside app:
Code:
Function msgBoxTDBGColor(s)
   MsgBox("The current table cell background color inside my webbrowser control is " & s & ".")
End Function

I want that function to be called when the mouse is clicked on the table cell inside the webbrowser control.

Thanks.
Dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top