Well, it looks like my application is working, I was just pointing at older release...
For others some tips how to achieve it: This is version while using WinForms Designer: in Form1.cs create new constructor with one string parameter (name is optional), change the contructor's body to use that parameter to load the file in whatever field you wish (or do whatever you wish with the file) in Program.cs change Main method to obtain command line arguments (String[] args is enough). Set it if args.Length == 0 your common Form constructor is used, else use the constructor with first item of args. ------------------- now I have other issue with code... I want when someone open .boo file with no program associated, there is a list of files which Windows recommends to use, I want my application there as well :) 2009/10/15 Processor-Dev1l <[email protected]> > > Before I start to explain my problem I would like to say I tried > googling about this topic but nothing good was found (maybe I just > don't know what exactly to search). > > Boo is .NET programming language with syntax of Python. I coded IDE > Editor for Boo using C# and WinForms. > I can load the file save it, etc. > I also asociated .boo files with my editor. When I open the .boo file, > my application is ran, but nothing is there.... > I tried to use application args to obtain the filename, but I still > can't make it working...
