473,324 Members | 2,193 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,324 software developers and data experts.

a small-gui for python/win32 ?

this week, i've seen a little GUI for python/win32 ..
a little library which can use simple dialog (openfile, opendir,
messagebox, progressbar ... and that's all) ...
it worked only on win32 platform

AND i've not bookmarked the url ;-( (shame on me)

i've seen that in "daily python url" perhaps ??!
i cant find it again ;-(

perhaps someone could help me ?
(don't tell me about tk, wx, qt, gtk ... ;-)
Jul 18 '05 #1
8 3000
marco <ma******@online.fr> wrote in news:40db01fb$0$17144
$6*******@news.free.fr:
this week, i've seen a little GUI for python/win32 ..
a little library which can use simple dialog (openfile, opendir,
messagebox, progressbar ... and that's all) ...
it worked only on win32 platform

AND i've not bookmarked the url ;-( (shame on me)

i've seen that in "daily python url" perhaps ??!
i cant find it again ;-(

perhaps someone could help me ?
(don't tell me about tk, wx, qt, gtk ... ;-)


One possibility:
http://www.ferg.org/easygui/
--
rzed

Jul 18 '05 #2
marco <ma******@online.fr> writes:
this week, i've seen a little GUI for python/win32 ..
a little library which can use simple dialog (openfile, opendir,
messagebox, progressbar ... and that's all) ...
it worked only on win32 platform

AND i've not bookmarked the url ;-( (shame on me)

i've seen that in "daily python url" perhaps ??!
i cant find it again ;-(

perhaps someone could help me ?
(don't tell me about tk, wx, qt, gtk ... ;-)


http://www.averdevelopment.com/python/EasyDialogs.html ?

Thomas
Jul 18 '05 #3
marco wrote:
this week, i've seen a little GUI for python/win32 ..
a little library which can use simple dialog (openfile, opendir,
messagebox, progressbar ... and that's all) ...
it worked only on win32 platform

AND i've not bookmarked the url ;-( (shame on me)

i've seen that in "daily python url" perhaps ??!
i cant find it again ;-(

perhaps someone could help me ?
(don't tell me about tk, wx, qt, gtk ... ;-)


Doesn't Python come bundled with Tkinter? Isn't Tkinter cross-platform
compatible? What's wrong with Tk?

For the record, Tk and Wx work on windows. Tk is about as simple a gui
library as you can get.
Jul 18 '05 #4
Thomas Heller a écrit :
this week, i've seen a little GUI for python/win32 ..
a little library which can use simple dialog (openfile, opendir,
messagebox, progressbar ... and that's all) ...
it worked only on win32 platform

AND i've not bookmarked the url ;-( (shame on me)

i've seen that in "daily python url" perhaps ??!
i cant find it again ;-(

perhaps someone could help me ?
(don't tell me about tk, wx, qt, gtk ... ;-)
http://www.averdevelopment.com/python/EasyDialogs.html ?


no ;-(
but it is the same concept ...
the one i searcge, use real hte dialogboxes from windows
and on the screenshots, windows decoration was a xp blue theme (i remember)

Thomas

Jul 18 '05 #5
Chris S. a écrit :
marco wrote:
this week, i've seen a little GUI for python/win32 ..
a little library which can use simple dialog (openfile, opendir,
messagebox, progressbar ... and that's all) ...
it worked only on win32 platform

AND i've not bookmarked the url ;-( (shame on me)

i've seen that in "daily python url" perhaps ??!
i cant find it again ;-(

perhaps someone could help me ?
(don't tell me about tk, wx, qt, gtk ... ;-)

Doesn't Python come bundled with Tkinter? Isn't Tkinter cross-platform
compatible? What's wrong with Tk?

For the record, Tk and Wx work on windows. Tk is about as simple a gui
library as you can get.


i know, i know ... i am a wx addict (i hate the render of tk)
i'm not looking for full gui cross platform
just for a simple api wich call the real dialogbox of windows
(selectfolder, selectFile(s), input a text, messagebox ...)
Jul 18 '05 #6
marco a écrit :
this week, i've seen a little GUI for python/win32 ..
a little library which can use simple dialog (openfile, opendir,
messagebox, progressbar ... and that's all) ...
it worked only on win32 platform

AND i've not bookmarked the url ;-( (shame on me)

i've seen that in "daily python url" perhaps ??!
i cant find it again ;-(

perhaps someone could help me ?
(don't tell me about tk, wx, qt, gtk ... ;-)


YES ... i found it again ... and bookmarked too !!!!

its name is "easydialog", and is here :
http://www.averdevelopment.com/python/EasyDialogs.html

thanx for all your answers
Jul 18 '05 #7
First, marco <ma******@online.fr> writes:
Thomas Heller a écrit :

http://www.averdevelopment.com/python/EasyDialogs.html ?
no ;-(
but it is the same concept ...
the one i searcge, use real hte dialogboxes from windows
and on the screenshots, windows decoration was a xp blue theme (i remember)


Later, marco <ma******@online.fr> writes:
YES ... i found it again ... and bookmarked too !!!!

its name is "easydialog", and is here :
http://www.averdevelopment.com/python/EasyDialogs.html

;-)
Jul 18 '05 #8
marco wrote:
i know, i know ... i am a wx addict (i hate the render of tk)
i'm not looking for full gui cross platform
just for a simple api wich call the real dialogbox of windows
(selectfolder, selectFile(s), input a text, messagebox ...)


I thought tk on windows used the native windows rendering style? At
least, I couldn't tell the difference between tk and a native windows
gui when I used it.
Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Randall Parker | last post by:
Using IE 6.x (whatever is the latest) on Windows 2000. For these two CSS definitions if I remove the 2 lines that have the "mso-" font family definitions (mso-fareast-font-family, and...
4
by: Jason Heyes | last post by:
What can I do to circumvent the performance degradation associated with dynamic allocation and small objects? Thanks.
4
by: Manny | last post by:
Hi, I would like to display a small html file in a layer (div) when the mouse goes over a link (<a href="small.html" onMouseOver="showPop(small.html)"). Which tag should I use in the layer :...
1
by: David Franit | last post by:
Hello, I am looking at tuning NUM_POOLAGENTS for many v7.x and v8.x UDB instances. Aside from logging into each instance and running 'db2 list applications', or writing a script to do so, is...
2
by: Luc | last post by:
I saw a few posts on this newsgroup about it but nothing to help me resolve this problem: We designed a window in .NET on a platform using small fonts (120 ppp). But this window will run on...
13
by: Alan Silver | last post by:
Hello, MSDN (amongst other places) is full of helpful advice on ways to do data access, but they all seem geared to wards enterprise applications. Maybe I'm in a minority, but I don't have those...
74
by: lovecreatesbeauty | last post by:
My small function works, but I have some questions. And I want to listen to you on How it is implemented? 1. The function does not check if parameter x is larger or smaller than parameter y. ...
4
by: =?Utf-8?B?VzFsZDBuZTc0?= | last post by:
When one architects a new project one of the first steps in the decision is to decide on the layers. (In my opinion anyway) One architecture that I have used before is to go solid OO and create...
169
by: JohnQ | last post by:
(The "C++ Grammer" thread in comp.lang.c++.moderated prompted this post). It would be more than a little bit nice if C++ was much "cleaner" (less complex) so that it wasn't a major world wide...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.