CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Jarwulf

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,116

    arbitrary sort algorithm

    Hi, does anyone know of a C++ sort algorerhythm or library that can take input of a bunch of rows of data and then sort rows by an arbitrary defined order of one of the columns

    ie sort rows by...
  2. Replies
    1
    Views
    997

    Jar in jar for eclipse

    Hi, I have a program that uses jar libraries for some classes. The classes are detected fine when they are run from jars attached to the project in the IDE but once I pack them into a jar and export...
  3. Replies
    5
    Views
    1,601

    Re: debugging=runs fine normally=fails

    I also set all permission in the jnlp file and it doesn't help
  4. Replies
    5
    Views
    1,601

    Re: debugging=runs fine normally=fails

    I signed my jars and they've run before...

    It 'crashes' as shown below...I put in text statements to pinpoint the position. Can't dig deeper without a lot of extra trouble because doing so would...
  5. Replies
    5
    Views
    1,601

    debugging=runs fine normally=fails

    I have a java program that seems to work okay when I'm debugging it or running it from the Eclipse IDE. But when I export it into a jar file and run it through a jnlp it hangs at a certain step.
    ...
  6. Replies
    2
    Views
    2,700

    Re: Listeners and Variable errors

    Aite, I moved the variables to the top and put them to private and the errors disappeared...
  7. Replies
    2
    Views
    2,700

    Listeners and Variable errors

    Getting an error in the code below relating to the line with selectedFileHolder. The code has to do with adding a PropertyChangeListener for a swing worker which will copy a converted File to...
  8. Replies
    1
    Views
    1,080

    Setting up Swing worker

    I'm trying to set up a swing worker that does some file processing in the background while updating progress to a JtextArea.



    From class X I call swingworker FileProcessor


    {
    JTextArea...
  9. Replies
    1
    Views
    585

    Mistake in the Braces

    Copied this from the Oracle docs on Swingworker


    class PrimeNumbersTask extends
    SwingWorker<List<Integer>, Integer> {
    PrimeNumbersTask(JTextArea textArea, int numbersToFind) {
    ...
  10. Replies
    1
    Views
    742

    writing to JTextArea from another object

    Hi, Java Eclipse windows

    I have a calling class and a class that converts a file. I want to call the file converting class and do a conversion. While thats happening I want to print a number...
  11. Replies
    0
    Views
    750

    Accessing jTextArea from other object

    I have an object Object1 where a jTextArea is declared as

    public jTextArea txtArea;

    I also have another object Object2 declared in Object1

    private InnerObjects Object2;

    Whenever I try to...
  12. Replies
    1
    Views
    852

    Can't debug Webstart Program

    Hi, I want to debug a program but it is complicated by the fact that it is webstart. But AFAIK the jar files of interest are executed locally. Whenever I try to start debugging in eclipse it gives...
  13. Thread: signing jars

    by Jarwulf
    Replies
    1
    Views
    948

    signing jars

    I have a keystore file. How would I sign jars? Eclipse doesn't seem to have an automated way of doing it and I can't find jarsigner to download or on my computer.
  14. Replies
    1
    Views
    781

    Re: Java cache files

    I found the folder the control panel notes as the storage site but it does not have any recognizable files inside.
  15. Replies
    0
    Views
    899

    jnlp modification

    Windows XP

    I have a jnlp of a webstart program that currently downloads jar files and executes them I think. I want to instead have it use a file stored locally on a computer. Here is the syntax
    ...
  16. Replies
    1
    Views
    781

    Java cache files

    Windows XP

    A webstart program downloads jar files somewhere and starts the program with a jnlp. I want to slip in a modified jar file to test. Where exactly are the files that are downloaded? I...
  17. Replies
    1
    Views
    954

    Setting up Webstart server

    Don't know the first thing about web stuff. Unfortunately I need to test a modified jar file which is part of a program that relies on Webstart. The jnlp files are downloaded from clicking on a...
  18. Replies
    1
    Views
    1,143

    2d lighting needed

    Anyone know of good libraries/apis/algorithms for (dynamic) lighting/shadows using C++?


    All I'm basically looking for is something that will work for a top down game with lights and objects in...
  19. Replies
    1
    Views
    533

    Accessing vectors

    Given something like

    std::vector<object*> objectarray;

    where object is a type of class with int valuea


    how would you access the valuea from the object pointed to by the third pointer in...
  20. Replies
    6
    Views
    955

    Re: debugging environment

    Is there any button I might be hovering over that might be causing this I make sure only to use 'start debugging' but this is happening over and over and its pissing me off. I have an expired...
  21. Replies
    6
    Views
    955

    Re: debugging environment

    It won't work if its already happened. Restarting vs2008 will sometimes temporarily fix it regardless of whether I reset the layout. I haven't been able to pin down what causes it. Sometimes I can...
  22. Replies
    6
    Views
    955

    Re: debugging environment

    If I stop and restart vs2008 it goes away temporarily but if I use the start debugging and the stop debugging option enough times it will revert to vomiting all the windows all over my screen again...
  23. Replies
    6
    Views
    955

    debugging environment

    For some reason some of my vs2008 projects have started spewing a ton of tool boxes and watch windows everywhere whenever I activate debugging whereas everything used to be neatly tucked into corners...
  24. Thread: Zooming code

    by Jarwulf
    Replies
    0
    Views
    499

    Zooming code

    I was wondering if there was any free way/extension to zoom code text in VS 2008. I use codekana but thats only a free trial.
  25. Thread: Debugging

    by Jarwulf
    Replies
    6
    Views
    1,241

    Re: Debugging

    It goes to the end of main but still exits out prematurely and doesn't hit the later breakpoints in main or the ones I set in other functions

    EDIT: On further inspection it gives me a failed to...
Results 1 to 25 of 32
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured