Re: [Tutor] Win32Com.client help

2006-07-19 Thread wesley chun
docString = self.wdApp.Documents[0].Content return str(docString).decode('latin-1') i've been experimenting with Win32 COM client stuff myself lately, having added a section for it in the upcoming 2nd ed. of Core Python. i haven't tried what you're doing yet though, but i have

[Tutor] Needing to create a program that will search my hard drive for certain files in certain folders

2006-07-19 Thread Bobby J. Howerton Jr.
Hello,I am new to programming in Python, but I am very excited about the possibilities that it (Python) has.I maybe jumping the gun a little bit here, but this is what I wouldlike to do:I would like to

[Tutor] List Box binding

2006-07-19 Thread Joe Cox
I am using Tk and have a series of Radio buttons that I want to bind to it's own listboxfor further selection. I just don't get the point how to click the button and select the proper listbox I want it tied too. Joe Cox513-293-4830 mobile[EMAIL PROTECTED]

Re: [Tutor] Needing to create a program that will search my hard drive for certain files in certain folders

2006-07-19 Thread Luke Paireepinart
Bobby J. Howerton Jr. wrote: Hello, I am new to programming in Python, but I am very excited about the possibilities that it (Python) has. I maybe jumping the gun a little bit here, but this is what I would like to do:

Re: [Tutor] List Box binding

2006-07-19 Thread Kent Johnson
Joe Cox wrote: I am using Tk and have a series of Radio buttons that I want to bind to it's own listbox for further selection. I just don't get the point how to click the button and select the proper listbox I want it tied too. Do you mean you want clicking on the radio button to enable a

[Tutor] format string

2006-07-19 Thread devayani barve
Hi This is my program: import urllibans='y'while ans=='y': name=raw_input(Enter search:) name=name.replace(' ','+') name=name.replace('','%26') go_url= http://www.google.co.in/search?hl=enq=%s %name+meta=lr\%3Dlang_en print go_url page = urllib.urlopen(go_url).read() ans=raw_input(do you want

Re: [Tutor] format string

2006-07-19 Thread Danny Yoo
It gives following error: Traceback (most recent call last): File C:\python\urllib.py, line 1, in -toplevel- import urllib File C:\python\urllib.py, line 9, in -toplevel- page = urllib.urlopen(go_url).read() AttributeError: 'module' object has no attribute 'urlopen' Hi Devanyani,

Re: [Tutor] Needing to create a program that will search my hard drive for certain files in certain folders

2006-07-19 Thread Danny Yoo
I would like to create an executable program that when ran it will search my hard drive for certain folders that contain different files. Once the program finds these folders, I would like the program to zip each of the folders up and then e-mail each of the folders to a certain e-mail