Re: passing values to a program

2006-10-19 Thread [EMAIL PROTECTED]
If it is as simple as using the sys and dot befour the argv then I have it made.. The example I was trying to get that from came from the first edition programming python (I think they were using version 1.3). thanks for the help I will give that a try. https://sourceforge.net/project/stats/?gro

Re: passing values to a program

2006-10-18 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: > I almost have this thing running like I want it to run but I want > the values to come from the program that calls this one. There are two > things I want to pass File_Name and CutString. They both need to go to > loadFile routine of Class WordGrid to replace constants

Re: passing values to a program

2006-10-18 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > I almost have this thing running like I want it to run but I want > the values to come from the program that calls this one. There are two > things I want to pass File_Name and CutString. They both need to go to > loadFile routine of Class WordGrid to replace cons

passing values to a program

2006-10-18 Thread [EMAIL PROTECTED]
I almost have this thing running like I want it to run but I want the values to come from the program that calls this one. There are two things I want to pass File_Name and CutString. They both need to go to loadFile routine of Class WordGrid to replace constants. Thank you for putting up w