Questions tagged [external-application]

55 questions
0
votes
2 answers

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 external application was closed I want write the…
Horcrux7
  • 23,758
  • 21
  • 98
  • 156
0
votes
1 answer

How do I get data from an external application?

I want to get data from another application. I used AccessibiliyService, but AccessibiliyNodeInfo does not contain the information I need. I want to get drawableLeft property from TextView. Maybe anybody know, how it to do. I have root device. Is it…
0
votes
1 answer

GUI Freezes using QProcess during data acquisition

PROBLEM DEFINITION: I have an external application called runSensor that communicates with a sensor. The sensor sends its data over UDP. Using the terminal, runSensor has two arguments to communicate with the sensor for data acquisition:start and…
0
votes
1 answer

Ionic App 2 Launch Calculator

I am working on IonicApp 2 and I have a screen in which, when the user clicks the filed we wanted to show the calculator so that the user can perform the calculation. Is there a way we could do it? Regards, Raaj
Raajkumar
  • 857
  • 2
  • 13
  • 26
0
votes
1 answer

Open PDF file in my android application without using any browser or third party application

I have already searched a lot on this topic but I could not able to find the proper answer. I kindly request to not mark it with duplication without answer. I have two activities in my android application. 1]. List of PDF files available on server…
jil123
  • 99
  • 1
  • 12
0
votes
1 answer

Is there a way to get SWIFT automation to work with external API's?

I am working on an application that connects with the external API of iOS contacts. When using SWIFT automation record button, it thinks that it finds the button, but, when the code runs the automation it is not able to locate elements within the…
0
votes
1 answer

C# - Launch application with arguments.

Hello I've to Launch the software CFast for a Parametric Analysis. To do this, I want to create a application in C# that runs the core CFast.exe. If I want run the software from cmd.exe and execute it on the file INPUTFILENAME.in I write in prompt:…
Locen0
  • 11
  • 1
  • 3
0
votes
0 answers

Some problems when embedding external application in winform in C#

I'm trying to embed a external application in a form of winform with c#.It worked well with "nodepad.exe" but my target application using following code. Process.Start(@"C:\Program Files\SIMPACK-9.8\run\bin\win64\simpack-viewer.exe"); …
Y.zd
  • 21
  • 2
0
votes
0 answers

Alternative route app

Maps has an option for choosing an external app, as you can see in the picture below. Is it possible to do the same with a third-party app? I mean I would like to add this feature in my app.
0
votes
1 answer

Execute java GUI program from external website

maybe what I'm asking is difficult to do or even ridiculous, but I'll give it a try anyway. I have a typical PHP website, with a products list. And I have a Java application which manages the products (CRUD). In that application I have a JDialog…
Kunstmann
  • 109
  • 1
  • 10
0
votes
2 answers

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 emulator? Or Is there a way to directly install the APK…
unj2
  • 52,135
  • 87
  • 247
  • 375
0
votes
0 answers

Get the Left Mouse Button Down C#

I am writing a program for educational purposes that counters the recoil in a FPS game. I came across a problem that I didn't know how to solve and was wondering if you could point me in the correct direction. My problem is, I would like to check if…
Kinggadino
  • 47
  • 9
0
votes
1 answer

Start external "invisible" app from another app

I created some little apps without icon and which are not launchable by the user directly in the app menu of Android. To dot that, i deleted the intent-filter part of the apps :
0
votes
1 answer

Opening Child Form in External Application VB.NET

I know it's possible to open an external application in an MDI form: Opening external application inside VB.NET MDI Form But what I'm looking for is to open a VB.NET MDI Form inside an external application, notepad.exe for example. What I want to…
0
votes
1 answer

Tracking file changes done by an external apps

Is it possible to get a handle on a file which is opened by any external app via my application? Using Cloud-Storage Apps as an example, I would like to track changes to a file opened via the Storage-Provider App, so the manipulated file can be…