I have .net control (ok, a lot of them). I can call methods for any given control, but I cannot create new controls or access the static methods of classes for which I do not have controls. I do not have access to tooltip objects. Is there a way to get a tooltip object for this control?
(We use a rather limited testing automation environment in Java to access controls in an application written in C # .net, is the background for this odd request)
ETA: Perhaps I did not clarify the situation. I am not trying to set a tooltip; I am trying to get an existing tooltip. And I can not create new controls, so everything that includes new Foo()will not work.
source
share