質問編集履歴

3

プログラムの訂正を行いました。

2020/03/27 07:24

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -14,13 +14,11 @@
14
14
 
15
15
 
16
16
 
17
-
18
-
19
17
  from tkinter import messagebox
20
18
 
21
19
  from tkinter import filedialog
22
20
 
23
-
21
+
24
22
 
25
23
  root = tkinter.Tk()
26
24
 
@@ -28,30 +26,22 @@
28
26
 
29
27
  root.geometry('500x250')
30
28
 
31
-
32
-
33
29
 
34
30
 
35
31
  def select_click():
36
32
 
37
- messagebox.showinfo('select','FFITING DATAのExcelファイルを選択してください')
33
+ messagebox.showinfo('select','FFITING DATAのExcelファイルを選択してください')
38
34
 
39
- fileType = [('Excelファイル','*.xlsx')] #ファイルタイプをExcelファイルに指定
35
+ fileType = [('Excelファイル','*.xlsx')] #ファイルタイプをExcelファイルに指定
40
36
 
41
- iniDir = os.path.abspath(os.path.dirname(__file__)) #初期表示フォルダ
37
+ iniDir = os.path.abspath(os.path.dirname(__file__)) #初期表示フォルダ
42
38
 
43
- filepath = filedialog.askopenfilename(filetypes=fileType,initialdir = iniDir)
39
+ filepath = filedialog.askopenfilename(filetypes=fileType,initialdir = iniDir)
44
40
 
45
- messagebox.showinfo('選択したファイル',filepath)
41
+ messagebox.showinfo('選択したファイル',filepath)
46
-
47
-
48
42
 
49
43
 
50
44
 
51
45
  selectButton = tkinter.Button(root, text='File Select',command=select_click)
52
46
 
53
47
  selectButton.pack()
54
-
55
-
56
-
57
- root.mainloop()

2

コードの修正

2020/03/27 07:23

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
File without changes

1

TKinterの追加、fileの修正

2020/03/27 02:18

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
File without changes