What is init pinter in R3 nd whr can we see that?

HI all
What is a init pointer in R3? Where can we see that? Some 1 told me that wen we run init it will set init pointer in R3.
What are the process ids?
Thanks in advance.
Khaja

Hi Khaja,
Initialization will be initiated in BW only. In R/3  you cannot manually change the init flag. This is done only through BW
When you do a delta initialization in BW it implies creation/initialization of delta queue in R/3 and corresponding "pointers".
Hope this cleared your doubt.
Regards,
Sreedhar

Similar Messages

  • I'm in cycle mode, and 'merge' is clicked in preferences. However, when I record, my previous track data keeps getting overwritten. Does anyone know what I'm doing wrong. Interestingly, I can still see the data in the region.

    I'm in cycle mode, and 'merge' is clicked in preferences. However, when I record, my previous track data keeps getting overwritten. Does anyone know what I'm doing wrong. Interestingly, I can still see the data in the region.

    jamestait wrote:
    when I record, my previous track data keeps getting overwritten.
    since you didn't specify, are you recording in a single take?
    http://www.bulletsandbones.com/GB/GBFAQ.html#multipassrecording
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • GCF what are the functions of GCF and where can i find that

    Hello All,
    Can anyone throw some light on what the user expecting..What is GCF what are the functions of GCF and where can i find that
    user would like  to have the list of customers who have made  modification by the GCF (eg modification of the subscription period, the amount, the contract ended ....).
    Thanks in advance
    Srikanth Ravinutala

    Hello Dinakar,
    Please read this before closing your old threads.
    Read This Before Closing your Threads
    Thanks,
    Jignesh Mehta

  • HT4918 what happen with the documents in Idisk, how can i see them in iCloud?

    what happen with the documents that i have in my idisk?? how can i move them into icloud??

    Welcome to the Apple Community.
    Unfortunately, iCloud does not offer equivalents to Mobile Me’s iDisk, Gallery or Web Hosting services. You will need to find a third party solution to replace these services. You might consider DropBox, SugarSync, MediaFire or any other service that offers online storage. (not all these alternatives offer all the services previously provided by iDisk)

  • I don't know what I pressed in settings but now I can't see my pictures or the pics on Facebook they are all blurry

    I don't know what I did in settings but my normal color changed to orange and all the pics are blury

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
     Cheers, Tom

  • Can I see in the iCloud to see what exactly has been stored?

    Can I see in the iCloud to see what exactly has been stored?
    I am not sure as to what exactly has been backed up from my IPad and IPhone.It says my storage is full and cannot back up so I'm wondering can I go into the cloud and delete what I don't need?

    Unfortunately, you can only see the sizes of your existing backups and which apps taking how much storage capacity, but you cannot see it on file basis.
    To see what is currently using your iCloud storage go to...
    iOS (iPhone, iPad): Settings > iCloud > Storage & Backup > Manage Storage
    Mac: System Preferences > iCloud > Manage...

  • What is init load?

    what is init load?when we required this loading?
    the procedure and the mechanism how this loading works?
    how it is different from full loading?
    thenxx
    Please search for available information before posting.
    Edited by: kishan P on Jan 24, 2012 11:01 AM

    Hi
    Full Load :- When all the records are transferred to data target from data source.
    Pseudo Delta :- Its a Full data load with some selections like calenadar month , fiscal period or any other IO filter in the DTP or IP.
    Init Data Load :- Its required before starting any delta load. It puts the data mart status to the data source after data load . It can be with or without data transfer.
    Delta load :- Data load of the changed data after the Initialization of the data source. It loads all the data arrived in the data source after initialization or which do not have data mart status set.
    You can get more information about Delta and Init from following links :-
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/44/97437799ee70dbe10000000a1553f6/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/d0/4cc138944cfa06e10000000a11405a/content.htm
    Navesh

  • I don't know why my code isn't working, Can you see what is wrong?

    I'm putting together a program that reads input from a text file and then decides what type of input it is (male or female) and then calculates the final sum for both.
    m=male and f=female. The numbers after the letter are GPAs. Here is the input file:
    m 2.4
    f 3.2
    m 3.7
    m 4.0
    f 2.9
    f 1.8
    f 3.8
    m 1.7
    m 3.4
    f 2.6
    m 2.8
    m 1.7
    f 3.7
    m 3.9
    f 4.0
    f 3.6
    m 2.3
    f 2.9
    m 3.0
    m 2.7now here is my code:
    import java.io.*;
    import java.util.*;
    public class gradecalc {
         * @param args the command line arguments
        public static void main(String[] args)
                                throws FileNotFoundException{
            // TODO code application logic here
    double sumMale=0;
    int numMale=0;
    double sumFemale=0;
    int numFemale=0;
    char gender;
    double gpa;
         Scanner inFile= new Scanner(new FileReader("gpa.txt"));
            PrintWriter outFile= new PrintWriter("gpaResult.txt");
    while (inFile.hasNext())
        gender= inFile.next().charAt(0);
        gpa= inFile.nextDouble();
        switch (gender)
            case 'M':
            case 'm':
                sumMale= sumMale + gpa;
                numMale++;
                break;
            case 'F':
            case 'f':
                sumFemale= sumFemale + gpa;
                numFemale++;
                break;
            default:
                System.out.println("Invalid gender code: "+gender);
    outFile.print("Sum of male students GPAs: " + sumMale);
    outFile.print("Sum of female students GPAs: " + sumFemale);
    outFile.close();
    }and this is the error message I get when I build and then try to run the program:
    init:
    deps-jar:
    compile:
    run:
    Exception in thread "main" java.util.NoSuchElementException
            at java.util.Scanner.throwFor(Scanner.java:838)
            at java.util.Scanner.next(Scanner.java:1461)
            at java.util.Scanner.nextDouble(Scanner.java:2387)
            at gradecalc.main(gradecalc.java:32)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 0 seconds)I feel like I have the code right, yet it doesn't output anything to my file and gives me the above exception. What's the problem here??

    I actually figured it out. I think some of you programmers out there would be proud of me if you saw this completed code. This forum has really helped me out, but I still make some stupid mistakes. Like the one I realized I made on this program seconds after I made this pose. I realized that I had an unknown character at the end of my input document, which you can't see in my post because I must have not copied and pasted that part. I would delete this post, but don't know how.

  • Can't see whats wrong? help

    Hi i've made an applet that has 12 buttons on it, and when the user presses 4 buttons it is stored in an array called myList. Each time a button is pressed sequenceCheck method i created gets called. This has a list of the possible correct combinations that the user could press the buttons in. I have 23 solutions so far. Most of them are working fine however any solution that has the button10, button11 or button 12 in it doesn't seem to work? And i'm not sure why? I've looked at the code over and over and can't see what i've done wrong.
    Solutions that don't seem to work are: solution 3, solution 7, solution 8, solution 9, solution 11, solution 13, solution 16, solution 17, solution 18, solution 18, solution 19, solution 20, solution 22 and solution 23. Sll of which have ethier button 10, button 11 or button 12 in it?
    If anyone can see what i've done it would really appreciate the help.
    package stampGame;
    // Description:
    // Directory: c:\myjava\teaching
    // Date: 5/4/00
    // Uses:
    // Comments:  note the convenient use of the Point object for
    //  manipulating coordinates
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.*;
    import java.util.*;
    import javax.swing.JOptionPane;
    public class StampGame extends Applet implements ActionListener{
         final int N= 12;
         final int P = 3;
         final int Q = 3;
         String[] buttonLabel = {"1","2","3","4","5","6","7","8","9","10","11","12"};
         Button[] button = new Button[N];
         private int combinationsFound = 0;
         ArrayList<String> myList = new ArrayList<String>();
         ArrayList<String> solutionsFound = new ArrayList<String>();
         public void init(){
              setBackground(Color.blue);     // Applet background color
              setLayout(null); 
              System.out.println(myList);
              for(int i=0; i<N; ++i)
                   button[i] = new Button(buttonLabel);
                   button[i].setFont(new java.awt.Font("Dialog", 1, 24));
                   button[i].setBackground(Color.white); // buttons colour
                   button[i].addActionListener(this);
                   add(button[i]);
         public void paint (Graphics g){
              Insets a = insets();
              button[0].reshape(10+a.left,10+a.top, 100,100);
              button[1].reshape(110+a.left,10+a.top, 100,100);
              button[2].reshape(210+a.left,10+a.top, 100,100);
              button[3].reshape(310+a.left,10+a.top, 100,100);
              button[4].reshape(10+a.left,100+a.top, 100,100);
              button[5].reshape(110+a.left,100+a.top, 100,100);
              button[6].reshape(210+a.left,100+a.top, 100,100);
              button[7].reshape(310+a.left,100+a.top, 100,100);
              button[8].reshape(10+a.left,200+a.top, 100,100);
              button[9].reshape(110+a.left,200+a.top, 100,100);
              button[10].reshape(210+a.left,200+a.top, 100,100);
              button[11].reshape(310+a.left,200+a.top, 100,100);
              g.drawString("Number of combinations found: " + combinationsFound, 500, 100);
         public void actionPerformed(ActionEvent e) {
              // TODO Auto-generated method stub
              if(e.getSource() == button[0]){
                   System.out.println("one");          
                   myList.add("button1");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[1]){
                   System.out.println("two");
                   myList.add("button2");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[2]){
                   System.out.println("three");     
                   myList.add("button3");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[3]){
                   System.out.println("four");
                   myList.add("button4");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[4]){
                   System.out.println("five");
                   myList.add("button5");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[5]){
                   System.out.println("six");     
                   myList.add("button6");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[6]){
                   System.out.println("seven");
                   myList.add("button7");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[7]){
                   System.out.println("eight");
                   myList.add("button8");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[8]){
                   System.out.println("nine");          
                   myList.add("button9");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[9]){
                   System.out.println("ten");     
                   myList.add("button10");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[10]){
                   System.out.println("eleven");
                   myList.add("button11");
                   System.out.println(myList);
                   sequenceCheck();
              if(e.getSource() == button[11]){
                   System.out.println("twelve");          
                   myList.add("button12");
                   System.out.println(myList);
                   sequenceCheck();
         public void sequenceCheck(){
              //ArrayList<String> solutionsFound = new ArrayList<String>();
              ArrayList<String> solution1 = new ArrayList<String>();
              ArrayList<String> solution2 = new ArrayList<String>();
              ArrayList<String> solution3 = new ArrayList<String>();
              ArrayList<String> solution4 = new ArrayList<String>();
              ArrayList<String> solution5 = new ArrayList<String>();
              ArrayList<String> solution6 = new ArrayList<String>();
              ArrayList<String> solution7 = new ArrayList<String>();
              ArrayList<String> solution8 = new ArrayList<String>();
              ArrayList<String> solution9 = new ArrayList<String>();
              ArrayList<String> solution10 = new ArrayList<String>();
              ArrayList<String> solution11 = new ArrayList<String>();
              ArrayList<String> solution12 = new ArrayList<String>();
              ArrayList<String> solution13 = new ArrayList<String>();
              ArrayList<String> solution14 = new ArrayList<String>();
              ArrayList<String> solution15 = new ArrayList<String>();
              ArrayList<String> solution16 = new ArrayList<String>();
              ArrayList<String> solution17 = new ArrayList<String>();
              ArrayList<String> solution18 = new ArrayList<String>();
              ArrayList<String> solution19 = new ArrayList<String>();
              ArrayList<String> solution20 = new ArrayList<String>();
              ArrayList<String> solution21 = new ArrayList<String>();
              ArrayList<String> solution22 = new ArrayList<String>();
              ArrayList<String> solution23 = new ArrayList<String>();
              Collections.sort(myList);
              // SOLUTION ONE
              solution1.add("button1");
              solution1.add("button2");
              solution1.add("button3");
              solution1.add("button4");
              System.out.println("Solution 1 = " + solution1);
              // SOLUTION 2
              solution2.add("button5");
              solution2.add("button6");
              solution2.add("button7");
              solution2.add("button8");
              System.out.println("Solution2 = " + solution2);
              // SOLUTION 3
              solution3.add("button9");
              solution3.add("button10");
              solution3.add("button11");
              solution3.add("button12");
              System.out.println("Solution3 = " + solution3);
              // SOLUTION 4
              solution4.add("button1");
              solution4.add("button2");
              solution4.add("button5");
              solution4.add("button6");
              System.out.println("Solution4 = " + solution4);
              // SOLUTION 5
              solution5.add("button3");
              solution5.add("button4");
              solution5.add("button7");
              solution5.add("button8");
              System.out.println("Solution5 = " + solution5);
              // SOLUTION 6
              solution6.add("button2");
              solution6.add("button3");
              solution6.add("button6");
              solution6.add("button7");
              System.out.println("Solution6 = " + solution6);
              // SOLUTION 7
              solution7.add("button5");
              solution7.add("button6");
              solution7.add("button9");
              solution7.add("button10");
              System.out.println("Solution7 = " + solution7);
              // SOLUTION 8
              solution8.add("button7");
              solution8.add("button8");
              solution8.add("button11");
              solution8.add("button12");
              System.out.println("Solution8 = " + solution8);
              // SOLUTION 9
              solution9.add("button6");
              solution9.add("button7");
              solution9.add("button10");
              solution9.add("button11");
              System.out.println("Solution9 = " + solution9);
              // SOLUTION 10
              solution10.add("button1");
              solution10.add("button2");
              solution10.add("button6");
              solution10.add("button7");
              System.out.println("Solution10 = " + solution10);
              // SOLUTION 11
              solution11.add("button5");
              solution11.add("button6");
              solution11.add("button10");
              solution11.add("button11");
              System.out.println("Solution11 = " + solution11);
              // SOLUTION 12
              solution12.add("button2");
              solution12.add("button3");
              solution12.add("button7");
              solution12.add("button8");
              System.out.println("Solution12 = " + solution12);
              // SOLUTION 13
              solution13.add("button6");
              solution13.add("button7");
              solution13.add("button11");
              solution13.add("button12");
              System.out.println("Solution13 = " + solution13);
              // SOLUTION 14
              solution14.add("button2");
              solution14.add("button3");
              solution14.add("button5");
              solution14.add("button6");
              System.out.println("Solution14 = " + solution14);
              // SOLUTION 15
              solution15.add("button3");
              solution15.add("button4");
              solution15.add("button6");
              solution15.add("button7");
              System.out.println("Solution15 = " + solution15);
              // SOLUTION 16
              solution16.add("button6");
              solution16.add("button7");
              solution16.add("button9");
              solution16.add("button11");
              System.out.println("Solution16 = " + solution16);
              // SOLUTION 17
              solution17.add("button7");
              solution17.add("button8");
              solution17.add("button10");
              solution17.add("button11");
              System.out.println("Solution17 = " + solution17);
              // SOLUTION 18
              solution18.add("button1");
              solution18.add("button5");
              solution18.add("button6");
              solution18.add("button10");
              System.out.println("Solution18 = " + solution18);
              // SOLUTION 19
              solution19.add("button2");
              solution19.add("button6");
              solution19.add("button7");
              solution19.add("button11");
              System.out.println("Solution19 = " + solution19);
              // SOLUTION 20
              solution20.add("button3");
              solution20.add("button7");
              solution20.add("button8");
              solution20.add("button12");
              System.out.println("Solution20 = " + solution20);
              // SOLUTION 21
              solution21.add("button2");
              solution21.add("button5");
              solution21.add("button6");
              solution21.add("button9");
              System.out.println("Solution21 = " + solution21);
              // SOLUTION 22
              solution22.add("button3");
              solution22.add("button6");
              solution22.add("button7");
              solution22.add("button10");
              System.out.println("Solution22 = " + solution22);
              // SOLUTION 23
              solution23.add("button4");
              solution23.add("button7");
              solution23.add("button8");
              solution23.add("button11");
              System.out.println("Solution23 = " + solution23);
              System.out.println("buttons pressed = " + myList);
              System.out.println("solutions found = " + solutionsFound);
              Collections.sort(myList);
              if(myList.equals(solution1)){
                   if(solutionsFound.contains("solution1")){
                        JOptionPane.showMessageDialog(null, "Combinations already found");
                        myList.clear();
                   else {
                        combinationsFound++;
                        JOptionPane.showMessageDialog(null, "Winner");
                        myList.clear();
                        repaint();
                        solutionsFound.add("solution1");
                        System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution2)){
                        if(solutionsFound.contains("solution2")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution2");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution3)){
                   if(solutionsFound.contains("solution3")){
                        JOptionPane.showMessageDialog(null, "Combinations already found");
                        myList.clear();
                   else {
                        combinationsFound++;
                        JOptionPane.showMessageDialog(null, "Winner");
                        myList.clear();
                        repaint();
                        solutionsFound.add("solution3");
                        System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution4)){
                        if(solutionsFound.contains("solution4")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution4");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution5)){
                        if(solutionsFound.contains("solution5")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution5");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution6)){
                        if(solutionsFound.contains("solution6")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution6");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution7)){
                        if(solutionsFound.contains("solution7")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution7");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution8)){
                        if(solutionsFound.contains("solution8")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution8");
                             System.out.println("solutions found = " + solutionsFound);
                   else if(myList.equals(solution9)){
                        if(solutionsFound.contains("solution9")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution9");
                             System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution10)){
                        if(solutionsFound.contains("solution10")){
                             JOptionPane.showMessageDialog(null, "Combinations already found");
                             myList.clear();
                        else {
                             combinationsFound++;
                             JOptionPane.showMessageDialog(null, "Winner");
                             myList.clear();
                             repaint();
                             solutionsFound.add("solution10");
                             System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution11)){
         if(solutionsFound.contains("solution11")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution11");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution12)){
         if(solutionsFound.contains("solution12")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution12");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution13)){
         if(solutionsFound.contains("solution13")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution13");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution14)){
         if(solutionsFound.contains("solution14")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution14");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution15)){
         if(solutionsFound.contains("solution15")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution15");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution16)){
         if(solutionsFound.contains("solution16")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution16");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution17)){
         if(solutionsFound.contains("solution17")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution17");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution18)){
         if(solutionsFound.contains("solution18")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution18");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution19)){
         if(solutionsFound.contains("solution19")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution19");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution20)){
         if(solutionsFound.contains("solution20")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution20");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution21)){
         if(solutionsFound.contains("solution21")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution21");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution22)){
         if(solutionsFound.contains("solution22")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution22");
              System.out.println("solutions found = " + solutionsFound);
    else if(myList.equals(solution23)){
         if(solutionsFound.contains("solution23")){
              JOptionPane.showMessageDialog(null, "Combinations already found");
              myList.clear();
         else {
              combinationsFound++;
              JOptionPane.showMessageDialog(null, "Winner");
              myList.clear();
              repaint();
              solutionsFound.add("solution23");
              System.out.println("solutions found = " + solutionsFound);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    From [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html]
    [Volume is not precision|http://www.catb.org/~esr/faqs/smart-questions.html#volume] :
    You need to be precise and informative. This end is not served by simply dumping huge volumes of code or data into a help request. If you have a large, complicated test case that is breaking a program, try to trim it and make it as small as possible.
    This is useful for at least three reasons. One: being seen to invest effort in simplifying the question makes it more likely you'll get an answer, Two: simplifying the question makes it more likely you'll get a useful answer. Three: In the process of refining your bug report, you may develop a fix or workaround yourself.
    Also please read up on god-objects (wikipedia has a write up on this) which is cured by dividing and conquering. Finally, you really need to simplify this code by using loops with your arrays. You can shorten this beast by over 70%, easy making it much, much easier to debug.
    Edited by: Encephalopathic on Mar 30, 2008 6:59 AM

  • PLEASE POST WHAT DRIVERS/OS/SOUND CARDS ARE USEING SO CAN ALL GET THIS BACK IN VIST

    THOGUHT A TREAD BOUT HOW WE ALL GOT IT WORKIGN AGAIN AS THERE ISNT THREAD WIT HALL THE DIF WAYS TO DO IT LIKE DANS DRIVERS/DELL TRICKS AND SO ON..SO COME ON PEEPS PLEASE HELP TO ADD THIS ALL IN AS LOTS OF PEOPLE ARE GETTIN WAY DIF RESULTS,BUT FROM THE SAME DRIVERS/TRICKS SO MUST BE A REASON WHY ITS NOT THE SAME FOR ALL SO LETS ALL POST THE RIGHT STEP BY STEP WAY TO DO IT THAT U USED SO CAN ALL GET THE HELP AND INFO WE NEED WIT HOUT HOURS OF MESSING BOUT AND STILL NOT GETTIGN IT RIGHT..ALSO WHAT SPEAKERS/DECODERS OR WHAT EVER OTHER HARDWARE UR USEIGN TO GET TI GOING OK... THANKS PEOPLE PLEASE HELP TO GET THIS GOING YER GUNAN HELP US ALL OUT IN END...AND WAS SURPRISED THER WANT A THREAD BOUT THIS ALLREADY...
    AND CREATIVE U.K/EUROPE HAVE THESE BACK IN THE I/O MODULES THAT LET UA USE OPTICAL/COAX INPUT/OUTPUT IF ANY WANTS THEM THSI IS THE LINK:
    http://uk.europe.creative.com/shop/basket.asp acti=add&prod=773
    THANSK PEEPS HOPE UA HELP THIS THREAD GROW AS I COULDNT GET MINE WORKIGN AN NOW LOTS OF PEOPLE ARE HAVEIGN TROUBLE TO...

    ok man sorry just thats the important bits,so coem on ua must beable to tell that...why would be shouting about this init lol...
    instead of moaning bout how i wrote my thread can ua add ur details about which driver/OS/sound card and if u could get the DD/DTS tab working again an if sop which way did ua do it was it dans drivers for old audigy cards or the dell file swap or anyother way ua did it...please people this will help out a lot of people that believe creatives lies bout it not supportiong hardware in vista as seen a lot of screen shots of it running in vista (showing the system tab so can see its really vista not XP,and the sound console showing the DD/DTS tab in place like we want....
    coem on peeps no lot of ua on here have got it working an no its nto ur problem if have urs working but im guessign soem helped u to get it runnign so how bout doig nthe same ofr soem of the noobs (my self as well) wont take ua 0 mins to post how uadid it step by step but please please try to post it as spot on the same as ua did it ok or it wont work im sure as some of the posts on here have bits missing out of them so it wont work if ua try it but will mess ur drivers up instead and im betting that people are gettign sick big time of uninstallign their drivers tiem after time ok....pleas e try to help soem of us out if can ok...lets make this tread the main place to get ur card back up to full specks again as it should be like XP....
    and im not shouting when type like THIS OK JUST TRYING TO GET THE IMPORTANT BITS OVER...thought ua coudl see that im not shouting and cause were not in chat room didnt think would matter but if thats all got to say in here (an not bein funny cause dont wannaf all out with any please dotn post things like that ok ur not helpign any but just starting people moaning bout what ua posted ok) an like other guy said ur whole syste mis wrote l;ike that sop stop shoutign at me to ok LOL
    thankls guys and please try take out 5 mins of ur life to help rest of us out ok... P.S sorry bout spelling im really ill at mo and havent got time to check it all ok so dont maon bout that wont happen again ok if ua felt as bad as i do ua have bad spellign to let me tel lua that ok....

  • My ITunes gift card I brought, the Reemdem code had bin wide out so I can no longer see that code what do I do

    My ITunes gift card I brought, the Reemdem code had bin wide out so I can no longer see that code what do I do?

    "bin wide out"?
    If you mean you cannot read the code on the back of the card take it back to the store you purchased it from. If the numbers are not visable because you scratched them out I don't know if the store will replace or refund that. If you can read some of the numbers you could just keep trying a combination of letters and numbers to replace the missing ones. This will take a while depending on how many inputs are missing. You will have to use 0 through 9 and I am guessing A through Z.

  • I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?

    I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?
    Thanks!
    David

    Either of these should help.
    http://grandperspectiv.sourceforge.net/
    http://www.whatsizemac.com/
    Or search 'disk size' in the App Store.
    Be carefull with what you delete & have a backup BEFORE you start, you may also want to reboot to try to free any memory that may have been written to disk.

  • TS1702 I have an Iphone 5  6.01.  I have a notice on my app store that I have an update. Tried to update, but it won't.  Connected to Itunes and tried to download update for App.  I can't do that either.  It won't let me update any of the apps.  What is w

    I have an Iphone 5  6.01.  I have a notice on my app store that I have an update. Tried to update, but it won't.  Connected to Itunes and tried to download update for App.  I can't do that either.  It won't let me update any of the apps.  What is wrong?

    My husband and I are using the same iTunes account on all mac & pc computers, but the libraries are different on each machine.  We always manually manage our music (no auto sync).  iTunes is up to date on the PCs.  My husband uses our joint iTunes account on his pc, but once again, has a different collection in his library from those on the other machines.  He can't load any music from his PC to his iphone 4.  I can load music from my mac library to my iphone 4s, but cannot load from my pc library to my iphone 4s.  How can I switch my main library that it syncs with from the mac to the pc?
    Thanks

  • I am trying to transfer pictures and music from my phone to my computer, and when I connect my phone, it says Device not installed correctly. I can not see my files or nothing. What can I do?

    I am trying to transfer pictures and music from my phone to my computer, and when I connect my phone, it says Device not installed correctly. I can not see my files or nothing. What can I do?

    Try downloading these http://www.samsung.com/us/support/owners/product/SCH-I535MBBVZW
    or searching for it here Verizon Wireless Cell Phones - Verizon Wireless Accessories | Samsung

  • I have a MacAir, mid 2011 model, and want to view video on my TV.  I see that I need a mini display port to Hdmi but there are many of these.  What exatly do I need and how does one view a movie downloaded to the MacAir on a TV screen?

    I have a MacAir, mid 2011 model, and want to view video on my TV.  I see that I need a mini display port to Hdmi but there are many of these.  What exatly do I need and how does one go about viewing a movie downloaded to the MacAir on a TV screen?

    Welcome to Apple Support Communities
    That's exactly what you need. A Mini DisplayPort to HDMI adapter and a HDMI cable. See > http://support.apple.com/kb/HT4241?viewlocale=en_US
    This is the only way to view a video on the TV. After connecting your MacBook Air to the TV, image on your TV should show immediately. Then, press Command and F1 keys to mirror your MacBook Air display, and open the video

Maybe you are looking for