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 wOOdy-Soft 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: advait75
  • Content: Threads
  • Order by date
  1. advait75

    JTree multiselect Drag and Drop

    Hi, I have a Panel with a JTree. I need to be able to do the following - 1. Multiselect nodes or leaves. However these nodes / leaves must be of the same type only. 2. User should be allowed to drag and drop all selected nodes / leaves. Through certain rules, I will control where these nodes /...
  2. advait75

    Drag and drop between different JTrees

    Hi, Is it possible to implement a drag and drop between 2 JTrees. I am creating a UI where users should be allowed to drag an item from one JTree and drop it into another JTree. Both JTrees are in the same frame, but on different JPanels. Can someone please tell me how to achieve this? Thanks...
  3. advait75

    SimpleDateFormat question

    Hi, I have a string like "01-Feb-2004". I need to get it into a 2004-02-01 format so that I can insert into a MYSQL db. I tried using the SimpleDateFormat, but I get an error saying - Unparseable format. This is my code- String todate=request.getParameter("todate"); SimpleDateFormat df = new...
  4. advait75

    Swing Components

    Hi, Can somebody please point me to some great looking Swing components? Regards
  5. advait75

    PoS Features

    Hi, Could you please send me a complete check list that one would look for in a PoS system, in terms of functionality, technology, features etc, irrespective of which industry/busines line that the PoS will be used in. If reply is in the form of spreadsheets etc, please send to...
  6. advait75

    Apache and JBoss conflict

    Hi, I have JBoss 3.2.3 and Apache 2.0.54 running on a Windows 2K box. I do not want to integrate the 2 or anything. However, there seems to be some kind of conflict going on between JBoss and Apache. Sometime JBoss dies, and sometimes Apache does. I also see the following error in my event...
  7. advait75

    rich client designing

    Hi, Does anybody know of a tool that will help me design the UI for a rich client application. Also, is there a way of giving the application a Mac Aqua look? Regards, Advait
  8. advait75

    Rich client designer

    Hi, Does anybody know of a tool that will help me design the UI for a rich client application. Also, is there a way of giving the application a Mac Aqua look? Regards, Advait
  9. advait75

    javax.servlet.ServletException: No getter method for property

    Hi, I am using java 1.4.2_06, hibernate and struts, on Windows XP. The application runs fine on my machine. However, when I tried to move the code and the app to another Windows XP machine, I get the following error. javax.servlet.ServletException: No getter method for property programForms of...
  10. advait75

    Netbeans and Hibernate

    Hi, I have been developing an app using hibernate, and struts, using an Oracle db. I have successfully been able to get my app done using a text editor and running the app in a stand alone Tomcat 4.1.30 Now, I have been giving the task of moving this app to Netbeans, so that other developers...
  11. advait75

    beginner question

    Hi, I am new to PHP. I have the following code, which executes a command line netstat command and removes the headers and replaces white spaces with commas - <?php exec('netstat -n', $sts); //Runs the Netstat Command unset ($sts[0]); //Removes the first line (Headings) unset ($sts[1]); //Removes...
  12. advait75

    Netstat results to db

    Hi, Can somebody please give me source code for writing the results of a netstat command, to a database using VB6. I am having problems as the output of netstat from the command line is not properly formatted. Thanks and best regards, Advait
  13. advait75

    Running Perl scripts

    Hi, Can someone please tell me how to run perl scripts from Apache 1.3 HTTP server, without the use of mod_perl on Windows 2000. Thanks, Advait
  14. advait75

    Problem with installing Perl Module

    Hi, I'm trying to install mod_perl (Windows 2K machine). However everytime i try to use ppm from the command prompt, I get the following error. Failed to load PPM_DAT file Can't use an undefined value as a SCALAR reference at E:/Perl/site/lib/PPM.pm li ne 1678, <DATA> line 40. I currently have...
  15. advait75

    Jboss help

    Hi, I am running Jboss 3.2.3 with JDK 1.4. When I try to access certain applications (even web console app), I get the following error - org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac]...
  16. advait75

    JVM

    Hi I am trying to bring up JVM from a C program. I am using the following command to link - cl -ID:\j2sdk1.4.2_05\include -ID:\j2sdk1.4.2_05\include\win32 -MT invoke.c -link D:\j2sdk1.4.2_05\lib\jvm.lib However, I keep getting the following error. I am running Windows XP, VC++ 6.0 and j2dk...
  17. advait75

    C++ DLL call to Java method

    Hi, Can somebody give me an example for calling a Java method from a C++ DLL. Lets say the C++ DLL accepts a string and passes the string to a Java method which puts up a dialog box with the string. Thanks, Advait
  18. advait75

    Netbeans 3.6 help

    Hi, Does anybody know how to open existing projects which contain some UI in Netbeans 3.6 and view the UI. When I open it, I see only code. Is there any way to view the UI layout?
  19. advait75

    DOM to HTML

    Hi, I have a DOm filled with data from a Resultset. How do I output this as a treem menu in HTML?
  20. advait75

    Help with Generic tree data structure

    Hi, I am trying to develop a Java class which acts as a recipe calculator. What it is supposed to do is that if I give 'Capuccino' as an input parameter, the class should calculate how much milk, how much sugar etc goes into that coffee. The class should return every item that goes into the...

Part and Inventory Search

Back
Top