Questions tagged [external-process]

167 questions
0
votes
1 answer

Calling SetProcessDEPPolicy on another process?

A game (Sims 3 to be specific) is poorly coded, and one of the ways to get it to stop randomly crashing is to add it to your DEP exception list. I don't really want to do that if I don't have to, so I was wondering if there was a way to use…
Dragonshadow
  • 61
  • 1
  • 11
0
votes
3 answers

Run jQuery on External pages/debugging jQuery

I am a beginner at jQuery. I am trying to practice as many functions as i can. BUT i am tired to write HTML for all this stuff. So is there any way i can run jQuery functions on any page as in google.com or any other site, any chrome extension ?
0
votes
0 answers

How to find which process is handling the file?

I am creating a file (e.g. myfile.sql) and I want to open the file in the associated application (e.g. SSMS): Process proc = new Process(); proc.StartInfo.UseShellExecute = true; proc.StartInfo.FileName = FileName; proc.StartInfo.WindowStyle =…
IvanH
  • 5,039
  • 14
  • 60
  • 81
0
votes
1 answer

Controlling external program with python

for my studies I need to process a lot of data. The data needs to be analyzed by a program called VMD and should finally be stored in an excel sheet. My aim is to automate the whole process instead of copy pasting all the different files. I am a…
0
votes
1 answer

Working with (not uploading) large files in ASP.NET

I manage to upload to my asp.net web app site large files (over 10mb). I have changed the web.config for that reason. However the web app gets idle when I work with those large files on my web-server. The problem occurs when I create an external…
0
votes
1 answer

jqgrid external control example

I'm new to JQ and JQ grid. I recenly got my admin all set up with jqgrid..it looks great. Now I want to add a few forms to the front of the site and I can NOT get a clear understanding on 'external controls'. I want a stand alone form not attached…
Jim
  • 1
0
votes
3 answers

how to make child of a list become a variable in python

i'm trying to make a web only using couchdb and couchapp... but for some reason i need external process using python.. and now i'm stuck how to handle post variable in python... i'v read this(and it works) and this... but i want it like this : >>>…
Egy Mohammad Erdin
  • 3,402
  • 6
  • 33
  • 57
0
votes
3 answers

C++: how to check whether an external program is running?

I run an external program with C++: _wsystem(exec); I want to kill the process if it runs for more than n seconds. I can do it in Python like this: p = subprocess.Popen(self.temp_exec, shell=True) cur_time = 0.0 while cur_time < self.time_limit: …
Alex
  • 34,581
  • 26
  • 91
  • 135
0
votes
1 answer

Javafx mac terminal external process

Using JavaFX, I am trying to run a program a.out on Terminal of Mac OSX. The following code does not work on Mac. The same code works on Windows by writing cmndM={"cmd","/c","start","a.exe"}. What's wrong on Mac? protected void…
0
votes
1 answer

How to create a process on node from a JVM which is running other node

I have got an usecase where I have to call python script from Java program. Java process (JVM) will have to launch a process on other system/node (not within the same node). How this can be achieved?
Pruthvi Chitrala
  • 176
  • 1
  • 3
  • 10
0
votes
0 answers

FreePascal FFmpeg started by TProcess stops working

I create TPorocess for ffmpeg to stream a video from /dev/video0 in Linux Ububntu 14.04. After 5 minutes of work the stream send stops and on the receiveng side (ffplay) the picture freezes. The strange thing - If I try to read stdout of ffmpeg with…
Dr.eel
  • 1,837
  • 3
  • 18
  • 28
0
votes
1 answer

CMake activate external program

I want to run the following command win_bison.exe --output="calc.tab.cpp" --defines="calc.tab.h" "calc.y" and then create an executable from the products of this command with CMake add_executable(Calc calc.tab.cpp calc.tab.h) All the files…
user3315504
  • 1,055
  • 2
  • 12
  • 17
0
votes
1 answer

How to run a external process on a PyQt5 OSX app, without crashing the app?

I'm currently building an app that uses OCR to extract data from PDF files using PYQT5, and I need to use the terminal to convert the pdf into jpeg's before running the OCR; however, when I run this subprocess after compiling it crashes, but it…
keith low
  • 31
  • 7
0
votes
3 answers

Communicating with C++ process from Java

First, I saw a few Q's about this issue in the site, but didn't see any answer that solve my problem. I have a program written in Java and it calls a cmd program written in C++. (this is an assumption since I don't have the actual source) I know the…
MByD
  • 135,866
  • 28
  • 264
  • 277
0
votes
1 answer

Is there any remotely cross platform way to execute an external process?

I was looking for advice on how to execute a process that is somewhat cross platform. I have written Java and Ruby implementations of my app, but its less of a language specific problem and more of a platform specific issue. E.G on Ubuntu /usr/bin/…
EnabrenTane
  • 7,428
  • 2
  • 26
  • 44