Search:

Type: Posts; User: brynpttrsn

Search: Search took 0.09 seconds.

  1. Replies
    92
    Views
    5,043

    Re: issue sending value to new pane

    This means that it expects you to send an Index instance to the constructor

    Try changing that line to send an Index.


    one = new Index2(zero);

    Index2.java
  2. Replies
    92
    Views
    5,043

    Re: issue sending value to new pane

    #1: Get rid of the initialization of gg in Index2

    Before:

    Index gg = new Index();

    After:

    Index index;
  3. Replies
    92
    Views
    5,043

    Re: issue sending value to new pane

    IntelliJ uses an external library to hande GUI creation. The IDE takes the .form files and parses the XML into java on the fly. There is a way to export the .form files as java source code directly...
  4. Replies
    2
    Views
    838

    Re: what wrong , please

    I'm imagining its something like:


    error: cannot find symbol
    average = ( score1 + score2 + score3 ) / 3;
    ^
    symbol: variable average
    location: class TestScoresAndGrade

    But thats...
  5. Replies
    92
    Views
    5,043

    Re: issue sending value to new pane

    It appears at a glance that the this would be your basic call stack up until you grab the value of lblamnt.

    Basic call stack:


    main(String[] args)
    MainPage dialog = new MainPage();
    ...
Results 1 to 5 of 5