def SelectCoolingCoilTube(self, event): TubeSelect = TubeSelectClass(self, -1, "") TubeSelect.setTarget(self.txtCoolingCoilTubesOD, self.txtCoolingCoilTubesID) wx.GetApp().SetTopWindow(TubeSelect) TubeSelect.Show()
def SelectLineSetSupplyTube(self, event): TubeSelect = TubeSelectClass(self, -1, "") TubeSelect.setTarget(self.txtLineSetOD_supply, self.txtLineSetID_supply) wx.GetApp().SetTopWindow(TubeSelect) TubeSelect.Show()
def SelectEvaporatorTube(self, event): TubeSelect = TubeSelectClass(self, -1, "") TubeSelect.setTarget(self.txtEvaporatorTubesOD, self.txtEvaporatorTubesID) wx.GetApp().SetTopWindow(TubeSelect) TubeSelect.Show()
def SelectLineSetReturnTube(self, event): TubeSelect = TubeSelectClass(self, -1, "") TubeSelect.setTarget(self.txtLineSetOD_return, self.txtLineSetID_return) wx.GetApp().SetTopWindow(TubeSelect) TubeSelect.Show()