你好我想问一下是否有人知道如何将文件路径保存到字符串中然后我可以将它用作不同的定义作为输入。 TNX 这是我的代码,我想保存def pst,vst中的路径并使用它们来定义MDB。
# modules
from Tkinter import *
import tkFileDialog
import sys
# definitiion
def MDB():
import createMDB
def pst():
geo= tkFileDialog.askopenfilename(filetypes = (("ShapeFiles", "*.shp"), ("All files", "*")))
T.insert(END, "Load PST Path\n")
def vst():
kath = tkFileDialog.askopenfilename(filetypes = (("ShapeFiles", "*.shp"), ("All files", "*")))
T.insert(END, "Load VST Path\n")
# application
app=Tk()
app.wm_title("GST1606")
# grid
w=Canvas(app,width=100,height=50)
w.pack()
# menu
menu=Menu(app)
app.config(menu=menu)
submenu=Menu(menu)
menu.add_cascade(label="Browse", menu=subme
nu)
submenu.add_command(label="Pst", command=pst)
submenu.add_command(label="Vst", command=vst)
sub=Menu(menu)
menu.add_cascade(label="Execute", menu=sub)
sub.add_command(label="Create MDB", command=MDB)
# buttons
Button1=Button(app,text="create MDB", command=MDB)
Button1.pack(padx=50, pady=50)
# txt
T = Text(app, height=2, width=30)
T.pack()
# freeze
mainloop()
答案 0 :(得分:0)
您可以将路径定义为global variable,以便可以在不同的功能中使用:
SELECT DISTINCT <you_primary_key_column>, <rest of your query>
或者您可以在类中构建GUI,这在GUI变得更复杂时尤其有用。参见: