Questions tagged [external-application]
55 questions
0
votes
1 answer
Opening external application from user input
I want to be able to open an application like internet, notepad, iTunes, and any other .exe file from use input.
Right now I got this;
(ext is the user input)
try
{
Process p = Runtime.getRuntime().exec(ext + ".exe");
}
catch(Exception e1){ …

user3231227
- 67
- 1
- 8
0
votes
1 answer
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 many sales and support sites. We were wondering if…

Anthony
- 36,459
- 25
- 97
- 163
0
votes
1 answer
Is it possible to control the orientation of another app started through implicit intent?
In my app, I have to show a video in Youtube. When the user press a button, I start this video through the following implicit intent, passing the url of the video in Youtube.
startActivity(new Intent(Intent.ACTION_VIEW,…

androidevil
- 9,011
- 14
- 41
- 79
0
votes
1 answer
VB.net lauching a program from sub folder
So I need to lauch an external application from the sub folder of the program. The application will be deployed with the program but may be in different locations so I can't hardcode it to "c:\folder\example.exe"
When I run this I get an error that…

NoNo
- 315
- 1
- 4
- 13
0
votes
0 answers
access an external windows forms application and read its content
I'm trying to produce an application which scans through another application and finds telephone numbers that it shows on its forms. I don't know beforehand which external application it will be, but I do know that it will be a windows forms…
user907290
0
votes
1 answer
Include CakePHP constants into external web application
I should have access to CakePHP constants in an external application on the same server.
What is best practise to include parts of a CakePHP application, to access them?
already tried to include bootstrap.php:
Fatal error: Class 'Cache' not found in…

Patrick Hafner
- 129
- 3
- 12
-1
votes
1 answer
How to execute a MATLAB script in VBA
I want to run a MATLAB script using VBA. I tried running the following code
Set Matlab = CreateObject("Matlab.Application")
result = Matlab.Execute("path to the script")
MsgBox (result)
But it doesn't return anything in the msgbox, nor was the…
-1
votes
1 answer
Applications/processes ran using Java 8 on Windows are not visible
This has been making me work overtime and I still don't have much clues. I have a web application that is locally installed (pseudo-desktop app) that does the following:
Starts an SSH tunnel
directly runs ssh if on Mac OS X
uses PuTTy executable…

ionic
- 46
- 1
- 6
-2
votes
2 answers
How do I run an external application with Free Pascal/Lazarus?
How do I run an external application with Free Pascal/Lazarus (using Windows)? I found the "official" reference page, with several implementations and examples. Although I'm sure it works for many people, I, with my current knowledge level, am some…

Albin
- 1,000
- 1
- 11
- 33
-4
votes
1 answer
Create a Motorcycle configurator in Microsoft Dynamic CRM Online
I am trying to find a better solution for a Motorcycle Shop. I like the idea to use Microsoft Dynamic CRM for customer loyalty, that is a good idea but in the other hand I have the Motorcycle Configurator where you can configure the motorcycle as…

Isra de la Cruz
- 1
- 1