Tagged Questions
The run tag has no wiki summary.
12
votes
5answers
15k views
How do I automatically update a Subversion working copy?
Does anybody know how I can automatically run svn update? If anybody has a script or something like that, could you show me an example?
12
votes
5answers
4k views
How do you add Start->Run shortcuts in Windows XP?
Does anyone know how you setup new commands to launch an application from the Start->Run box?
ie. you can type "firefox", "winword" or "excel" into the Run box and those applications will open even ...
10
votes
1answer
21k views
how to run Android emulator automatically from eclipse?
may i know how to auto run a project
on Android emulator using eclipse?
8
votes
6answers
1k views
C# Run Program from byte array
I have a program stored in byte array.
Is it possible to run it inside C#?
Thanks
6
votes
6answers
339 views
c#: how do i create a program that will run code that i punch into a text box?
i was wondering how exactly I can create a small app that will accept my input and run it as code. same light as building an IDE, but I dont want to go that far, but I do want it to use the FCL. So ...
6
votes
2answers
396 views
How to run ALL tests in my solution using command line MSTest.exe?
According to MSDN here and discussed here, we can use MSTest.exe to run tests from command line - which is sweet and faster than running within the IDE (especially slow if you are working on a big ...
6
votes
1answer
1k views
How to run a file before setup with Inno Setup
Is it possible to run a file with Inno Setup, before the setup beginns?
Documentation
6
votes
2answers
2k views
XCODE auto save code when build and run?
How to tell Xcode to save the source code automatically without prompting, each time I hit on the build and run?
thanks in advance
6
votes
1answer
3k views
Execute a Groovy class in a package from the command line
Is there a way to execute a Groovy class by specifying the package with dots, as with java?
Example: File ./my/package/MyClass.groovy:
package my.package
class MyClass {
static void main(String[] ...
6
votes
2answers
7k views
How do you run Android instrumentation tests from Eclipse?
Currently I'm running instrumentations tests from the command line this way:
adb shell am instrument -w com.blah.blah/android.test.InstrumentationTestRunner
Is there a way to run them from Eclipse ...
5
votes
6answers
197 views
Why is Python running my module when I import it, and how do I stop it?
I have a Python program I'm building that can be run in either of 2 ways: the first is to call "python main.py" which prompts the user for input in a friendly manner and then runs the user input ...
5
votes
4answers
199 views
How to determine that a PHP script is in termination phase?
Is there any function / global variable in PHP that returns the current state of the script (something like runnning, terminating)?
Or is the only way to set this state by making use of ...
5
votes
2answers
598 views
Running a script before locking a computer (Windows 7/Vista/XP)
HI Guys,
Basically, I've written some powershell which allows me to harness the power of the keyboard media keys to control any music that's currently running.
What I want to be able to do is run ...
5
votes
9answers
2k views
How to create a Java application which can be run by a click?
I would like to have a Java application which can be easily started.
So far I have managed to create a jar file but I do not see any advantages yet. Before I run my application by "java ...
4
votes
3answers
308 views
How to programmatically open Run c++?
the question is how to open Run programmatically from c++? I know that have some function that can replace that, like shellexec, winexec but for some task I need just Run dialog to appear.
4
votes
1answer
950 views
set “run as administrator” flag programmatically
Is it possible to programmatically set the "Run As Administrator" flag on exe file or shortcut file?
Does Installshield support this functionality if i'll do it as part of the installation process?
...
4
votes
2answers
1k views
How to combine “|” character in run () command in powerbuilder in order to read an txt file as metadata output of a file (pdf)?
Could you please tell me how to use "pdftk mypdf.pdf dump data | findstr NumberOfPages in powerbuilder run command and save this metadata in a file by using the following code like this:
string ...
3
votes
1answer
47 views
How do I make my out-of-date code automatically built before being run?
I'm using Visual Studio 2010.
When I change the code in my source file, then click the "Run" button on the debug tool-bar, Visual Studio does not automatically build the code, instead it runs the ...
3
votes
2answers
32 views
Why maven executable doesn't run?
I have create simple project, only to launch calculator:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
3
votes
1answer
71 views
Debug HaXe from Eclipse
My goal is to debug HaXe application in Eclipse (publishing SWF) on Linux. I have manually installed Eclipse Helios, Flash debugger version and HaXe. I have installed Eclihx. Problem is that I'm ...
3
votes
2answers
125 views
“Run as” android application is missing
i have a strange situation here. SDK and ADT are installed and working, but when i run some android code, the "Run As" panel is empty. I need to go to Run configuration, click on Android application, ...
3
votes
1answer
137 views
SBT: Start a command line 'run' of the main class of a non-default project
I am starting to use sbt build my Scala code (and handle dependencies). As far as I know if I use
$ sbt run <args>
on the command line this will run the main class of the main project.
Is it ...
3
votes
3answers
383 views
Apk only runs in debug mode. Apk started with “Run” in Eclipse stops on breakpoints.
I note that this has been asked before but I haven't found an answer yet. The main tell tale of this problem is that Eclipse stops on break points when the apk has been deployed as "Run"
I've done ...
3
votes
2answers
391 views
Matlab: Running an m-file from command-line
Suppose that;
I have an m-file at location:
C:\M1\M2\M3\mfile.m
And exe file of the matlab is at this location:
C:\E1\E2\E3\matlab.exe
I want to run this m-file with Matlab, from command-line, for ...
3
votes
7answers
160 views
Communicating to a C++ program from java
I want to execute a external .exe program from within java. The .exe is a CLI application which takes input in runtime( scanf() ) and outputs depending on the input. I can call the program to execute ...
3
votes
1answer
359 views
Launching run configuration outside Eclipse IDE
I have a run configuration defined for my Eclipse RCP application which is saved to a .launch file. Is there a way to use this launch configuration outside the Eclipse IDE? i.e, it would be nice to be ...
3
votes
4answers
84 views
Regarding significance of synchronization
This might be a dumb question to ask but I am new to multi-threaded programming in Java.I created 4 threads and then invoked the run method on them.In the run method I am using an array and am ...
3
votes
3answers
1k views
c# run CL exe or batch cpture output LIVE to textbox?
Is it possible to run any Command Line based program or batch file and capturer (re-direct) the out put to a text box LIVE
the CL takes time and it produce text!
something like tracert.exe (it takes ...
3
votes
3answers
156 views
Speeding up PDE edit-compile-debug cycle
Are there any low-hanging fruit regarding some more efficient way to run and test Eclipse-plugins (within the PDE)? Besides slimming down the Eclipse-configuration, which has already been done.
...
3
votes
2answers
520 views
how to run code compiled by JavaCompiler?
Is there any way to run program compiled by JavaCompiler? [javax.tools.JavaCompiler]
My code:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
...
3
votes
3answers
1k views
How can I count runs in R?
In R, what would be the most efficient/simplest way to count runs of identical elements in a sequence?
For example, how to count the numbers of consecutive zeros in a sequence of non-negative ...
3
votes
2answers
414 views
Running a jar archive in a running Java application
I am new to java programming.
I want to run a runnable jar archive from within my running Java application.
I need to be able to control the running classes from within my application (i.e. Stop, ...
3
votes
4answers
3k views
Cygwin - run script silenty from “run command”
I have script lets say:
C:\foo.bsh
I want to be able to run this command via the windows run command:
Start -> Run
Windows Key + R
and type something small like 'foo' and hitting return.
...
2
votes
5answers
88 views
Java: Threads working without all classes having public void run()?
I have a relatively large amount of code written without threads in mind. I am new at Java, and programming in general, so I am having a little trouble figuring out how to run the program I have built ...
2
votes
2answers
165 views
Xcode 4.2 Product -> Run Greyed Out
My "Run" button under "Product" is greyed out and after trying a few things from various forums, can't figure out what's gone wrong.
I've tried removing the project.xcworkspace and xcuserdata files ...
2
votes
3answers
40 views
how to add a hook for Cntrl+S event in eclipse?
Whenever I press Cntrl + S in eclipse to save source code I want some custom CMD on shell to run on my Centos host .
How can I do it ?
Thanks.
2
votes
2answers
349 views
android ndk using mupdf library
I want to make a pdf viewer program in android phone. So, I purchased the mupdf library.
I built the mupdf c++ classes and have 'libmibookreader.so' file.
And I also compiled the native function ...
2
votes
2answers
961 views
how run exe file in c# [closed]
I made an application that requires functionality to run iisreset.exe. My application is on deploy in server. so iisreset should be server not client machine. I use process.start() but it reset iis of ...
2
votes
5answers
141 views
cannot run a simple java code
I have downloaded a java developers kit for my 64bit windows 7, wrote down my code in the notepad, though the code is compiling from the command prompt and creating a .class file, but its refusing to ...
2
votes
3answers
321 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
73 views
Xcode - executable pipe input?
How to run executable in Xcode with piped input? For example:
echo "abc" | myexec
I know I can set arguments to my executable in the Executable [name] Info > Arguments tab, but there seems to be no ...
2
votes
1answer
90 views
How to start a process when application run in VB.NET?
everyone! I want to add a process to my application, the process should be started to listen some events when the application run. I searched in Internet, and I didn't find answers... Some people said ...
2
votes
1answer
36 views
How do I call a python scipt by php on a less powerful server to be run on an other more powerful server (cluster)?
I have a action.php script from where I call a python script like this:
$call_python = "../python/python myPythonScript.py ".$someArgument;
$python_output = Null; // stores every output generated by ...
2
votes
2answers
190 views
selecting a group of consecutive data in R using rle
I would like to select from this data the group of points that have a distance value of <=40 and an activ value <=15. They have to be consecutive and there has to be a minimum of 3 of these. ...
2
votes
1answer
140 views
Run tag doesn't support data binding in WP7?
Today I tried to use something like, and the Blend complained that there's invalid xaml. I am pretty sure this works in Silverlight 3/4...
Any ideas?
2
votes
1answer
328 views
Testing with console output for multiple devices (iPhone/iPad) at the same time with Xcode
Is it possible to debug / run Xcode iPhone/iPad application project with multiple testing devices at the same time and see console outputs for all of them?
I am developing bluetooth application and I ...
2
votes
6answers
672 views
Running an .exe file from a browser (in any way)
I have got a page which lets me control some devices in a local network. However, some of the advanced settings can be set only using an .exe file which is located on the computer where I run the ...
2
votes
4answers
514 views
How to Run Java Source Code within a Java Program
So, I have wrote some codes to compile a java source code. It then produces the .class file. The problem is how do I run it? For example, I am ok with the name of the program and class being set, I've ...
2
votes
1answer
150 views
NetBeans behaves differently if project is run via “Run Project” or build.xml>run
I slightly modified the build-impl.xml file of my NetBeans project. (Specifically, I made it to insert build time into program code). If I run project via build.xml "run" target, I get behavior I ...
2
votes
1answer
122 views
MySQL :: Run SQL statement within Variable
I am creating a stored procedure in MySQL 5.1.40 which needs to run a lot of SQL statements.
One particular statement that is often repeated clears a temp table:
DELETE FROM w_projection_temp WHERE ...