Re: Loading associated files

2008-04-28 Thread Gabriel Genellina
En Sun, 27 Apr 2008 19:13:06 -0300, [EMAIL PROTECTED] escribió: No you didnt misunderstand the situation, i think i have confused matters though!! When Ive got it working my program will read the data within the file. But obviously for it to do that it needs to know where the file is, hence

Re: Loading associated files

2008-04-27 Thread Lie
On Apr 24, 10:14 pm, [EMAIL PROTECTED] wrote: I am trying to make a a simple databasing GUI interface and and have created a module to deal with parsing the data from a file and a GUI based program that displays this data using PyQt4, i know how to register files in the system registry using

Re: Loading associated files

2008-04-27 Thread flarefight
Yep, thats pretty much exactly what i had done, those exact settings, and it still doesnt work. As i said i looked at the other keys to check i had done it right and a i said the settings are fine because i can send the file to python.exe and it loads like a python file fine, but it doesn't like

Re: Loading associated files

2008-04-27 Thread Lie
On Apr 27, 8:21 pm, [EMAIL PROTECTED] wrote: Yep, thats pretty much exactly what i had done, those exact settings, and it still doesnt work. As i said i looked at the other keys to check i had done it right and a i said the settings are fine because i can send the file to python.exe and it

Re: Loading associated files

2008-04-27 Thread flarefight
No you didnt misunderstand the situation, i think i have confused matters though!! When Ive got it working my program will read the data within the file. But obviously for it to do that it needs to know where the file is, hence the whole discussion. However to test things were working, just with

Re: Loading associated files

2008-04-26 Thread flarefight
I can't get this to work (I am on XP SP2 by the way and using Python 2.5), I wrote a very simple script to test the idea: import sys for arg in sys.argv: print arg raw_input(Done) #Merely to slow the program down so i can see output and then setup a file extension .xyz, placed it in the

Loading associated files

2008-04-24 Thread flarefight
I am trying to make a a simple databasing GUI interface and and have created a module to deal with parsing the data from a file and a GUI based program that displays this data using PyQt4, i know how to register files in the system registry using python and also using Inno Setup which i use to

Re: Loading associated files

2008-04-24 Thread Mike Driscoll
On Apr 24, 10:14 am, [EMAIL PROTECTED] wrote: I am trying to make a a simple databasing GUI interface and and have created a module to deal with parsing the data from a file and a GUI based program that displays this data using PyQt4, i know how to register files in the system registry using