Hi
With every piece of code i download to check out, i often find with python 3.1/Windows Vista that the code will start with
from Tkinter import *
but i need to change it to
from tkinter import *
as it seems to be case sensative, i tried renameing the directory to be Tkinter but it didn't work, so i left it as it was and just changed the code each time .. annoying but oh well.
In my next program i wanted an open dialogue which needed the "from tkFileDialog import *" but i get a module not found, renaming it to lower case like i do with others does not change anything. I thought maybe was one to download but google shows me example code, docs etc but no download leading me to believe i already have it but it can't be fouind due to the same kinda issue .. CAUSE i found a python script called "file dialogue.py" (and another file) IN the lib/tkinter folder.
Anyone with windows knows any workarounds for this issue .... this module naming and case sensative stuff is getting annoying.