Quoting Dany Allard <[EMAIL PROTECTED]>: > Hi, > � > Is it possible to associate a type of file, like *.txt with Notepad.exe, > with a LV7 app. > I know that LV7 have a new feature that permit to retrieve the command > line > used to call the app. > But I don�t think that would be useful for what I want to do. > I want to Double-Click on my file and my LV7 app start automatically and > the file is read and displayed.
Dan, Yes, you need to retrieve the command line parameters (make sure to select "Pass all commandline parameters to application" in the builder). After that, right-click on your special file type, select "Open with..." and browse to your built application. (Then select "always use this program to..." The filename will be the second item in the parameter list array. (Property:Application:Command line Argments) (Similarly, you can also take the file and drop it on your application icon, and it will open with it) Cheers Christian
