I am building an application in wxPython and i read somewhere on a blog that you cannot use wx.FD_OPEN and wx.FD_SAVE on the same application at the same time, is this true?
If this is true, does this mean i have to move to Tkinter?
EDIT: What i currently have.
SAVE_FILE_ID = wx.NewId()
self.Bind(wx.EVT_MENU, self.saveFile, id=SAVE_FILE_ID)
LOAD_FILE_ID = wx.NewId()
self.Bind(wx.EVT_MENU, self.loadFile, id=LOAD_FILE_ID)
accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('O'), LOAD_FILE_ID ),
(wx.ACCEL_CTRL, ord('S'), SAVE_FILE_ID )])
self.SetAcceleratorTable(accel_tbl)
def saveFile(self, event):
saveFileDialog = wx.FileDialog(self, "Save As", "", "",
"Python files (*.py)|*.py",
wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
self.text.SaveFile(saveFileDialog.GetPath())
event.Skip()
def loadFile(self, event):
openFileDialog = wx.FileDialog(self, "Open", "", "",
"Python files (*.py)|*.py",
wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
self.text.LoadFile(openFileDialog.GetPath())
event.Skip()
wx.FD_OPEN | wx.FD_SAVE)