Make the program run again, given the user's input?

Hello,
I need a little help with this program, you can see the entire thing below. I'm trying to make the program give the user the option to run again, using y or n. It's for a college project. Thanks.
import java.util.*;
class MyFifthProgram
     public static void main (String[] args)
          //char letterOnTelephone;
          do
               System.out.print("Enter a letter from A - Z and I will output the corresponding number \non the telephone, then press enter:");
               Scanner keyboard = new Scanner(System.in);
               String letterOnTelephone = keyboard.next();
               char letter = letterOnTelephone.charAt(0);
               switch (letter)
                    case 'Q':
                    case 'q':
                    case 'Z':
                    case 'z':
                         System.out.println("Sorry, the letter " + letterOnTelephone + " cannot be found on the telephone....");
                         break;
                    default:
                         System.out.println("Sorry, the key " + letterOnTelephone + " cannot be found on the telephone......");
                         break;     
                    case 'A':
                    case 'a':
                    case 'B':
                    case 'b':
                    case 'C':
                    case 'c':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 2.");
                         break;
                    case 'D':
                    case 'd':
                    case 'E':
                    case 'e':
                    case 'F':
                    case 'f':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 3.");
                         break;
                    case 'G':
                    case 'g':
                    case 'H':
                    case 'h':
                    case 'I':
                    case 'i':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 4.");
                         break;
                    case 'J':
                    case 'j':
                    case 'K':
                    case 'k':
                    case 'L':
                    case 'l':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 5.");
                         break;
                    case 'M':
                    case 'm':
                    case 'N':
                    case 'n':
                    case 'O':
                    case 'o':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 6.");
                         break;
                    case 'P':
                    case 'p':
                    case 'R':
                    case 'r':
                    case 'S':
                    case 's':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 7.");
                         break;
                    case 'T':
                    case 't':
                    case 'U':
                    case 'u':
                    case 'V':
                    case 'v':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 8.");
                         break;
                    case 'W':
                    case 'w':
                    case 'X':
                    case 'x':
                    case 'Y':
                    case 'y':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 9.");
                         break;                                             
               System.out.println("Would you like to run this program again? Enter Y for yes, or N for no:");
               Scanner keyboard1 = new Scanner(System.in);
               String runAgain = keyboard1.next();
               char runIt = runAgain.charAt(0);
               }while (runIt == 'y');
                    System.out.println("You can choosen " + runAgain + " therefor the program will run again.");
     }

Thanks! That did the trick, however that doesn't solve my problem. How do I ask the user to run the program again at the end of the program? What am I missing?
// Program takes a single letter and displays the corresponding digit on the telephone.
import java.util.*;
class MyFifthProgram
     public static void main (String[] args)
          System.out.println("Would you like to run this program? Enter Y for yes, or N for no:");
          Scanner keyboard1 = new Scanner(System.in);
          String runAgain = keyboard1.next();
          char runIt = runAgain.charAt(0);
          if (runIt == 'n')
               System.exit(0);
          else if (runIt == 'N')
               System.exit(0);
          do
               System.out.print("Enter a letter from A - Z and I will output the corresponding number \non the telephone, then press enter:");
               Scanner keyboard = new Scanner(System.in);
               String letterOnTelephone = keyboard.next();
               char letter = letterOnTelephone.charAt(0);
               switch (letter)
                    case 'Q':
                    case 'q':
                    case 'Z':
                    case 'z':
                         System.out.println("Sorry, the letter " + letterOnTelephone + " cannot be found on the telephone....");
                         break;
                    default:
                         System.out.println("Sorry, the key " + letterOnTelephone + " cannot be found on the telephone......");
                         break;     
                    case 'A':
                    case 'a':
                    case 'B':
                    case 'b':
                    case 'C':
                    case 'c':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 2.");
                         break;
                    case 'D':
                    case 'd':
                    case 'E':
                    case 'e':
                    case 'F':
                    case 'f':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 3.");
                         break;
                    case 'G':
                    case 'g':
                    case 'H':
                    case 'h':
                    case 'I':
                    case 'i':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 4.");
                         break;
                    case 'J':
                    case 'j':
                    case 'K':
                    case 'k':
                    case 'L':
                    case 'l':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 5.");
                         break;
                    case 'M':
                    case 'm':
                    case 'N':
                    case 'n':
                    case 'O':
                    case 'o':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 6.");
                         break;
                    case 'P':
                    case 'p':
                    case 'R':
                    case 'r':
                    case 'S':
                    case 's':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 7.");
                         break;
                    case 'T':
                    case 't':
                    case 'U':
                    case 'u':
                    case 'V':
                    case 'v':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 8.");
                         break;
                    case 'W':
                    case 'w':
                    case 'X':
                    case 'x':
                    case 'Y':
                    case 'y':
                         System.out.println("The letter " + letterOnTelephone + " corresponds to the number 9.");
                         break;                                             
               }while (runIt == 'n');
          //          System.out.println("Would you like to run this program? Enter Y for yes, or N for no:");
          //          Scanner keyboard2 = new Scanner(System.in);
          //          String runAgain1 = keyboard2.next();
          //          char runIt1 = runAgain1.charAt(0);
          //          if (runIt1 == 'n')
          //               System.exit(0);
          //          else if (runIt1 == 'N');
          //               System.exit(0);
     }

