Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
5k views

Open a file with an external application on Java

How do you open a file from a java application when you do not know which application the file is associated with. Also, because I'm using Java, I'd prefer a platform independent solution.
4
votes
4answers
3k views

How to call an external program with parameters?

I would like to call a windows program within my code with parameters determined within the code itself. I'm not looking to call an outside function or method, but an actual .exe or batch/script file ...
2
votes
3answers
324 views

Why Process.Start doesn't work from asp.net web service?

Why this code runs perfectly on my development computer (win7 32bit) and on target server(2008r2 64bit) as console app. But when I try to run it as a web service on the target server it does nothing. ...
2
votes
1answer
700 views

Redirect and parse in realtime stdout of an long running process in vb.net

This code executes "handbrakecli" (a command line application) and places the output into a string: Dim p As Process = New Process p.StartInfo.FileName = "handbrakecli" p.StartInfo.Arguments = ...
2
votes
2answers
151 views

Can you add documents and spreadsheets to a Visual Studio Project?

In Eclipse, I often include all project-related material (including documents in PDF, Microsoft, and OpenDocument formats) in the project. Is this possible with Visual Studio, especially to the point ...
2
votes
5answers
381 views

Can USB devices directly access hardware?

Here's why I'm wondering. I recently bought an external TV tuner for my laptop, which has a feature that when it's being jostled, the hard drive stops spinning. However, even when I move my laptop, ...
1
vote
2answers
126 views

Reading text from an external applications textbox

I am trying to extend some features of a external programm that is not able to use plugins or something. So I have to write my own app that reads the text from a textbox from this external application ...
1
vote
1answer
234 views

iOS - open another application that exists on the phone?

Is it possible to open another application that exists on the phone from my app? Is it possible to check for availablility of an external application? The other application is also my app.
1
vote
2answers
132 views

Proper way to run PsList.exe from my C# app and get its output (Or why my code doesn't work)?

Why this code only shows cmd window and never reaches the end ? I want to get the output from PsList into my C# app. Execution halts on this line: "int exitCode = proc.ExitCode;" private static void ...
1
vote
2answers
188 views

Best way to hide a form input field from being accessed using firebug?

I have a form which is posted to an external API. There is a parameter called customer_token which is passed as an input field. It is used for authentication by the API and every customer is assigned ...
0
votes
0answers
60 views

Unblocking an application accidently blocked by the user to be launced from browser

You know you can launch applications from browser by registering a custom protocol on Windows machines. I have such a app that is launched from browser. The first time you launch it, the browser asks ...
0
votes
1answer
247 views

Detecting button enable in another application

I have an application that I would like to write an automated test for. The automated test will mimic an Operator's usage of the application. I cannot change the source code of the application as it ...
0
votes
2answers
108 views

Edit a file with an external application in Java and write back?

How do you edit a file from a Java application when you do not know which application the file is associated with. Also, because I'm using Java, I'd prefer a platform independent solution. After the ...
0
votes
2answers
725 views

How do I Install external APKs necessary for my app in the Eclipse ADT?

I need to rely on external app (Barcode scanner in my case). The eclipse emulator crashes when I try to download it from within the emulator itself. Is there a way to download it using the ...
0
votes
1answer
355 views

starting iChat session in iPhone from web app

This is really just a "what-if" type question, so forgive me if it is either ridiculous or ridiculously easy... I have a client whose site offers a "chat with a consultant" option that you see on ...