Need quick help please!! Fast!

Here is my code... I know it's long, but it's simple. The only part I'm having trouble with is the very end. You don't really have to know what point of this to help me figure out the problem. Near the very bottom, you'll see the line "double refund = (startcancount/startendcount)*premium;". For some reason, this keeps coming out as zero, even though I run it through the debugger and every single one of the variables has a non-zero value. I cannot figure it out. I tried changing the data type to float to no avail. What is the problem!?
package isys202p1;
import javax.swing.JOptionPane;
public class ISys202P1 {
     public static void main(String[] args) {
          //Initialized variables for storing the string values of the entered names, premium
          String firstname;
          String middlename;
          String lastname;
          String response = null;
          double premium = 0;
          int startyear = 0;
          int startmonth = 0;
          int startday = 0;
          int endyear = 0;
          int endmonth = 0;
          int endday = 0;
          int canyear = 0;
          int canmonth = 0;
          int canday = 0;
          int startendcount = 0;
          int startcancount = 0;
          String ssmonth = null;
          String esmonth = null;
          String csmonth = null;
          //Prompts user for first name and stores it in the string variable firstname
          firstname = JOptionPane.showInputDialog("Please enter your first name:");
          //Prompts user for middle name and stores it in the string variable middlename
          middlename = JOptionPane.showInputDialog("Please enter your middle name");
          //Prompts user for last name and stores it in the string variable lastname
          lastname = JOptionPane.showInputDialog("Please enter your last name:");
          //Prompts the user for a premium amount, without the dollar sign, and assigns to the premium variable
          response = JOptionPane.showInputDialog("Please enter your premium amount: $");
               premium = Double.parseDouble(response);
          //Prompts the user for the starting date of the policy term (year)
          response = JOptionPane.showInputDialog("Please enter the starting date for the policy term (year)");
               startyear = Integer.parseInt(response);
          //Prompts the user for the starting date of the policy term (month)
          response = JOptionPane.showInputDialog("Please enter the starting date for the policy term (month)");
               startmonth = Integer.parseInt(response);
          //Prompts the user for the starting date of the policy term (day)
          response = JOptionPane.showInputDialog("Please enter the starting date for the policy term (day)");
               startday = Integer.parseInt(response);
          //Prompts the user for the ending date of the policy term (year)     
          response = JOptionPane.showInputDialog("Please enter the ending date for the policy term (year)");
               endyear = Integer.parseInt(response);
          //Prompts the user for the ending date of the policy term (month)
          response = JOptionPane.showInputDialog("Please enter the ending date for the policy term (month)");
               endmonth = Integer.parseInt(response);
          //Prompts the user for the ending date of the policy term (day)          
          response = JOptionPane.showInputDialog("Please enter the ending date for the policy term (day)");
               endday = Integer.parseInt(response);
          //Prompts the user for the effective date of the policy cancellation (year)
          response = JOptionPane.showInputDialog("Please enter the effective date for the policy cancellation (year)");
               canyear = Integer.parseInt(response);
          //Prompts the user for the effective date of the policy cancellation (month)
          response = JOptionPane.showInputDialog("Please enter the effective date for the policy cancellation (month)");
               canmonth = Integer.parseInt(response);
          //Prompts the user for the effective date of the policy cancellation (day)
          response = JOptionPane.showInputDialog("Please enter the effective date for the policy cancellation (day)");
               canday = Integer.parseInt(response);
               //if statements that account for mid-year starting dates
          if (startmonth==1)
               startcancount=0+startday;
          if (startmonth==2)
               startcancount=31+startday;
          if (startmonth==3)
               startcancount=59+startday;
          if (startmonth==4)
               startcancount=90+startday;
          if (startmonth==5)
               startcancount=120+startday;
          if (startmonth==6)
               startcancount=151+startday;
          if (startmonth==7)
               startcancount=181+startday;
          if (startmonth==8)
               startcancount=212+startday;
          if (startmonth==9)
               startcancount=243+startday;
          if (startmonth==10)
               startcancount=274+startday;
          if (startmonth==11)
               startcancount=304+startday;
          if (startmonth==12)
               startcancount=335+startday;
               //if statements that account for mid-year ending dates
          if (canmonth==1)
               startcancount=startcancount+canday;
          if (canmonth==2)
               startcancount=startcancount+31+canday;
          if (canmonth==3)
               startcancount=startcancount+59+canday;
          if (canmonth==4)
               startcancount=startcancount+90+canday;
          if (canmonth==5)
               startcancount=startcancount+120+canday;
          if (canmonth==6)
               startcancount=startcancount+151+canday;
          if (canmonth==7)
               startcancount=startcancount+181+canday;
          if (canmonth==8)
               startcancount=startcancount+212+canday;
          if (canmonth==9)
               startcancount=startcancount+243+canday;
          if (canmonth==10)
               startcancount=startcancount+274+canday;
          if (canmonth==11)
               startcancount=startcancount+304+canday;
          if (canmonth==12)
               startcancount=startcancount+335+canday;
               //if statements that account for mid-year starting dates
          if (startmonth==1)
               startendcount=0+startday;
          if (startmonth==2)
               startendcount=31+startday;
          if (startmonth==3)
               startendcount=59+startday;
          if (startmonth==4)
               startendcount=90+startday;
          if (startmonth==5)
               startendcount=120+startday;
          if (startmonth==6)
               startendcount=151+startday;
          if (startmonth==7)
               startendcount=181+startday;
          if (startmonth==8)
               startendcount=212+startday;
          if (startmonth==9)
               startendcount=243+startday;
          if (startmonth==10)
               startendcount=274+startday;
          if (startmonth==11)
               startendcount=304+startday;
          if (startmonth==12)
               startendcount=335+startday;
          //if statements that account for mid-year ending dates
          if (endmonth==1)
               startendcount=startendcount+endday;
          if (endmonth==2)
               startendcount=startendcount+31+endday;
          if (endmonth==3)
               startendcount=startendcount+59+endday;
          if (endmonth==4)
               startendcount=startendcount+90+endday;
          if (endmonth==5)
               startendcount=startendcount+120+endday;
          if (endmonth==6)
               startendcount=startendcount+151+endday;
          if (endmonth==7)
               startendcount=startendcount+181+endday;
          if (endmonth==8)
               startendcount=startendcount+212+endday;
          if (endmonth==9)
               startendcount=startendcount+243+endday;
          if (endmonth==10)
               startendcount=startendcount+274+endday;
          if (endmonth==11)
               startendcount=startendcount+304+endday;
          if (endmonth==12)
               startendcount=startendcount+335+endday;
          //for loop that counts the days between the beginning and end of the policy
          for (int startcount = startyear; startcount < canyear; startcount++){
               startcancount = startcancount + 365;
               if (((startcount%4==0) & (startcount%100!=0)) | ((startcount%400==1) & (startcount%100==0))){
                    startcancount = startcancount + 1;
          for (int startcount = startyear; startcount < endyear; startcount++){
               startendcount = startendcount + 365;
               if (((startcount%4==0) & (startcount%100!=0)) | ((startcount%400==1) & (startcount%100==0))){
                    startendcount = startendcount + 1;
          //[Start String Month] Assigns the number for starting month entered to its corresponding month (starting date)
          if (startmonth == 1)
               ssmonth = "January";
          if (startmonth == 2)
               ssmonth = "February";
          if (startmonth == 3)
               ssmonth = "March";
          if (startmonth == 4)
               ssmonth = "April";
          if (startmonth == 5)
               ssmonth = "May";
          if (startmonth == 6)
               ssmonth = "June";
          if (startmonth == 7)
               ssmonth = "July";
          if (startmonth == 8)
               ssmonth = "August";
          if (startmonth == 9)
               ssmonth = "September";
          if (startmonth == 10)
               ssmonth = "October";
          if (startmonth == 11)
               ssmonth = "November";
          if (startmonth == 12)
               ssmonth = "December";
          //[cancellation string month]Assigns the number for ending month entered to its corresponding
          //month (cancellation effective date)
          if (canmonth == 1)
               csmonth = "January";
          if (canmonth == 2)
               csmonth = "February";
          if (canmonth == 3)
               csmonth = "March";
          if (canmonth == 4)
               csmonth = "April";
          if (canmonth == 5)
               csmonth = "May";
          if (canmonth == 6)
               csmonth = "June";
          if (canmonth == 7)
               csmonth = "July";
          if (canmonth == 8)
               csmonth = "August";
          if (canmonth == 9)
               csmonth = "September";
          if (canmonth == 10)
               csmonth = "October";
          if (canmonth == 11)
               csmonth = "November";
          if (canmonth == 12)
               csmonth = "December";
//Assigns the number for ending month entered to its corresponding month (ending date)
          if (endmonth == 1)
               esmonth = "January";
          if (endmonth == 2)
               esmonth = "February";
          if (endmonth == 3)
               esmonth = "March";
          if (endmonth == 4)
               esmonth = "April";
          if (endmonth == 5)
               esmonth = "May";
          if (startmonth == 6)
               ssmonth = "June";
          if (endmonth == 7)
               esmonth = "July";
          if (endmonth == 8)
               esmonth = "August";
          if (endmonth == 9)
               esmonth = "September";
          if (endmonth == 10)
               esmonth = "October";
          if (endmonth == 11)
               esmonth = "November";
          if (endmonth == 12)
               esmonth = "December";
          double refund = (startcancount/startendcount)*premium;
          //The final output consisting of the users first name, middle name, and last name.
          JOptionPane.showMessageDialog(null, "Name: " + firstname + " " + middlename + " " + lastname + "\n" +
                    "Premium: $" + premium + "\n" + "Date: " + ssmonth + " " + startday + ", " + startyear + "\n" +
                    "End Date: " + esmonth + " " + endday + ", " + endyear + "\n" + "Effective Date: " + csmonth +
                    " " + canday + ", " + canyear + "\n" + "Refund: " + refund);
}

DeLorean wrote:
If I want the program to repeat itself (except for entering the names), how would I do it using a for loop? Could someone edit my code to show me?Why don't you try it yourself?
If you have tried, but failed to get it working, then you can post back here. Be sure that when asking a question here, the chances in getting helpful answers increase dramatically when you:
- show what you have already tried;
- post code using code tags;
- use a meaningful title for your question;
- DONT try to hurry those who are able to help you with words like "fast", "asap", "urgent", etc.

Similar Messages

  • Need Quick help PLEASE

    I just got my nano today, and im a total nood at ipods, so im just wondering how to get the slbum art, because it seems to look real cool. Ive tried getting the manuals and what not, but they wont load on my PC! Any kind of help will be great!! PLEASE HELP ! ! !

    You select the file(s) for a specific album, then choose File > Get Info, then click on the "Artwork" tab. You have two options, paste it in from the clipboard or click "Add" to select a JPEG/etc file to use.
    iTunes doesn't automatically add it. You'll have to find an image from the web, like from Amazon. There might be software for the PC which will find it. The Mac does.

  • Need quick help, please!!! How do I scan the counter and analog channel in parallel, synchronized?

    Hi,
    I'm using LabView6.1 and a PCI6014 DAQ card.
    I have to scan simultaneously an analog channel and the counter on the card. My project requires me to measure in parallel a force (a voltage on an analog channel) in correspondence to a distance (measured with a counter) and I have to display a force-distance graph.
    So, can someone please tell me how can I program the counter and an analog channel to take 1000 measurements in parallel, and then, by reading the buffers to have two sets of corresponding measurements?
    I've tried some things and I've got only an error message, that says that there is no free DMA channel available (the error comes from configuring
    the analog channel). I attached one of these programs that gives this error, maybe somebody can tell me what I do wrong.
    If somebody could send me an example (in LabView6, I have no 7 :-( ), I would be grateful.
    Thank you,
    pixooxiq
    Attachments:
    Scan_Test_4.vi ‏177 KB

    Hi pixooxiq,
    unfortunately, your Card has only one DMA-Channel.
    If you want to use two Channels simutaneously, you have to tell one of them to use an Interrupt instead.
    This option can be set with the "Set DAQ Device Information.VI"
    Just see the Bitmap, I've attached.
    Perhaps, you now get Performance-problems, cause the IRQ does not directly write the Data but involves the CPU. In this case the only possibillity is to use an other card with more than 1 DMA-Channel...
    Regards
    Peter Weber
    NI Germany
    Attachments:
    Interrupt2.bmp ‏159 KB

  • Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute then turn on wifi on iMac before it can reconnect. Need some help please.

    Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute, then turn on wifi on iMac before it can reconnect. Need some help please.
    Already gone through troubleshooting guide a zillion times. Thanks.

    This worked for me... A little time consuming but once you get rolling it goes GREAT... Thanks....
    I got my artwork and saved it to my Desktop
    Opened up Microsoft Paint and clicked on "File" and "Open" and found it to get it on the screen to resize it
    Clicked "resize" and a box for changing it opened up
    Checked the box "Pixels" and "Unchecked maintain aspect ratio"
    Set Horizontal for 640 and Vertical for 480
    Clicked on "OK" and went back to "File" and did a "Save As" and chose JPEG Picture
    It came up "File Already Existed" and clicked "OK" (really did not care about the original artwork I found because wrong size)
    Went to iTunes and on the movie right clicked on "Get Info", clicked on "Details", then "Artwork"
    Go to the little box on the top left that shows your old artwork and click on it to get the little blue border to appear around it and hit "Delete" to make it gone
    Click on "Add Artwork" and find it where you put the one from above on your Desktop and hit "Open" and OK and your new artwork is now there and all good.
    Sounds like a lot of steps to follow but after around 5 or so you will fly through it. This worked perfect on my iPhone 6 Plus and I have artwork on my Home Videos now.

  • Hi, my iphone its in recovery mode and when i restore my iphone 5s loading show the blue screen and show note on itunes (unknown error 14) please i need your help please . thanks

    Hi, my iphone its in recovery mode and when i restore my iphone 5s loading show the blue screen and show note on itunes (unknown error 14) please i need your help please . thanks

    In the article Resolve iOS update and restore errors this is what it says about error 14:
    Check your USB connections
    Related errors: 13, 14, 1600, 1601, 1602, 1603, 1604, 1611, 1643-1650, 2000, 2001, 2002, 2005, 2006, 2009, 4005, 4013, 4014, or “invalid response."
    If the USB connection between your device and computer is interrupted, you may be unable to update or restore.
    To narrow down the issue, you can also change up your hardware:
    Use the USB cable that came with your device, or a different Apple USB cable.
    Plug your cable into a different USB port directly on your computer. Don't plug it into your keyboard.
    Try a different computer.
    If necessary, resolve any further issues with the USB connection, then with your security software.
    If you're still seeing the error message, check for hardware issues by following the next section.

  • Hi! I got movies on my external hard drive that are AVI kind and won't play on my macbook pro? need some help please!!

    Hi! I got Movies on my external hard drive that are AVI kind and won't play on my macbook pro? When I start playing the movie a message pops up and says "a required codec is not available". I tried flip4mac, xvid, divx already and still not playing my video. need some help please!! thanks.

    Although vlc mentioned above is a much more powerful and better player you could try installing Perian if you insist on using the quicktime player.  It may supply the codec it needs.
    Not sure why you wouldn't be able to play straight avi files though in quicktime.

  • HT1199 I need your help, PLEASE. How can to fix "NO MOUNTABLE FILE SYSTEM" error of my back up hard drive on Mountain Lion OS?

    I need your help, PLEASE. How can to fix "NO MOUNTABLE FILE SYSTEM" error of my back up hard drive on Mountain Lion OS?

    Did you format the drive for Mac use before you tried to use it as a backup drive?
    Are you using Time Machine on the drive? You can't view the contents of its backup database and the only way to access the info is directly from the Time Machine app.

  • I need serious help please.. We do translations of schoolbooks, I looked for an over-type function but were unable to find, we are working in indesign CS 5. it takes up allot of time to delete text and type in the new language.

    I need serious help please.. We do translations of schoolbooks, I looked for an over-type function but were unable to find, we are working in indesign CS 5. it takes up allot of time to delete text and type in the new language.

    Argh that's frustrating! I never noticed that key did not work in InDesign.
    A bit of research and it turns out the MS Office has this as an option in their software. But I cannot find an option in InDesign preferences to make this work.
    However, somethings are not listed in the shortcuts and preferences and are hidden triggers in InDesign which can be accessed through a script.
    I'm not saying it's possible to activate the Insert Key through a script, but it's plausible that it can be activated.
    Maybe ask on the scripting forum? InDesign Scripting
    I know this may be a possibility as with InDesign's earlier versions of PDF export to interactive documents there previously was no way to export interactive pdfs as single pages if in Spreads.
    But the option to toggle this setting was scriptable.

  • HT201328 Hey, i bought an iphone from online shop and its locked by orange france, i contact them to unlock it but they refused, they said that we regret to inform you that we'r not able to unlock second hand phones? I need your help please.

    Hey, i bought an iphone from online shop as a used phone and its locked by orange france, i contact them to unlock it but they refused, they said that we regret to inform you that we'r not able to unlock second hand phones? I need your help please. Its not fair , apple should figure it out
    Regards,
    Orange

    This is no different with any carrier locked phone. Getting a carrier locked phone officially unlocked is the responsibility of the carrier, not the cell phone manufacturer. A cell phone manufacture cannot unlock a carrier locked phone without the carrier's authorization.
    An iPhone sold as officially unlocked when new can be used by others as a second hand phone, and the same with any carrier locked iPhone that can be unlocked by the carrier, and many carriers offer it.

  • HT4623 I. Tried many time to install my apple to update software but can't fix I need your help please and Thanks.

    How i fix and software update i was tried but cant i need your help please and thanks.

    "but cant"
    That doesnt tell us anything useful. You need to post EXACTLY what you did and EXACTLY what happened, including any error messages.

  • Need Urgent help please? I need to restore from a previous iphone backup.

    Oops, I admit it - I messed up but need help please?? I received a replacement iphone today. My broken iphone OS and my itunes had the latest software updates and I did a full backup before going to the store to get the rerplacement. However, when I got home with the replacement iphone and plugged it in, it asked if I wanted to update the OS on it. I made the mistake of saying yes. It then made a backup of the empty factory settings from the new replacement and restored from that rahter than the backup I made before going to the store. Yes I know I should have said no and just did the restore which would have resotred my previous backup that I made before going to the store. Then after everything would be allright I could have told it to update the OS.
    You can slap my in the face or I will do it myslef for making such a stupid mistake. All ready did the "I should have had a V" thing to my forehead.
    After seeing the restore was fromthe factory settings rather than my earlier good backup, I went into my documents and drilled down to the mobile sync backup and saw that one of the three folders (with giberish as a title) has a lot of information with the date and time I did the backup before going to the store.
    Could I possibly delete the later (factory setting backup) folder and then do a restore to get my good backup onto the iphone? I didn't do that yet in fear that it might mess something else up on the iphone and I wanted to check with you experts here first for guidance and assistance, PLEASE?
    I'll be anxiously awaiting any help you can give!
    Thank you!!

    rwmac22 wrote:
    Hopt and OneOrangeTree, Thank you both very much for replying!!
    It took me a long time to get back to the dissucison group because I tried both of your suggestions which therfore had to do about 4 restores. They take quite a while (about 50 minutes each actually). Your help got me half way there and is very apprecaited! I did manage (with your excellent help) to get most of my backup put onto the replaced iphone. the photos, music, and videos didn't get put over. I think I can move those back over by making sure they are selected in the seperate tabbed screens for the iphone. However, I can't get to those screens because every time I connect the iphone now, it brings up the "set up your phone screen". The one with the "an iphone has been previously synced with this compter" setup as new phone or restore from ....
    Well I did the resotre from 3 times and that page still comes up when I plug in the iphone. Yes, I did close itunes, reboot the PC, and powered off the iphone and then brouhgt it back up before connecting (all several times), but itunes still takes me to the same "setup iphone screen".
    Can you help me to get it to the standard iphone screen and there I will make sure the selected items are checked and do a sync.
    Please know I do appreicate your kind assistance so far and hope someone can get me the rest of the way!
    The "Backup" do not store your Applications, Music, Video's. It saves your settings, your application preferences, etc.

  • I am the biggest "Newb" on this site,  and I really need some help please..

    Ok, the short of it.... I started training on Database programming about 2 weeks ago. I still don't really know a thing, or even understand the concepts. Now, my boss wants me to fix a bug in Oracle, and I haven't a clue. The ONLY help I've gotten was a link to this forum, and a speech about how I need to help myself. I told him I have the same chance of fixing anything, as monkeys typing hamlet. Anyone up for a challenge?
    When I go to Application System, then Application Entry and enter the password a dialog box appears.... "FRM-40039: Cannot attatch library Empower while opening from APPUSRAPP."
    That's what I have to fix. I have no clue. I don't even really know how to click around in this program. Please help, someone.
    UPDATE: I've been told that everyone's pretty much going to be a jerk to me for asking this, and I'm currently searching old threads and can't find a way to delete this one I posted. So, you could just ignore the post, or jump in and be the internet tough-guy and tell me what I already know.... I'm a newb.
    Edited by: user11033020 on Apr 14, 2009 11:41 AM

    As this appears to be a Forms error (the error begins with FRM) you might get a better response by posting this in the Forms forum:
    Forms
    The Community Feedback forum isn't meant for product-related questions (as it says in the title).
    Still, you should consider searching Metalink as well. If you've paid for support, you have every right to use it.

  • My stupid iphone turned off sundenly and now is saying i have to connect to itunes and it wont connect to itunes i need ur HELP please please please!!!!  whoever helps me u r an amazing person!!!!!

    help please my iphone 4 turned off sundenly and now is not working its says to connect to itunes but when i get to itunes it shuts offf or doesnt work!!! i am depley need help!!! if anybody can help that wuold be amazing!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! HELP

    The problem is your friend's music does not belong to you.  It is owned by your friend.
    I'm afraid you cannot do what you are trying to do.  Restoring the iPhone is what you would have to do.
    In the future, put your music on the computer and transfer it to the iPhone, not the other way.

  • I need your help, please. I can't get my photostream synchronized

    Dear friends, I need your help again!!!
    My photostream from my computer, windows vista, is not updating the pictures on my photostream in neither one of my IOS devices.
    I'm sure that the photostream in both IOS are turned on. In my computer it is also turned on.
    For example, I tranferred some pictures from a normal file to the photostream in the computer and I expected that them went also to my
    iphone and ipad, but it not occurred.
    Please, do you have some advise for me?
    Thanks in advance.

    first i would try a simple restart of your computer and your iPad and see if they show up after they reboot. Also which folder are you putting them in? on windows there will be a seperate folder in the photostream folder that will show upload/uploads you will want to make sure they are in there. Also here are some basics about photostream to make sure you are meeting all the requirements and are not over your limit, http://support.apple.com/kb/HT4486

  • Really really need some help please.

    lost all my audio. nothing plays anymore. cant even hear the trash empty any more. no itunes, nothing. no dvd audio. also noticed itunes wont play songs anymore, progress bar just sits there. also movies on youtube dont play anymore. when i try to turn up audio i get a zero symbol with a slash thru it. im stumped. help please. thanks

    Whatever has happened, I've assumed it just happened and is systemic.
    To start: Go to Applications/Utilities and run Disk Utility, select your startup drive, and click on the Repair Permissions button at the bottom of the window.
    If that works, you're done, if not, pull out your Tiger startup DVD, insert it, select the Installer, and Restart your Mac from the DVD. When you get to the installer screen, go to the menus at the top of the screen and select Disk Utility, and this time click on the Repair Disk button. This will check your file system integrity and repair it.
    When you've done that, post back.
    If those don't work, you may need to do an Archive & Install, from this same DVD. This will preserve your accounts/apps/data, but will require you to repeatedly run Software Update to bring everything current again.
    Good Luck...

Maybe you are looking for

  • Adapter Module for File Adapter

    I have a scenario where I have 2 related files (text file and a pdf file) for the message. I need to enhance the payload (content conversion from text file) with the size of the pdf file. I have developed a adapter module for this and it is working f

  • Editing multiple CMYK objects inconsistency

    I'm hoping someone with more knowledge of Illustrator can help me figure something out. I know this is not the ideal way of making an adjustment to colors (e.g. should be done through the Edit > Edit Colors... menu) however this is driving me crazy t

  • Query regarding the Node manager configuration(WLS and OAM Managed server)

    Query regarding the Node manager configuration(WLS and OAM Managed server): 1) In the nodemanager.properties I have added the ListenAddress:myMachineName and ListenPort: 5556 My setup : One physical Linux machine(myMachineName) has : WLS admin server

  • List simulating (combobox+multiselect)

    Hi, I have a list with only 1 item being displayed by default, but when I click on it I can see the entire list...sort of drop down list, and also allow multiple selects. Is it necessary to use JList with JScrollPane? How is it done? I could use a co

  • SAP Help Document needed

    Hi Guys,     I am trying to enter into the world of SAP. I would like to learn ABAP. So please help me with some basic documents and SAP Help Document. Please suggest me with some tips with how to start with ABAP.... My email id is [email protected]