overwraith 83 Newbie Poster

I think the best advise one would have been able to give on this topic is calculate tax prior to issuing the cupon perhaps? Sound about right? Don't let the scripting API determine tax? Any closer? Non-inheritable method? Brain cells?

happygeek commented: You seem to be in a very bad mood with everyone -4
overwraith 83 Newbie Poster

Well, I do think my observations are related if you actually read post number 2 it justifies the assertations as being related to this topic. You don't suppose you just want your soap box? You wanna be king of the hill? Sensorship of opinions? Only the opinions you like?

JamesCherrill commented: Do nt hijack someone else's topic. If you want to discuss Hillary, start your own. +0
happygeek commented: Feel free to start a Clinton thread (no lover of either them here) but this a Trump one - that's not censorship it's keeping the discussion on topic +0
Reverend Jim commented: Trolling +0
overwraith 83 Newbie Poster

Actually you are contemplating why trump rose to power, and not applying the context to which he did rise to power, he was versing a democrat who had an email scandal pending. Speaking of "the look over there" tactic, I have seen it plenty of times from hillary when she foraged a dossier on trump and fed it to the intel community. I believe that your original statements concerning trump are baseless, due to the fact that there are other factors, outlined in my post.

Agilemind commented: Say good bye to the "flawed democracy" rating and hello to "fascist dystopia" +0
overwraith 83 Newbie Poster

rproffitt, you are being obstinate, I have no idea what types of backup scripts would look like for a Database Administrator (DBA). I am fishing in the dark here if you know nothing then don't post at all. Of course I am willing to do my own work, but I have absolutely no idea what the scripts the DBA's would use. If you are not a DBA you should probably not be posting.

Even information sources would be a valid post here, or a synopsis of what is entailed in a backup.

overwraith 83 Newbie Poster

Your community is lame. I have posted about 3 discussions here about professional programming and no-body could help.

overwraith 83 Newbie Poster

I thought this was going to be harder than what it turned out to be. After looking around online some, and some coding here is what I came up with.

import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import java.awt.Component;
import java.awt.GridLayout;

public class EXTJOptionPane extends JOptionPane {

    public static void main(String[] args) {
           String messages[] = {"str1", "str2", "str3", "str4", "str5"};

           showInputDialog(null, messages);
    }//end main

   public static String[] showInputDialog(Component parentComponent, String messages[]){
       JTextField textFields[] = new JTextField[messages.length];
       JPanel panel = new JPanel();
       String input[] = new String[messages.length];

       panel.setLayout(new GridLayout(messages.length, 2, 0, 0));

       for(int i = 0 ; i < messages.length ; i++){
           panel.add(new JLabel(messages[i]));
           textFields[i] = new JTextField();
           panel.add(textFields[i]);
       }

       JOptionPane.showConfirmDialog(parentComponent, panel, 
               "Input", JOptionPane.OK_CANCEL_OPTION);

       for(int i = 0 ; i < messages.length ; i++)
           input[i] = textFields[i].getText();

       return input;
   }//end method

}//end class