Re: [python-win32] python and Windows Resource Files.

2007-12-17 Thread Johri, Mayank (GTI)
Subject: Re: [python-win32] python and Windows Resource Files. Johri, Mayank (GTI) wrote: I am writing a python program which uses Windows Resources for GUI (i.e. Dialog boxes), does anyone know a good starting point or tutorials to get set values of common controls such as List view

Re: [python-win32] python and Windows Resource Files.

2007-12-17 Thread Tim Roberts
Johri, Mayank (GTI) wrote: Tim, I am using the win32rcparser and win32gui to display the dialog on the screen. I have used the example win32rcparser.py for this. Well, win32rcparser.py reads the RC file, but it doesn't display it on the screen. What you're doing is working at the lowest

Re: [python-win32] python and Windows Resource Files.

2007-12-17 Thread Johri, Mayank (GTI)
. Ph: 212.647.3076 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Roberts Sent: Monday, December 17, 2007 12:59 PM To: Python-Win32 List Subject: Re: [python-win32] python and Windows Resource Files. Johri, Mayank (GTI) wrote: Tim, I am using

Re: [python-win32] python and Windows Resource Files.

2007-12-17 Thread Johri, Mayank (GTI)
Subject: Re: [python-win32] python and Windows Resource Files. I would highly recommend wxPython over TkInter, especially if you are already familiar with Win32 GUI programs in general. reasons: - better supported on Win32 - better native

Re: [python-win32] python and Windows Resource Files.

2007-12-17 Thread Tim Roberts
Johri, Mayank (GTI) wrote: Kevin, The only issue which I have with wx is the size of executable (I blame my size attitude to C Linux for that. I started my carrier as C on Linux developer), but after your email I searched on internet and found that I can compress the size a lot on that

Re: [python-win32] python and Windows Resource Files.

2007-12-16 Thread bob gailer
Johri, Mayank (GTI) wrote: Hello, I am writing a python program which uses Windows Resources for GUI (i.e. Dialog boxes), does anyone know a good starting point or tutorials to get set values of common controls such as List view, button, textBox etc for it. Thanks and Regards,

Re: [python-win32] python and Windows Resource Files.

2007-12-15 Thread niki
I have small ctypes package for dynamic win32 dialogs (DialogBoxIndirectParam) which can be adapted for using resources. I will mail it on request. Niki Spahiev ___ python-win32 mailing list python-win32@python.org

[python-win32] python and Windows Resource Files.

2007-12-14 Thread Johri, Mayank (GTI)
Hello, I am writing a python program which uses Windows Resources for GUI (i.e. Dialog boxes), does anyone know a good starting point or tutorials to get set values of common controls such as List view, button, textBox etc for it. Thanks and Regards, Mayank Johri Ph: 212.647.3076

Re: [python-win32] python and Windows Resource Files.

2007-12-14 Thread Tim Roberts
Johri, Mayank (GTI) wrote: I am writing a python program which uses Windows Resources for GUI (i.e. Dialog boxes), does anyone know a good starting point or tutorials to get set values of common controls such as List view, button, textBox etc for it. How are you creating the dialog? --

Re: [python-win32] python and Windows Resource Files.

2007-12-14 Thread Tim Roberts
Tim Roberts wrote: Johri, Mayank (GTI) wrote: I am writing a python program which uses Windows Resources for GUI (i.e. Dialog boxes), does anyone know a good starting point or tutorials to get set values of common controls such as List view, button, textBox etc for it. How are