Search:

Type: Posts; User: banny7

Page 1 of 2 1 2

Search: Search took 0.12 seconds.

  1. Replies
    2
    Views
    1,436

    [SOLVED] Re: Calendar class question.

    I didn't realize that it was just creating a second reference. The clone was what I was missing thanks. Changed my code to the following.


    Calendar newDate = (Calendar) passedDate.clone();
  2. Replies
    2
    Views
    1,436

    [SOLVED] Calendar class question.

    I am not sure if I am posting this under the right thread or not but here it goes. I ran into a little problem while using the Calendar class. At work our work weeks are from Monday to Sunday and I...
  3. Re: Could not find the main class: com.sun.deploy.panel.JreLocator

    I think this is what is causing the issue. I will update later when I know for sure
  4. Could not find the main class: com.sun.deploy.panel.JreLocator

    I am not sure if I am posting to the right forum but since I recived help here before I figured I'd give it a try. A user recently got a new computer with Window 7. The application is a desktop web...
  5. Changing the forground of a date using DateChooserCombo

    I am trying to find a way to change the forground color of a specific date if certain requirements are meet. I am not sure how to go about this.
    I have the following.




    public...
  6. Re: access denied (java.io.FilePermission "report.jrxml" read)

    Yes they are set up the same. But I discovered later it has to do with the permissions on my computer and one other users computer. Other users can view the report. We think it has to do with the...
  7. access denied (java.io.FilePermission "report.jrxml" read)

    I am having trouple opening a report developed in iReport. I have done some searching on this and havent found anything that has helped. I get the following error message when I try to run the...
  8. Replies
    0
    Views
    1,599

    Problem with Java Update freezing application

    I tried other place but I think the problem is relatively new but not sure. Any ways, I ran a java update on my work computer, update 1.6.0_29. I tried to run the dev instance of the application and...
  9. Thread: Excel Report

    by banny7
    Replies
    4
    Views
    1,635

    [SOLVED] Re: Excel Report

    I forgot to post that I figured a way to fix my issue. I did it by writing it to a pdf instead of excel and I used nested tables. I a little like the following.





    try {
    //Create the...
  10. Thread: Excel Report

    by banny7
    Replies
    4
    Views
    1,635

    [SOLVED] Re: Excel Report

    I was thinking about doing the report in memory also, I have done that with other reports. I did that with a report that generates the employees that are off from a selected date plus 7. I used...
  11. Thread: Excel Report

    by banny7
    Replies
    4
    Views
    1,635

    [SOLVED] Excel Report

    I have a excel report that I created and now I need help with the formating. The report is currently hand written and follows a certain format in order to fit all the information on one page if...
  12. Thread: JTable Popup

    by banny7
    Replies
    10
    Views
    2,358

    [SOLVED] Re: JTable Popup

    This is my final code, including making sure the line ends on a space, incase you were woundering. Thanks again



    new javax.swing.JTable()
    {
    public String...
  13. Thread: JTable Popup

    by banny7
    Replies
    10
    Views
    2,358

    [SOLVED] Re: JTable Popup

    oo sorry about that i figured out how to get it to work. I am using netbeans and the code was in the custom creation code under the poperties. It seems that when the code is generated by net beans it...
  14. Thread: JTable Popup

    by banny7
    Replies
    10
    Views
    2,358

    [SOLVED] Re: JTable Popup

    I added the following using substrings to try and get new lines just to see if it would work, I know that they don't work with the spacing and I have other things I need to do a better job of but I...
  15. Thread: JTable Popup

    by banny7
    Replies
    10
    Views
    2,358

    [SOLVED] Re: JTable Popup

    I have also added a system out to the code to see if it works correctly in the console and it does.
  16. Thread: JTable Popup

    by banny7
    Replies
    10
    Views
    2,358

    [SOLVED] Re: JTable Popup

    Yes, the \n just appears in the popup now it doesn't go down to the next line
  17. Thread: JTable Popup

    by banny7
    Replies
    10
    Views
    2,358

    [SOLVED] Re: JTable Popup

    No that didn't work. Thanks though.
  18. Thread: JTable Popup

    by banny7
    Replies
    10
    Views
    2,358

    [SOLVED] JTable Popup

    I have a jtable with a mouse over event where if the mouse is over the comment column of the table, a popup appears with the comment in the pop up. However the entire comment is on one line and some...
  19. Replies
    12
    Views
    2,778

    [SOLVED] Re: jTable event help

    Yes it solved. The render was based on position because the table would show how many people needed to be assigned to the project. The user could select multiple job function area. ex a...
  20. Replies
    12
    Views
    2,778

    [SOLVED] Re: jTable event help

    I got an event to work this is what I have


    public frmSchedul() {


    initComponents();
  21. Replies
    12
    Views
    2,778

    [SOLVED] Re: jTable event help

    int[] resultCheck = new int[300];

    resultCheck = CheckAssignedSingle(date, metadata, projects);

    TableCellRenderer renderer = new CustomTableCellRenderer(intColTotal, resultCheck);
    ...
  22. Replies
    12
    Views
    2,778

    [SOLVED] Re: jTable event help

    Sorry I don't think I explained the situtation good enough. The font is rendered red if a there are not enough employees assigned to the project, render black when there is. This part is working, the...
  23. Replies
    12
    Views
    2,778

    [SOLVED] Re: jTable event help

    I tried

    private void tblProjectsMouseClicked(java.awt.event.MouseEvent evt) {
    // TODO add your handling code here:
    System.out.print("Table headers were clicked");
    }

    when...
  24. Replies
    12
    Views
    2,778

    [SOLVED] jTable event help

    I have a jTable that I enable the user to sort based on which ever column they click on, I use .setAutoCreateRowSorter(true); I am also using netbeans and was wounder what event I can use on the...
  25. Thread: Array and Menu

    by banny7
    Replies
    10
    Views
    2,005

    Re: Array and Menu

    Yea i just always called them global because one of my teacher did and it just got stuck in my head
Results 1 to 25 of 29
Page 1 of 2 1 2