T
tbergman
Guest
In limited testing, I believe what I've posted below works. This is the trigger method that gets called. METHOD PRIVATE VOID onMouseDoubleClick(INPUT sender AS System.Object, INPUT e AS System.Windows.Forms.MouseEventArgs): IF e:BUTTON = System.Windows.Forms.MouseButtons:RIGHT THEN DO: DEFINE VARIABLE objControl AS System.Windows.Forms.Control. objControl = CAST(sender, System.Windows.Forms.Control). MESSAGE "Clicked on: " objControl:NAME SKIP "Object Type: " sender:ToString() SKIP "In Container: " objControl:GetContainerControl():GetClass():TypeName SKIP "In form: " objControl:FindForm():GetClass():TypeName VIEW-AS ALERT-BOX. END. END.
Continue reading...
Continue reading...