Similar Messages

  • To make the User group Filed mandatory for the Tcode SU01

    Hi Gurus,
    I need to make the 'User Group' Filed mandatory for the Tcode  'SU01'.
    I know we can do it using Transaction variant.
    But i do not want to create a new custom Tcode (e.g ZSU01) for the same.
    I understand we have a User Exit  'SUSR0001' for the Tcode SU01.
    Can we use this to make the User Group field mandatory.
    Or is there is some alternative way to do this ?
    Please advice.
    Thanks in Advance.
    Regards,
    Anubhav Mishra

    Hi Anubhav Mishra,
    > I know we can do it using Transaction variant.
    > But i do not want to create a new custom Tcode (e.g ZSU01) for the same.
    You don't need to create a custom Tcode to assign a transaction variant, just declare it as being a "standard variant" (in the SHD0 transaction too), and you'll make it assigned automatically to SU01 when this last is started.
    BR
    Sandra

  • I need a sample vi that can plot a transfer function given zeroes and poles (It should allow the user to input zeroes and poles). It should be done in the S domain.The user should be allowed to put poles and zeroes, with frequency

    I need a sample vi that can plot a transfer function given zeroes and poles (It should allow the user to input zeroes and poles). The user should be allowed to put poles and zeroes, with frequency. DONE IN S DOMAIN.

    I have created a VI (LabVIEW 6.1) that does what you want. Note that the poles and zeros have to be entered correctly that is in Rad/s and typically with negative real part. The VI offers you all options for lin/log frequency axis, magnitude in dB or not, phase in Radians or Degrees etc...
    The VI is written with "academic" in mind, so it is not optimized for performances but (hopefully) for clarity. I hope this will work for you.
    Attachments:
    S-Domain_Transfer_Function_from_Poles-Zeros.vi ‏167 KB

  • I need a sample vi that can plot a transfer function given zeroes and poles (It should allow the user to input zeroes and poles)

    I need a sample vi that can plot a transfer function given zeroes and poles (It should allow the user to input zeroes and poles). The user should be allowed to put poles and zeroes, with frequency.

    Check the answer to your other posting
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=50650000000800000052A90000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0

  • In javascript, how do I open a dialog so that the user can input the value of a variable?

    I'm working on a script that will be used for many images, all of them using the same format (size of the image, layer layout, etc).
    All of these images will have a layer of text, and what I want is to have the script modify the horizontal length of the text layer (horizontal percentage scale), shrinking it so that all of the text appears on-screen, in case there's too much of it.
    But the text will vary from image to image, and what I want is for the script to display a dialog box were the user can input the text that will be put on the text layer and scaled down.
    Can this be done?

    If you want the user to both enter then fit the text while your script is running, here is one way to do that.
    var typeLayer = activeDocument.activeLayer;
    var type = typeLayer.textItem;
    var t = prompt ("Enter text" , "new text");
    type.contents= t;
    transformLayer();
    function transformLayer() {
         try{
         var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
        desc.putEnumerated( charIDToTypeID('FTcs'), charIDToTypeID('QCSt'), charIDToTypeID('Qcsa') );
            var desc1 = new ActionDescriptor();
            desc1.putUnitDouble( charIDToTypeID('Hrzn'), charIDToTypeID('#Rlt'), 0.000000 );
            desc1.putUnitDouble( charIDToTypeID('Vrtc'), charIDToTypeID('#Rlt'), 0.000000 );
        desc.putObject( charIDToTypeID('Ofst'), charIDToTypeID('Ofst'), desc1 );
        desc.putUnitDouble( charIDToTypeID('Wdth'), charIDToTypeID('#Prc'), 100 );
        desc.putUnitDouble( charIDToTypeID('Hght'), charIDToTypeID('#Prc'), 100 );
        desc.putBoolean( charIDToTypeID('Lnkd'), true );
        executeAction( charIDToTypeID('Trnf'), desc, DialogModes.ALL );
         }catch(e){}

  • Reports / intranet/ In some detail,  the user will input a date range from and 2 and will out put the records in the int

    Hello there,
    I am totally green in web development.
    my goal is to, for the user will input a date range from and
    to and will out put the records in the intranet when they press a
    button.
    However, the good news is: I have experience in programming.
    I have written applications for desktop in VB>NET and I
    understand RDBMS /sql concepts .
    But CF and WEB development is new to me.
    My current projects involves in connecting to DB and testing
    it. (it works fine)
    And outputting reports by to a intranet page. (records)
    i need help on how to start this asap. I will even do some
    practice at home.
    Tools I have at work
    • Development server(test)
    • Home site.
    • Toad for db connection.
    • Html reference guide
    • Cf dummies book.
    How can start my projects.
    (ex. Create cf, outputpage?)
    seriously, I am new to this.
    Thanks.

    Well, I had a really nice response with some concepts and
    ideas for you to practise on etc, but these dumb forums timed out
    and I lost it all
    If you want to pop me an email we could probably do a few
    exercises together that way - or even by MSN Messenger if you want.

  • Need help with re-prompting the user for input .

    I am trying to wright a code the re prompts the user for input if they enter anything but an integer but I keep getting a "char cannot be dereferenced" error when I try to compile.
    Here's what I have got:
    import java.util.Scanner; // imports Scanner methods
    public class SandBox
      public static void main(String[] args)
          // re-prompting test
          Scanner in = new Scanner(System.in);
          System.out.println("Please enter an integer: ");
          String i = in.nextLine();
          for(int a=0; a<i.length(); a++)
              if( (i.charAt(a).isDigit()) ) {
                  System.out.println("Thank you!");
                  break;
                } else {
                    System.out.println("Please try again");
                    continue;
          int b = Interger.parseInt(i);
      }// end of class
    }//end of main method
     

    Sorry for double posting but it won't let edit my last post.
    I would prefer to go through it without using try catch because it takes longer though I will use it if I cannot get the other way working. I currently have two versions of the code both using try catch and the other way but both say that they "cannot find symbol" when I try to parse. here are both versions of the code:
    import java.util.Scanner; // imports Scanner methods
    public class SandBox
      public static void main(String[] args)
          // try catch test
          boolean inputIsFaulty = true;
          int inputInt = 0;
          Scanner in = new Scanner(System.in);
          do {
             System.out.println("Please enter an integer: ");
             String i = in.nextLine();
             for(int a=0; a<i.length(); a++)
                if (Character.isDigit(i.charAt(a))) {
                  System.out.println("Thank you!");
                  inputIsFaulty = false;
                } else {
                    System.out.println("Please try again");
            while (inputIsFaulty);
          inputInt = Integer.parseInt(i);
      }//end of class
    }//end of main method
    import java.util.Scanner; // imports Scanner methods
    public class SandBox2
      public static void main(String[] args)
          // try catch test
          boolean inputNotOK = true;
          int inputInt = 0;
          Scanner in = new Scanner(System.in);
          do {
             System.out.print("Please enter an integer: ");
             String inputStr = in.nextLine();
             try {
                inputInt = Integer.parseInt(inputStr);
                // this line is only reached if the parse works
                inputNotOK = false;
             catch (NumberFormatException e) {
                System.out.println("You didn't enter a proper number.  Please Try again.");
          while (inputNotOK);
          inputInt = Integer.parseInt(imputStr);
      }//end of class
    }//end of main method
     

  • How do you make a program run when any user logs in?

    I have an application which will need to run when any users logs in.
    Such that Joe downloads and installs the application, logs out, then Sally logs in and the application runs for Sally.
    Does anyone know how to do this?

    Hey Steve, thanks for that link. It seems to be what
    I am looking for. What is the meaning of the
    ~/Library vs /Library ? They are definitely
    different folders.
    Yes, they are definitely different folders. The "~" character represents the current users home folder, so "~/Library" represents the Library folder that's located inside a users home folder. Anything placed in there will only affect the one user whose home folder you've accessed.
    The "/Library" folder is the Library folder that exists at to root of the boot volume. Things placed in this Library folder will affect all users of the system. Basically it's sort of a "global" Library.
    Also, from a script, how do I add an item to execute
    for that kind of PList?
    That could be tricky based on the structure of that particular plist file. I haven't really looked at it closely but one place you could start is to read the "man" page for the "defaults" command... enter "man defaults" in Terminal. The "defaults" command allows you to read/write plist files, but defaults is not very good at accessing deeply nested plist items.
    Related to that, how do I tell if the logging item
    for my App is already there? I do not want to keep
    adding to the list if it is there. If someone
    deletes my app and then reinstalls it, I do not want
    it to run twice, three times, etc..
    Again, you could possibly read the plist using the defaults command and determine whether your item was already present or not.
    Do you know of the one in the ~/Library path, what
    user it execute as? Since it is all users, it
    probably is root or something like that.
    No, the one in ~/Library is in each individual user home folder. It will execute with the current user's privileges. This is where Login Items normally go when you go through the GUI... "Sys.Prefs -> Accounts -> Login Items" and add a login item for one user.
    Even items placed in /Library, which should execute for all users, will execute with the current user's privileges.
    In the near
    future we might need root privileges, so I might need
    a program to startup for all users as root instead of
    the user.
    Is your app, that needs to run at login time, a GUI application or is it a faceless shell script (or something similar). Your original post gave me the impression that you needed to launch a GUI application. However, if it's a shell script then you probably want to look at doing a LoginHook instead of using the Login Items procedure at the web page I posted earlier. I believe a LoginHook will also give you the ability to run the script as root.
    Check out this link at the ADC website.
    or
    Take a look at this information and this utility at Mike Bombich's website.
    Steve

  • How do I create an event driven dialog box that allows the user to input constants into my program?

    My goal is to have a box pop up when the executable for my program is run. The box will have a bunch of fields, and an OK and Cancel button. Ideally, the user will be made to change some of the values, and warnings (with another dialogue box) will pop up if the values are nonsensical, allowing the user to proceed or go back and change them. The constants will be clustered, to be used later in other VIs.
    Does anyone have a good template for this sort of VI? I looked at this article: http://www.ni.com/tutorial/8768/en/, but it doesn't go into enough detail to be helpful to me.

    This should get you started down the pathJust replace User data with your cluster and do the data integrity check in the value change event use a simple one button dialog to notify the user which values are out of compliance and disable and grey the OK button untill all conditions are met.
    Jeff
    Attachments:
    Prompt(Date).vi ‏50 KB

  • How to make the user choose file.

    I am making a program in which a file is read using RandomAcessFile. I wamt the user to choose the file from its location. I am giving the code. Just help me in knowing where the error is.
    import java.awt.*;
    import java.awt.event.*;
    public class ChooseFiles{
         public static void main(String[] args){
              getFiles();
         public static String getFiles(){
              DialogFrames df = new DialogFrames("MedInfo");
              df.setSize(800,555);
              df.addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent we){
                        System.exit(0);
              df.show();
              return df.getFile();
    class DialogFrames extends Frame implements ActionListener{
         Menu m = new Menu("File");
         MenuBar mb = new MenuBar();
         MenuItem mi = new MenuItem("Open");
         FileDialog fd;
         DialogFrames(String title){
              super(title);
              setLayout(new GridLayout(1,1));
              m.add(mi);
              mi.addActionListener(this);
              mb.add(m);
              setMenuBar(mb);
              fd = new FileDialog(this,"Open");
         public void actionPerformed(ActionEvent ae){
              if (ae.getSource()==mi){
                   fd.setVisible(true);
         public String getFile(){
              return fd.getFile();
    import java.io.*;
    public class Plot{
         boolean flag = true;
         ChooseFiles cf = new ChooseFiles();
         public static void main(String[] args){
              try{
                   String ftr = cf.getFiles();
                   RandomAccessFile raf = new RandomAccessFile(ftr,"r");
                   long l = 0;
                   while (l < raf.length()){
                        String str = raf.readLine().toString();
                        l = raf.getFilePointer();
                        if (str != null){
                             System.out.println("This line is " str" at l = "+l);
                   raf.close();
              }catch (Exception e){
                   System.out.println("Caught Exception " + e.toString());
    I get the following compilation error. Please help me to sort it out.
    Plot.java:7: Can't make a static reference to nonstatic variable cf in class Plot.
    String ftr = cf.getFiles();
    ^

    I made the changes to Plot.java.
    This is the first one.
    import java.io.*;
    public class Plot{
         boolean flag = true;
         public static void main(String[] args){
              Plot plot = new Plot();
         Plot(){
              try{
                   String ftr = "";
                   ChooseFiles cf = new ChooseFiles();
                   ftr += cf.getFiles();
                   RandomAccessFile raf = new RandomAccessFile(ftr,"r");
                   long l = 0;
                   while (l < raf.length()){
                        String str = raf.readLine().toString();
                        l = raf.getFilePointer();
                        if (str != null){
                             System.out.println("This line is " str" at l = "+l);
                   raf.close();
              }catch (Exception e){
                   System.out.println("Caught Exception " + e.toString());
    It gives the following exception.
    Caught Exception java.io.FileNotFoundException: null (The system cannot find the file specified)
    This is the second one.
    import java.io.*;
    public class Plot{
         boolean flag = true;
         public static void main(String[] args){
              Plot plot = new Plot();
         Plot(){
              try{
                   ChooseFiles cf = new ChooseFiles();
                   String ftr = cf.getFiles();
                   RandomAccessFile raf = new RandomAccessFile(ftr,"r");
                   long l = 0;
                   while (l < raf.length()){
                        String str = raf.readLine().toString();
                        l = raf.getFilePointer();
                        if (str != null){
                             System.out.println("This line is " str" at l = "+l);
                   raf.close();
              }catch (Exception e){
                   System.out.println("Caught Exception " + e.toString());
    Caught Exception java.lang.NullPointerException

  • How to make a program run in background?

    Is there any ways to make an invisible program with java? a program that is running in background but the user cannot see it and it's not in the Start bar and the user cannot close it.

    There are also 3rd party software that lets you install a java program as a service in winnt/2k/xp so that you can start/stop it from the service manager, doesnt even matter if the java program is gui based or not, as there are options (in win2k at least) in the service manager that allows the program to interact (think show gui) or not...one software called JNT comes to mind..
    Anyway, if you're using win98/me equivalent, then just use javaw.exe like suggested by previous posters.

  • How can I make my program Run forever?

    I would like to know how can I make my program execute some method while the GUI still open. I have something like this.
      public static void main(String args[]) {
        System.out.println("****************************");
        System.out.println("    PACKET READER CONSOLE   ");
        System.out.println("****************************");
        IPDetector window = new IPDetector(); // IPDetector is the JFrame
        window.setTitle("IPDetector Analyzer");
        window.pack();
        window.show();
        PortListener pl = new PortListener();// Is my portlistener class
        PacketReader c = new PacketReader();
        while(JFrame still open){// I dont know how to put a statemente here
          pl.start();// this method reads from a port and returns a string
          String cc = pl.data;// gets the string from the port listener
          while(!cc.equals("")){
            c.portWriter(cc);// writes the string into a file
      }I want that my portlistener keeps reading all the time, and if is something in the socket information.
    Should I use a thread? Any ideas? thanks.
    Chris

    I still not understanding how to make it thread. My main class is this one IPDetector. and it looks like this.
    public class IPDetector extends JFrame {
      // Declaration of the instance variables
      private static ArrayofDisplay  ad = new ArrayofDisplay();
      private ArrayofCreators database = new ArrayofCreators();
      JLabel sourceLabel;//etc..
      public IPDetector() {
        IPDetectorLayout customLayout = new IPDetectorLayout();
        getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
        getContentPane().setLayout(customLayout);
        sourceLabel = new JLabel("Source IP Add.");
        getContentPane().add(sourceLabel); 
        addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
      // I get confused here...
      private boolean alive; // Do I need to declared here?
      public void setAlive(boolean val) { // This one also?
        alive = val;
      // IPDetector Methods...
      public void displayCaller(ArrayofDisplay aD){  }
      public void setAndReplace(String text)  {    }
      public void refresh(){ }
      public boolean action(Event evt, Object arg){ }
      //etc...
      public static void main(String args[]) {
        System.out.println("***********************************************");
        IPDetector window = new IPDetector();
        window.setTitle("IPDetector");
        window.pack();
        window.show();
        PortListener pl = new PortListener();
        PacketReader c = new PacketReader();
        while (alive) {// Is this correct here?
          pl.start();
          String cc = pl.data;
          while(!cc.equals("")){
            c.portWriter(cc);
            window.refresh();
            cc = "";
    class IPDetectorLayout implements LayoutManager {
      public IPDetectorLayout() {  }
      public void addLayoutComponent(String name, Component comp) {  }
      public void layoutContainer(Container parent) {  }
    }

  • ITunes compatibility error "Make older programs run in

    I've been installing iTunes several times and after launching it it stops working sending message:
    Then I tried to run iTunes to Troubleshoot compatibility and get the error message:
    And it has been impossible to run iTunes no matter how many times I've re installed it or running to troubleshoot.
    Thanks for any help.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    iTunes doesn't need compatibility mode to run, but you may need to run it as an administrator.
    tt2

  • How do you make the sentences you input in a drop down list wrap to the next line?

    How do you make the sentences that you input in a drop down list to wrap to the next line?

    You can't.
    see this thread for more info:  Can you set drop down list as multi-line???

  • How can I make a program run in the background?

    I'm working on a custom console program. I plan to have the commands as seperate applications and create a server/client relationship so they can communicate with each other. However whenever I call a command I don't want to have a console window pop up, flicker out, etc. I want it to look like it's one complete app. So I'm wondering how can I have the app run in the background?

    If you're using a unix system, use the "&" argument (or character, what is its name anyway?) at the end of the command line.
    I think you can use javaw in the MS-Windows world.

Maybe you are looking for

  • Method to pass multiple values from jsp

    Hi All, There are multiple rows in the jsp form with each having a unique id. I want to update some fields in all the rows. Then pass all the data to the controller. From the controller all the data should go to the database one row at a time .How do

  • Captivate 4  TTS Audio not playing in published or preview ok in edit

    While viewing my project in published view, audio did not play on 5 of my 70 slides. (It worked fine previously). It played Ok in edit but no sound in preview or published. I tried to replace the audio using the Convert TTS button, and the audio woul

  • How can I buy an album marked "partial album"?

    I want to buy "30 gold bars" by Status Quo, but it is marked "partial album" instead of the price tag. I can't buy it. What does this mean? Is that going to change? Any idea is welcome! Thank you!

  • Please help me what this symbol mean ??

    please help me what this symbol mean ?? it's pic i get form my iphone look up there next to the charge symbol that lock http://www.4shared.com/photo/yNq7AkBF/GetAttachment.html

  • How to import ratings from C1 6 to LR5

    I prefer to tether using C1 (version 6.4.2) and clients etc like to look at images on set and make selects, but when I'm back in the studio, I prefer using LR 5 for cataloging etc. How can I import those ratings from my C1 session to LR once back at