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 SkipVought 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: *

  1. Jimguld

    What Java version do I need to run Servlets ??

    Hi I am trying to run Servlets and the Servlets Classes i part og Java Enterprise Edition. Do I need Java SDK ?? The EE installe under c:\sun ??
  2. Jimguld

    How can I see what the formats are?

    or you can simpley use the content prodecure or datasets procedure... proc contents data= sashelp.class out =_info; run the _info dataset provides detailed information on the variables, formats and informats ect.
  3. Jimguld

    Appending Tables in SAS

    You can also append with Proc Datasets...
  4. Jimguld

    How to copy and paset bewteen JTables

    Thanks so much, this works...amazing and so easy. Jimhimselv
  5. Jimguld

    How to copy and paset bewteen JTables

    Hi everyone, I wish to copy cells between two JTables. Does anybody know how to do this. I have searched everywhere and not really found annything. Only some recommendations about using the clib borad. But how, any code examples would be appreciated highly. Cheers Jim
  6. Jimguld

    How to force a scrollbar to scroll down by itself

    I may be a bit out of time...I am using C:\jdk1.3.0_01 maybee this could be the problem.
  7. Jimguld

    How to force a scrollbar to scroll down by itself

    Thanks, using textArea.setCaretPosition(textArea.getText().length()); this works works. It does not work without, strange I think.... Cheers Jim
  8. Jimguld

    How to force a scrollbar to scroll down by itself

    Okay fine, but how do I use it...which position do I provide
  9. Jimguld

    How to force a scrollbar to scroll down by itself

    Hi , I have a JTextarea that I add text to every time I press a button. But I can't seem to get the textarea to scroll down by itself so I can see the last added line. I have tried going about the viewport, but it sucks a bit. Any suggestions Tried this..but not really good JViewport port =...
  10. Jimguld

    Starting a Java Application

    Hi I have made a little Java Application that I would like to run. I have compiled it and can run it using the c\:> Java myapp However I would like to run it from a desktop icon. So when I double click on an icon the application starts. How do I do this, and what command should I type in the...
  11. Jimguld

    how to set background color on a JLabel

    Well there u go, thank u so much...
  12. Jimguld

    Changing the cursor in a JApplet

    The cursor can have many types, look in the java.awt.Cursor package.. You can set the cursor of the components like this. I have added an example that changes the cursor when entering the mouse over a JButton. Add the code below where appropriate in your applet code...I have left out init method...
  13. Jimguld

    how to set background color on a JLabel

    Hi I have tried to set the background color of a JLabel. It should be very simple, however it does not seem to work. I am trying to use the setBackGround method, and teh JLabel is added to a JPanel... JLabel label = new JLabel("Hello World")...
  14. Jimguld

    starting a jar file

    Thanks....
  15. Jimguld

    starting a jar file

    did not understand that last part pete
  16. Jimguld

    starting a jar file

    Hi can anybody please tell me how I run a Jar file. I have made a java application and created a JAR file from it. Now I would like to make an incon and run the application when I click on teh icon. What should I write as the target... I have tried this... java - jar 'c:\myjar.jar' ?? and...
  17. Jimguld

    Can anynody explain this?

    It looke like an innerclass... happens if you fx define a cass in another class public class a { public a() { } class b extends somotherclass { } }
  18. Jimguld

    Remember actions in Java

    Hi I am trying to build a sort of memorizer in Java. Try to imagine that I have selected a text item from five comboboxes. Only when all comboboxes are selected it represents a state where a button becomes enabled, otherwise the button will be disables. Then I wish to rember my selections and...
  19. Jimguld

    Triggering problem when defining the Porcess Definition

    Cheers KK I actually found a workaround. I made a bat file instead where I wrote the dos command start c:\mystartfile.bat this works.. Jim
  20. Jimguld

    Java.security.AccessControlException: access denied...

    Its a permission problem, so you must add a file permission to the code your are running. Go to your policy file on window it is usually located under the homedirectory of JAVA. C:\jdk1.3.0_01\jre\lib\security add the following in the top of the file. Save the file and try again. grant...

Part and Inventory Search

Back
Top