Getting sender.tooltip causes late binding error

  • Thread starter Thread starter vMike
  • Start date Start date
V

vMike

If I try to get the tooltip and name of the image object that triggers the
image button onclick event I get a late binding error. I can turn off option
strict but is there any other way to get this information. I am using
sender.tooltip and sender.name methods. I don't really understand the late
binding thing, but what other way can I get the tooltip of the sender. I use
image name and the information in the tool tip to process the image click
event. Any help is appreciated.

Mike
 
Got it. Thanks anyway

dim strTooltip as string = ctype(sender,imagebutton).tooltip.tostring()
 
Back
Top