Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 786493
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T21:03:01+00:00 2026-05-14T21:03:01+00:00

I know that when creating buttons, like next and previous, that the code can

  • 0

I know that when creating buttons, like next and previous, that the code can be somewhat long to get those buttons to function.

My professor gave us this example to create the next button:

    private void jbtnNext_Click() {
        JOptionPane.showMessageDialog(null, "Next" ,"Button Pressed", 
            JOptionPane.INFORMATION_MESSAGE);        

    try {
        if (rset.next()) {
            fillTextFields(false);
        }else{
            //Display result in a dialog box
            JOptionPane.showMessageDialog(null, "Not found");
    }
}
    catch (SQLException ex) {
        ex.printStackTrace();
    }
}

Though, I do not really understand how that short and simple if statement is what makes the next button function. I see that the fillTextFields(false) uses a boolean value and that you need to initialize that boolean value in the beginning of the code I believe. I had put private fillTextFields boolean = false; but this does not seem to be right…

I’m just hoping someone could explain it better. Thanks 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T21:03:01+00:00Added an answer on May 14, 2026 at 9:03 pm

    Well, fillTextFields(true); is a function call and when you pass in a true/false flag it does some things (you have to see the code inside the function in order to find out exactly what it does).

    The field declaration private fillTextFields boolean = false; is invalid, you’re supposed to provide the type before the name, e.g.: private boolean fillTextFields = false;. Aside from the invalid syntax that flag really doesn’t do anything, especially if you’re not using it anywhere.

    I don’t understand what else you expect to see in the jbtnNext_Click() method… when you declare your button and it gets clicked on the UI, then this method gets invoked. It doesn’t make the button work, the button works even when you have nothing in the jbtnNext_Click() method. For example:

    private void jbtnNext_Click() {
        // The button will still work, but it simply won't do anything
    }
    

    Getting a button to function depends on what you view as a functioning button. What is supposed to happen when you click next/previous?

    Update:

    I thought that I needed the boolean
    declaration to make the
    “fillTextFields(false)” work.

    Was the fillTextFields method given to you somewhere? If it was, then you don’t need to declare anything, much less a variable. If it’s already provided, then you just call the method, that’s all. If it’s not provided then you need to declare it:

    private void fillTextFields(bool shouldFill)
    {
        if(shouldFill)
        {
            // fill the text fields
        }
        // possibly have an else statement if you need to do something else here
    }
    

    Otherwise what you see in that function is all you need to do in order to go to the next record in the database.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 403k
  • Answers 404k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer libssh2 is a great lib for SFTP - and it… May 15, 2026 at 5:20 am
  • Editorial Team
    Editorial Team added an answer try reading this. or $("form").submit(function(e){ var form = $(this); $.ajax({… May 15, 2026 at 5:20 am
  • Editorial Team
    Editorial Team added an answer Your Delete syntax is invalid. You need to do this… May 15, 2026 at 5:20 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.