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 Mike Lewis 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. grindstonegirl

    javah

    I actually figured it out. I didn't know that about eclipse thanks
  2. grindstonegirl

    javah

    ok so downloaded the SDK from java sun now when i try to use javah.exe i am getting the error: java.lang.NoClassDefError: com/sun/tools/javah/main from teh error it appears as though the problem is with the javah file. my file has no problem running when i run it through eclipse but running it...
  3. grindstonegirl

    javah

    I'll download it. I have been using eclipse as my IDE. So i don't know why I dont have these files, I searched all local hard drives for the javac and javah. all i could find was java.exe and javaw.exe but thanks for you help
  4. grindstonegirl

    javah

    Hi i searched for javah and javac i have neither one. i do have java.exe is there anyway to get these files? ~grindStone~
  5. grindstonegirl

    javah

    Hi this is going to be a silly question, but i am trying to write a java program with native methods. I am following the tutorial at java sun and it says to use the javah utilty to make the header file. To do this it says to run from the command line with the arguements: javah -jni FileName...
  6. grindstonegirl

    javah

    oops i meant to post this in the java thread sorry
  7. grindstonegirl

    javah

    Hi this is going to be a silly question, but i am trying to write a java program with native methods. I am following the tutorial at java sun and it says to use the javah utilty to make the header file. To do this it says to run from the command line with the arguements: javah -jni FileName...
  8. grindstonegirl

    JTable color rows

    Hey the code worked great i could easily adapt it to what i wanted. thanks so much! ~grindstone~
  9. grindstonegirl

    close box on JFram

    Hi I have a JFrame and when the user hits the x close box, I want to call a method then close the JFrame. I understand how to use JFrame.EXIT_ON_CLOSE but is there anyway to set it to call a method first? thanks for you help ~grindstone~
  10. grindstonegirl

    JTable color rows

    Hi I have a JTable and i want to change the colors of the rows dynamically. The colors need to correspond to the first letter of the string in the cell. When the string changes, the color also needs to change. I looked up in the java sun tutorial, but i am having some trouble figuring how...
  11. grindstonegirl

    new items aren't appearing

    I figured it out. I was running a seperate program that wrote to a file, and then i opened the file and read in the info for the table. I wasn't waiting to make sure the first program had completed it's task. But when i displayed a message dialog, it gave the program enough time to finish so it...
  12. grindstonegirl

    new items aren't appearing

    hi i have a class that extends AbstractTableModel. i create a table and add in some rows. After I add them if I display a JOptionPane message box, the items will appear However, unless I display the message box they don't appear. I tried doing myFrame.setVisible(true); but that isn't helping...
  13. grindstonegirl

    environment variable

    ok thanks i'll check it out
  14. grindstonegirl

    environment variable

    Hi ok this might sound dumb but what's JNI and how can i use it?
  15. grindstonegirl

    environment variable

    Hi I have an environment variable set to the location of certain files are that I need to access during my program. The ideas is so the user can set the environment variable to where ever they want to put their files. How can I access the environment variable's path in my code, so I can...
  16. grindstonegirl

    List control problem

    you can check to see if an item is selected whenever the list is clicked. Use NM_click from the wizard. that means someone clicked in the list. you can then check to see if they selected an item by using the methods of clistctrl.
  17. grindstonegirl

    using html help files

    ok here's the solution the trick is setting up microsoft visual c++ to do this. I didn't realize this at first so it made it difficult. The actual code is very simple once you set the libraries up in visual c++. Follow these instructions to set up visual c++...
  18. grindstonegirl

    using html help files

    yeah i am using a vc++ mfc program, but i also figured out how to get it to work thanks anyways!
  19. grindstonegirl

    using html help files

    Hi I created html help files and i want to access them from a help menu in a c++ program. The help file i need to open is a .chm How can I do this from a c++ without using the F1 help? thanks ~grindstone~
  20. grindstonegirl

    CListControl Text for a certain row

    yeah i got it to work i did ended up using a custom draw thanks

Part and Inventory Search

Back
Top