Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Lars
  • Order by date
  1. Lars

    kill child process

    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.
  2. Lars

    kill child process

    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...
  3. Lars

    runtime.exec

    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...
  4. Lars

    Problems with Deploytool

    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...
  5. Lars

    java.util.regex.* in a servlet

    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...
  6. Lars

    Mixing JavaScript and JSPs

    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...
  7. Lars

    Mixing JavaScript and JSPs

    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...
  8. Lars

    How can I insert a NULL value into a database column ?

    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!
  9. Lars

    How can I insert a NULL value into a database column ?

    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 + "'" +...
  10. Lars

    Different Textsyles in a ComboBox

    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,.....)...
  11. Lars

    CRecordView in a CTabCtrl

    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...
  12. Lars

    Combobox in a Listboxcolumn

    I want to display a combobox in listboxcolumn. Is there anybody out there who could tell how to do this? Thanks in advance.
  13. Lars

    DriveListBox and DirectoryScan in VC++

    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...
  14. Lars

    Webcam-programming in Java

    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!
  15. Lars

    DBGrid

    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.
  16. Lars

    Syncronising to databases

    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.

Part and Inventory Search

Back
Top