G GudEvil Member Licensed User Longtime User Oct 30, 2015 #1 I had multiple panels initilsed for video video to play. Each panel is assigned by tag video_persistent_url. now execution is done in that loop. once user click on any panel, then click event is generated n video_url is got from sender object tag. but how do I get panel(x,y,x1,y1) ( which is sender object) so that I can load the video in that particular panel. any sender object documention link???
I had multiple panels initilsed for video video to play. Each panel is assigned by tag video_persistent_url. now execution is done in that loop. once user click on any panel, then click event is generated n video_url is got from sender object tag. but how do I get panel(x,y,x1,y1) ( which is sender object) so that I can load the video in that particular panel. any sender object documention link???
klaus Expert Licensed User Longtime User Oct 30, 2015 #2 In the Click event routine you should use: Private pnl As Panel pnl = Sender Then you can access all properties of the panel that raised the event. Upvote 0
In the Click event routine you should use: Private pnl As Panel pnl = Sender Then you can access all properties of the panel that raised the event.
G GudEvil Member Licensed User Longtime User Oct 30, 2015 #3 by the time I read your message .. I already figure out same thing n it was working so smoothly.. anyway thanks for help.. Upvote 0
by the time I read your message .. I already figure out same thing n it was working so smoothly.. anyway thanks for help..