The problem is that those other program are not written by me.
My program just starts a shell script which then executes another java program...for example IBM Eclipse. When I shutdown my program I also want Eclipse to shutdown too. I
cannot modify Eclipse to check for a shutdown file.
Hello !
I want to start to start other programs from my java program. To do this I use the following code:
.
.
Runtime rt = Runtime.getRuntime();
proc = rt.exec(progName);
proc.waitFor();
.
.
When I end my program I also want all the programs started
by my...
Hello,
I am trying to start a program i.e OpenOffice on a Linux maschine using following code:
String PROG_NAME = "......"; // Path to the program
.
.
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(PROG_NAME);
The process is started, but I cannot see the output. On a...
Hi there!
I wrote a program and deployed it with the deploytool on the J2EE server and everything worked fine. Then I had put my *.ear file into a new directory and since then I can still deploy the programm but all changes in the sourcecode are not recognized by the deploytool. This also...
hi,
i need to scan through a String and replace some parts of it with another text. I am using the new java.util.regex.* package.
I already wrote the programm as a normal application. Now I want to change it into a servlet. Everything is fine with Forte4Java. It compiles and I don´t get any...
Hi!
I want to develop a Java Server Page to display the contents of a database. I would like to display the contents in a treemenu written in JavaScript.
Has anybody out there done something like that before and can help me?
or can at least anybody tell where I can find good resources on...
Hi!
I want to develop a Java Server Page to display the contents of a database. I would like to display the contents in a treemenu written in JavaScript.
Has anybody out there done something like that before and can help me?
or can at least anybody tell where I can find good resources on...
hi pipk,
thanks for your reply.
i worked it out. the problem was that i always tried to insert an empty string whenever the string was really null.
access didn´t like that!
Please help me!
I have to insert a NULL value into a column of a database.
I tried this:
String personId = "p0815";
String value1 = "test1";
String value2 = "test2";
String value3 = null;
String SQL_String = "'" + person + "'" +...
Hi!
I would like to display the Combobox-entries in different textstyles.
I tried this:
CFont font;
font.Create(......,FW_BOLD,.......);
m_ComboBox.SetFont(&font);
m_ComboBox.InsertString(0,"One");
.
.
.
font.DeleteObject();
font.Create(......,FW_NORMAL,.....)...
Hi everybody!
I have to write a program that displays the content of database-tables. There has to be one Tabsheet for each table. Does anybody know a "smart" way of doing that ?
I thought of inserting RecordViews into the TabCtrl but I didn´t manage to get it to work yet.
Thanks...
Hi
I want to write a program that searches for files with a given extension. Therefore I want to display a listbox with all available drives and folders where the user can select the drive or folder to start the search. The search should include subdirectories.
Anybody out there who has got an...
I want to write an application that is able to read picture-streams and snapshots from a webcam, display the picture in a window and do all sorts of image-processing like edge-detection and hough-transformation. Is there
an API that can solve this task ?
Thanks in advance!
I have to write a database-application with DB2 and VC++ 6.0. I want to show the database-tables in a DBGrid. I did all the ODBC connection-stuff but somehow I cannot connect the DBGrid to a datasource.
Hi I have 2 databases A and B.<br>And want the data in B to be (almost) the same as in A.<br>How do I acomplish that?<br><br>A is on a Solaris x86<br>B is on a Linux RedHat x86<br>They are connected via a WAN connection.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.