== Introduction == This is a small code snippit for getting the correct PositionOfAnEvent when it is captured in a ctrl inside of a wx''''''Splitter == Snippit == {{{ #!python def GetTruePosition(self, event): sashpos = self.splitter.GetSashPosition() falsex = event.GetX() truex = sashpos + falsex print truex truey = event.GetY() return truex, truey }}} === Comments === - Jeff Peck (Sanguinus@earthlink.net)