def _show()

in hexforge_modules/misc_modules.py [0:0]


    def _show(self):
        f = self.InputFormT()
        f, _ = f.Compile()
        # Show form
        f.Execute()
        start_addr = None
        end_addr = None
        filepath = None
        try:
            start_addr = int(f.start_addr.value, 16)
            end_addr = int(f.end_addr.value, 16)
            filepath = f.filepath.value
        except ValueError as e:
            print(e)
        f.Free()
        return start_addr, end_addr, filepath