Questions tagged [external-application]

55 questions
33
votes
5 answers

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 within the WinXP environment. C or C++ would be…
Will
  • 831
  • 1
  • 8
  • 13
17
votes
3 answers

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.
Mercurious
  • 3,228
  • 6
  • 24
  • 20
15
votes
2 answers

Open link using VLC on OSX

I've seen that applications like Steam, Spotify, and others, are able to launch native applications from inside Chrome, after the user allows the invocation in the pop up box. How can I do this from my own website, for VLC, or failing that, the…
Matt Joiner
  • 112,946
  • 110
  • 377
  • 526
7
votes
3 answers

Open External Application From JavaFX

I found a way to open a link on default browser using HostServices. getHostServices().showDocument("http://www.google.com"); Is there any way to open a media in default media player? Is there any way to launch a specific File or Application?
Rana Depto
  • 721
  • 3
  • 11
  • 31
5
votes
2 answers

flutter open file externally such as on ios "open in"

From what I can tell most of the flutter guides out there can open from local storage, but nothing about file sharing. Anybody know how to do this. This is a guide in enabling it specifically for ios…
lastlink
  • 1,505
  • 2
  • 19
  • 29
5
votes
1 answer

Running external program in Matlab fails but program works outside it

I need to use a toolbox in Matlab that depends on a external program written in C and using OpenCV. I'm using Ubuntu 14.04 64 bits and Matlab R2014b. The m-script calls it with the system function and after the C program runs, it reads some output…
WDiniz
  • 115
  • 2
  • 7
5
votes
2 answers

Get Text From Specific Textboxes From External Application - Visual Basic .Net

I can get text from external application text box but now I want to get text from my desired text box from external application. My English is not so good that's why see Image Below. The Below Code Return The First Text Box Value Only. Imports…
Muhammad Saqib
  • 2,185
  • 3
  • 35
  • 48
4
votes
2 answers

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 where if I attempt to open the file from inside…
Thomas Owens
  • 114,398
  • 98
  • 311
  • 431
4
votes
0 answers

Delphi - Embed an external application within a tpanel or form

I tried to embed external app, not only notepad but also mstsc (remote desktop), within a tpanel in my delphi application. With CreateProcess i run application and with Windows.SetParent i embed first app window. I get problems with next windows…
kit62
  • 161
  • 1
  • 3
  • 6
3
votes
3 answers

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. No error, nothing. If I remove exitMsg =…
Primoz
  • 4,079
  • 17
  • 56
  • 67
3
votes
1 answer

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 = "-i [source] -o…
Richard
  • 1,471
  • 7
  • 23
  • 47
2
votes
2 answers

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 and trigger some own actions. By using the…
Marco
  • 960
  • 2
  • 7
  • 26
2
votes
2 answers

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 one token. The input field is visible in…
Sandeepan Nath
  • 9,966
  • 17
  • 86
  • 144
2
votes
1 answer

Iframe sandboxing: disable mailto and file:// file link

I've created a virtual desk page that will run in a browser (IE11 or chrome) in kiosk mode, I want to to put the result on a big touchscreen display in order to allow the users to explorer the intranet site through the kiosk. In the page I have also…
alexroat
  • 1,687
  • 3
  • 23
  • 34
1
vote
1 answer

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.
aryaxt
  • 76,198
  • 92
  • 293
  • 442
1
2 3 4