Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
139 views

how to close a running instance of Word document? (C#)

I could see a lot of very similar threads all around, but nothing seem to give me a solution which ought to be very basic. From my winforms application, I need to close a running instance of a word ...
0
votes
1answer
47 views

Running programs on another computer in C

I am making an FTP in C for learning purposes. I know how to connect to a computer and read/write a file, but I'm having problems with running programs. My idea is to connect to the computer, cd into ...
0
votes
1answer
75 views

I want my Java program to be able to run external application in Ubuntu, but I don't know how

I want my Java program to be able to run external application in Ubuntu, but I don't know how. Please help :)
0
votes
3answers
71 views

how to automate timed running of 2 programs?

I'm working in linux. I have two programs that run for infinite time ( that is , wont stop unless i kill the process ).i want to run program 1 first and then run program 2 after 20 seconds ( both will ...
0
votes
3answers
491 views

Does Windows have its own 'call other .exe' function (C++)

I know in C++ there is a function system("example.exe"); that runs another program, put it requires the include stdlib.h. Because I am already including 'windows.h', is there an equivilant to the ...