A file association associates a file with an application capable of opening that file. More commonly, a file association associates a class of files (usually determined by their filename extension, such as .txt) with a corresponding application.

learn more… | top users | synonyms

1
vote
0answers
8 views

How to associate visual studio 2012 with SQL files in Windows 8?

I'm using Windows 8 and I'm trying to make Visual Studio 2012 the default program with which to open my .sql files. I have right-clicked on a .sql file and chosen: Open with... > Choose default ...
0
votes
0answers
31 views

How to implement per file thumbnail for file association?

I have a file type that I want to associate with my program. I could make every file of that type have the same standard icon like how all HTML files look the same or all txt files, but what I want to ...
0
votes
3answers
45 views

VB.Net What Event is Triggered When Double-Clicking to Open Custom File?

I have created a custom file type that is recognized by my application, and I would like to know what event is triggered when I open my application by double-clicking a file of this type. I have ...
0
votes
1answer
28 views

Custom File Type Icon Using InstallShield LE

I recently had to convert my installer project when I upgraded from Visual Studio 2010 to Visual Studio 2012 because .vdproj files aren't supported. I went with InstallShield LE, and I think ...
2
votes
1answer
56 views

WPF application file association: DefaultIcon is not working

I want to association ".abc" file to my WPF application. I add the association using this code: public class FileAssociation { static RegistryKey Root { get { ...
5
votes
1answer
54 views

listen for “open file with my java application” event on windows

Title is confusing, but don't know how to explain this in a few words: I have a java application that reads *.example files. I've also added a file association thanks to install4j so my application ...
1
vote
1answer
27 views

VisualWorks 7.9.1 Ubuntu 12.04 [closed]

I would like to associate ~/vw7.9.1/bin/linux86/vwlinux86gui with .im files on Ubuntu 12.04, so that a double click of an .im file will open it up. Anyone know the magic? Thx for any tips...
0
votes
0answers
45 views

File Association via InstallShield

I am using InstallShield 2008, I need to associate mp3 file extension with one the executable that is being copied to the installation directory. I go to the Advance Settings-File types and associate ...
0
votes
1answer
67 views

File type association and passing file as argument

I wrote an application to accept a filepath (file with custom extension) as an argument and then do some processing on it. The idea being that I could associate (using windows functionality) the ...
0
votes
2answers
103 views

Eclipse RCP: programmatically associate file type with Editor?

How programmatically associate file type with Editor? That is what Eclipse-RCP Java code can do what is archived with the following UI interaction: Window -> Preferences General -> Editors ...
2
votes
1answer
84 views

register as music player

I'd like to see my app in the list of player ("continue action using...") that pops up when I try to open an audio file (ie. from file browser or gmail attachment). Here are the intent filters I've ...
0
votes
0answers
51 views

Visual Studio 2012 associates .exe with .pdb, but it should associate with .sys

I am building Windows drivers with Visual Studio 2012. The solution has a driver build to create the .sys and .pdb. There is also a "Package" build to create a signed driver kit. There are two ...
0
votes
1answer
55 views

How can I get the the “Application used to perform action” with C#

in the windows XP explorer "folder options" dialog is a File type tab. In the file type tab the known filteypes are associated with a program. When the "Edit File Type" dialog is visible, there are ...
0
votes
0answers
56 views

Register a python script as default for file type

I am making an application with python which will need to be associated with a file type. I need a cross platform solution (can be different for different platforms) that includes setting the icon for ...
0
votes
1answer
38 views

List of extensions registered with an application

For an application (for ex: excel.exe), I would like to know what all extensions (for ex: .xlt, .xlsx etc) are registered with application (excel.exe). How to achieve it? Platform: Windows ...
0
votes
0answers
27 views

What is the JDK 7 replacement for the deprecated com.apple.eawt classes? [duplicate]

I am currently working on a text editor for mac. I would like to be able to click on a file and "Open With" my java app. I understand that previously this was done through the com.apple.eawt classes. ...
1
vote
1answer
107 views

Associate file type with Java Swing application

I am creating a java swing application and I need to set the my program as the default program for the file extension .mcsd (MIME type text/mcsd). This must work on windows, and it would be nice if it ...
0
votes
1answer
80 views

Wix: Creating multiple associations for single file type

I have a Wix based installer that installs two executables. I want to associate my own custom file type to both executables <Component Id="A.exe" Guid="{GUID}"> <File Id="A.exe" ...
0
votes
1answer
186 views

how to disable file association for my Android app?

I've got app, which uses third party video stream player (one activity and a lot of .so dependencies) to play the HLS streams. My issue is that if anybody click on video file on SD-card (e.g. in ...
3
votes
1answer
294 views

How to change file association in TFS for VS2012?

When I double click on a .sql file in Source Explorer in VS2012, it opens right there in Visual Studio. How can I get it to open in SQL Server Management Studio instead?
0
votes
1answer
53 views

Get app suggestions on trying to open an Epub [duplicate]

Possible Duplicate: How do I associate file types with an iPhone application? I am working on an app that allows everyone to read books like Epub, PDF, ACSM. I installed the app on my IPAD ...
0
votes
0answers
73 views

C# Setup Program with File Type Associating

I'm creating a music player and almost completed, but how can I : Create a setup program, which users can decide whether associate with the music files Handle the argument(s) when a music files is ...
0
votes
1answer
89 views

How to find out file association that's not in HKCR

Context For a given file extension, I need to find out the ProgID(?) of the file association (e.g. Word.Document for .docx). I need his (a) to recognize specific associated software (e.g. Adobe ...
0
votes
1answer
23 views

Writing an App for OS X that allows users to select app with Contextual Menu item “Open With”

I have a Multimedia App that is for Mac OS X using Xcode. The languages used are Objective-C, C++ and C. I want to somehow get my app in the "Open With" contextual menu without having the user do ...
2
votes
3answers
251 views

How to make Windows file associations work with non-ASCII file names?

I need to register the file association for a certain file type - in fact, I just need to launch a certain Java program with certain arguments and a name of that file. I got as far as the following: ...
0
votes
0answers
21 views

Defaulting opening application for file type

Our system generates reports, some are pdf some csv some xml and some are just plain text. What we want is the appropriate application to open when the user clicks 'open' on the report, the problem ...
2
votes
0answers
98 views

Configure iOS plist so that associated files only open in my App

I have associated a filetype with my iOS app, which works fine. However I want the file type to be exclusive, so that other applications do not offer to 'open in' my file. I have an app by another ...
3
votes
3answers
652 views

Running Python script from command line opens script in the default text editor instead of executing script

I have files with .py extension associated with Python interpreter. However when I type name of such a file at the command line and press ENTER the file is being opened in the default text editor ...
0
votes
0answers
55 views

Java library for file-associations

Its an old topic but still - i wasn't able to find any useful information about it. I need to assign file associations directly from Java code on various systems. Basically to provide a dialog like: ...
1
vote
2answers
94 views

Associate a different program for opening my output file in IntelliJ

I just started using linux (Ubuntu) and switched to IntelliJ as my new IDE. I just finished setting up my first project, but I can't find where to change the default program for opening my .swf output ...
0
votes
0answers
61 views

Associate File Type Verbs With Different Programs

I have a Visual Studio 2010 solution containing multiple projects, including several executable projects and one deployment project. In the deployment project I would like to define a file ...
0
votes
0answers
125 views

File association error opening file into DataGridView

I wrote a code on how to open a file from external path and put it into the datagridview without using open file dialog but the code give me some bug but I don't where it is. Can someone help me on ...
0
votes
0answers
243 views

Open Clickonce Application with File Association but File is Locked

So i have a clickonce application written in Visual Basic (2010 Express). I have file associations setup which successfully start the application when the files are opened. I have a line, executed on ...
0
votes
0answers
99 views

Change the default HTTP protocol handler?

I want to change the way the HTTP protocol is rendered. First, I tried a UAC friendly way by changing the HKEY_CURRENT_USER\Software\Classes\http\shell\open\command key. However, that didn't work, so ...
1
vote
0answers
32 views

Have my application use data from a file with an associated extension

I have a game application and I am incorporating Aquatic Prime into it for authentication. When user purchases my application, I plan to email them the AquaticPrime key via an associated file. Then ...
0
votes
1answer
206 views

File associations in Java using jnlp.jar, without full JWS?

The Java Web Start technology has an IntegrationService API for creating file associations. My question is whether it is possible to somehow use this API (possibly by including jnlp.jar in my app) to ...
1
vote
2answers
114 views

How to associate a file with a program in java

Take notepad for example. You can open a file with notepad (right click and open with, or double clicking on the file if it is already associated with notepad) and it will display the contents of a ...
1
vote
1answer
69 views

Adding secondary file association in Windows?

In Windows, you can right-click a file, and there is an option which lets you choose which program to launch with this file. So, for example, when user right-clicks a .cdr file, he can choose Open ...
1
vote
0answers
133 views

clicking xspf file opens in broswer instead of vlc [closed]

I have configured KDE to open xspf files in VLC using file association. The same can be confirmed as OpenWith context menu always shows VLC on top. But when I either click the file OR click Open in ...
5
votes
1answer
407 views

Detect Chrome as browser associated with html files in Windows

We provide Flash tutorial videos that install on the local (Windows) hard disk with our application. Our app uses ShellExecute to open the html file (in whatever browser is associated with html files) ...
2
votes
1answer
607 views

Side-by-side Visual Studio installations and file associations

I have been working with VS10 for years and yesterday I have installed VS12 side-by-side with the old one. Now I noticed that some file associations are inconsistent. Projects are opened by the ...
0
votes
2answers
89 views

How to make Windows autoview a file with my program, and how to make the program read it?

I want it like when we do "open with" and then choose Notepad. So that when I "open with" a file there will be my program in the list. How to associate a file type with my program? How to make the ...
0
votes
1answer
182 views

How can I get syntax highlighting for my format in an Eclipse text editor?

I need syntax highlighting for text with a specific structure in an Eclipse text editor. The scheme is simple; basically each line has six words separated by white-space, and lines starting with # are ...
1
vote
2answers
284 views

Perl - Cannot get command line arguments in without explicitly putting “perl” before script call

I'm running ActivePerl 5.8.8 build 822 on Win7 x64. We're working on a project that is about 60% C++, 15% perl, etc. The Perl is heavily used to link bits and pieces and various small utility ...
3
votes
1answer
458 views

.pl files opens in notepad

I am new to xampp and also I am new to Perl programming. I just tried to open the file C:\xampp\cgi-bin\printenv.pl and I made a mistake.I choose the default program open that file in notepad with the ...
0
votes
1answer
949 views

What is the shell/open/command proper syntax? [closed]

I want to tweak my Windows 7 Ultimate OS to make it easier to open .php files on my server. If I just make the file open with iexplore.exe via the open with menu, it will attempt to download the .php ...
1
vote
1answer
94 views

How can a C program on Mac OS/X learn that the user has double-clicked to open an associated file?

Normally in Obj C, NSApplicationDelegate handles this. But how would I do it in C? I guess what I am asking it, how did Mac programs do this before OS/X came along? Thanks.
1
vote
1answer
390 views

OpenOffice: Set as default for all users

In our office we have shared workspaces (many people can sit at the same computer). We are using OpenOffice and each time a person sits at a station for the first time I have to associate the ...
1
vote
1answer
568 views

File associating on iOS - opening a plain-text file from Safari

I want to associate a text-based custom file type with my app on iOS. When I open a link to the file which is behind some php script, Safari shows the "open in" option with my app in it, which is OK. ...
0
votes
1answer
176 views

What file extension to use for custom file type?

I have a program which creates certain save files during its use. Technically they are XML files, however I don't want to use the .xml extension as I will be modifying the shell so that my program ...

1 2 3 4