M
Michel Racicot
How can I put a watch on the "Foo" control in the following exemple:
MyInput = CreateMyControl ("Foo")
MyInput.ReadOnly = True
TD = New HtmlTableCell
TD.Controls.Add(Input)
TD.Cells.Add(TD)
MyInput = CreateMyControl ("Bar")
MyInput.ReadOnly = True
TD = New HtmlTableCell
TD.Controls.Add(Input)
TD.Cells.Add(TD)
Since MyInput is reassigned, I can't use it to watch the Foo control later
on...
Is there a way to watch the resolution of MyInput Address?
?
MyInput = CreateMyControl ("Foo")
MyInput.ReadOnly = True
TD = New HtmlTableCell
TD.Controls.Add(Input)
TD.Cells.Add(TD)
MyInput = CreateMyControl ("Bar")
MyInput.ReadOnly = True
TD = New HtmlTableCell
TD.Controls.Add(Input)
TD.Cells.Add(TD)
Since MyInput is reassigned, I can't use it to watch the Foo control later
on...
Is there a way to watch the resolution of MyInput Address?
?