Python Forum
[WxPython] Process finished with exit code -1073741819 (0xC0000005)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[WxPython] Process finished with exit code -1073741819 (0xC0000005)
#4
replace
        for row in range(len(Data)):
            self.TestExec.AppendItem(Data[row], row)
with
        for row in Data:
            self.TestExec.AppendItem(row)
Reply


Messages In This Thread
RE: [WxPython] Process finished with exit code -1073741819 (0xC0000005) - by Yoriz - Apr-06-2020, 04:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Tkinter Exit Code based on Entry Widget Nu2Python 6 3,081 Oct-21-2021, 03:01 PM
Last Post: Nu2Python
  [WxPython] Process finished with exit code gehrenfeld 3 4,880 Jan-10-2019, 11:21 PM
Last Post: gehrenfeld
  Trying to use code from WxPython GUI Toolkit Barrowman 3 4,199 Jun-26-2018, 05:43 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020