Re: What do I need to know in order to write a web application in python?

2011-03-04 Thread Grumman
On 3/4/2011 16:48, ErichCart ErichCart wrote: In fact this doesn't necessary need to be web application. For example I have a friend who uses Delphi, and he can create all sorts of windows applications easily, like he can see the window on the screen and he can place buttons, text fields, radio

Re: How to make python scripts .py executable, not bring up editor

2008-07-07 Thread Grumman
korean_dave wrote: From command Prompt, i type in a script, "tryme.py". This, instead, brings up PythonWin editor and Interactive Window. Path variable is "C:\Python24". (I need Python 2.4 installed, not 2.5) How do I make it so that the script runs? Start->My Computer->Properties->Advanced

Re: odd problem with watsup and VB6 application with modal dialog

2006-11-11 Thread Grumman
Rob Williscroft wrote: > Here's a rewrite of the winGuiAuto.clickButton function, > post_clickButton() that uses PostMessage: Thanks for the info, I'll give it a try. -- http://mail.python.org/mailman/listinfo/python-list

odd problem with watsup and VB6 application with modal dialog

2006-11-10 Thread Grumman
For various reasons, I've found myself in the position of needing to automate the operation of a small VB6 application from an external process. After a bit of searching, I found watsup, and it has fit the bill nicely, except for one problem. Roughly, I have a script that fills in a field, sets

Re: searching for IDE

2005-06-12 Thread Grumman
alexrait1 wrote: > I need an IDE for python that has the ability to show the filds of a > class when I write "." > Just the way it works in eclipse/JBuilder with java or visual studio > with c++ > For now I treid eric3 and IDLE they don't do this... > The ActiveState python editor (pythonwin?) do

Re: os.walk(entire filesystem)

2005-03-09 Thread Grumman
Tobiah wrote: When I do os.walk('/') on a Linux computer, the entire file system is walked. On windows, however, I can only walk one drive at a time (C:\, D:\, etc.). If this is a personal utility for one computer, and if you run XP on that computer, then you have the ability to mount secondar

Re: Considering python - have a few questions.

2005-02-13 Thread Grumman
I would want the program to run in Windows for sure. If it could work on a Mac and other systems, that would be a plus. btw - I have the database designed (and the program info database filled) in Access If running on a Mac really is a goal, ditch Access, its windows only. You'd want to lo

Re: Accessing DB2 with Python

2004-12-16 Thread Grumman
Jarek Zgoda wrote: Be aware, that it's a module for "normal" DB2, not a DB2/400. To access DB2/400 you have to use ClientAccess ODBC (from Windows or *nix platform) driver or iSeries port of Python (from AS/400). And just to be complete, under windows, using win32all, you can also use the OLE

Re: Module question

2004-12-15 Thread Grumman
Bill Turczyn wrote: Does python have a module similiar to the perl Spreadsheet::WriteExcel Thanks, Bill In a pinch, you can output an HTML table, give the file an .xls extension, and Excel will read it just fine. There's probably a better option in python (under win32, you could use win32com and

Re: building python extensions with .net sdk compiler?

2004-12-11 Thread Grumman
Mike C. Fletcher wrote: Grumman wrote: Of course it'd be nice if msvccompiler.py just fell back to looking for the toolkit/sdk default dirs (or looked them up via environment vars, since the toolkit does include a vcvars32.bat that sets appropriate ones) if the VS lookup failed. Which is

Re: building python extensions with .net sdk compiler?

2004-12-11 Thread Grumman
David Fraser wrote: So using MinGW seems like the better option ... is it working for Python 2.4? Yes it does. :) I haven't tried it, but probably. The problem with the toolkit is that mscvccompiler.py in distutils is expecting VisualStudio to be installed, not the toolkit. So when it goes to l

Re: building python extensions with .net sdk compiler?

2004-12-10 Thread Grumman
I got this insane message, how did you solve this "problem" ? running install running build running build_py running build_ext error: The .NET Framework SDK needs to be installed before building extensions for Python. - Or does anyone know why i get this message, the .net

Re: Compiling Python 2.4 extensions with free VC++ Toolkit

2004-12-10 Thread Grumman
Jody Burns > wrote: Hi all, I've been wondering if there's anything on the drawing board about patching distutils/msvccompiler.py so that it can compile Python extensions using the free Visual C++ toolkit instead of the entire Visual C++ development environment. I know it's possible, because I