|
In the CLR, is a local copy of an exe is created when running the exe from a remote folder ?
if yes, where ?
Started by gil on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It does not create a new copy of the exe, it runs.
The CLR copies in your browser sits, or clickonce code) .
We need some more info...
It, and the the CLR will run in partial trust when the exe loads.
|
|
How can I drag a file to an exe I create (drag and drop over the Icon) and have it as an argument when the exe start running ?
Started by gil on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
RichTextBox....
If you have a Simple form with a RichTextBox on it you can set AllowDrag = true
In the Main Form
public frmMain() { this .
Windows allows you to do it by default.
OK, it comes in as cmd line arguments ...
Just do it, it's implemented in Windows.
|
|
How to Access the VB EXE File in the remote machine?
I want to run exe stored on machine A from machine B using VB6
Need VB 6.0 Code Help.
Started by Gopal on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You create an ActiveX exe on machine A, and then VB6 code running on machine B can call into the ....
Presumably you want it to run on machine you through DCOM with VB6.
Getting the exe to run on machine B would be easy.
|
Ask your Facebook Friends
|
Hi
how I can run any .exe file through WebService that I build ?
thank's in advance
Started by Gold on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To send a exe file to your webservice and than execute that?
I would advice to following sequence.
|
|
Has anyone run an exe using cron job?
I want to run an exe at scheduled intervals on a cloud server. The scheduled exe is created using .NET.
The cloud server has facility of running Cron jobs using ruby, php, perl, python and http I do not have much ...
Started by Puneet on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If it does than things should be straight forward from there. .
Instance and see if your EXE runs on MONO.
|
|
I'm creating a update program that will copy over updated .exe files. It needs to check if any of the .exes are running in a terminal session. If the .exes are running it will kill them. This will be a service that is running on the server with admin ...
Started by Jason on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you please clarify - why do you.
To be killed anyway, whether they run under terminal session or not.
|
|
Duplicate: http://stackoverflow.com/questions/717657/is-it-possible-to-run-an-executable-from-a-web-service
Hi
I have Webservice, and I want to run exe file through this Webservice
the Webservice and the exe file are on same computer
How can I do it ?...
Started by Gold on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Process.Start("path ....
It's in VB, but should be easy to port.
EDIT :
Documentation
Example using some advanced features (input/output/error redirecting).
Process.Start()?
You can use the System.Diagnostics.Process object to start an external process .
|
|
Hi,
I am executing an exe through my java program. the path is hardcoded in java.
I have packaged my the exe in the jar.
But am stuck as i have the path name hardcoded in the java file. so am not able to execute my jar as a stand alone program.
Any hints...
Started by krisp on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Oddly enough I have to writeThe operating system doesn't care or know about .jar file, so you'll have to unpack the .exe file the exe....
Users could then run your jar and it would run the exe.
To be that launcher class.
|
|
Hi
I want to run a java program as an exe in windows the windows box doesnt install java at all...
So, is there any other way in which the java program can be converted to exe which takes of this JRE dependencies etc???
Thanks Shiv
Started by siva on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
GPL, can be run as an ant task.
I just used the "ensure that at least Java X is available" .
In fact the very first thing that happens.
For the application to run you will need the runtime.
|
|
Is possible and how to use activex control or applet or flash or silverlight to run a exe game inside web browser, i mean like u embed flash game, or java game to web page.
thanks
Started by StoneHeart on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
What are you trying to do?
Asking your visitor to run a executable is sure to attract only the fools ....
When you say "exe game", I assume you mean an executable that will run on the client machine like that a proper executable has.
|