X-Received: by 10.66.193.131 with SMTP id ho3mr19241939pac.42.1459199428767; Mon, 28 Mar 2016 14:10:28 -0700 (PDT) X-Received: by 10.50.30.67 with SMTP id q3mr138555igh.5.1459199428674; Mon, 28 Mar 2016 14:10:28 -0700 (PDT) Path: csiph.com!feeder.erje.net!2.us.feeder.erje.net!news.glorb.com!nt3no5421406igb.0!news-out.google.com!pn7ni17100igb.0!nntp.google.com!nt3no5421399igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.python Date: Mon, 28 Mar 2016 14:10:28 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=81.247.160.249; posting-account=yKN1VQkAAACKLvxY4w2ACbbcoO6ks0rX NNTP-Posting-Host: 81.247.160.249 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <968ddc19-1944-4ec8-975b-ec88e4391361@googlegroups.com> Subject: [newbie] tkFileDialog does not show title From: jenswaelkens@gmail.com Injection-Date: Mon, 28 Mar 2016 21:10:28 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: csiph.com comp.lang.python:105924 I'm using the tkFileDialog-module in Python 2.7, it works fine except for one thing: when I add a title, the title isn't shown. e.g. I have this line of code: inputfilename=tkFileDialog.askopenfilename(defaultextension=".dat", filetypes=(("data file", "*.dat"),("All Files", "*.*") ),title='Select input file') this works fine i.e. the file selector menu opens but I expected that the text 'Select input file' would be displayed too. Can anyone here explain me how I can achieve this? kind regards, Jens