TS3297 Hey every one ..help plz

I got this : your purchase cant be completed .... Any bdy have an idea plz!!

What does the rest of the message say?
GB

Similar Messages

  • Hey every one ,i bought a new ipad 2 last month,i am not using it  so much but  sometimes it does respond,hang's up,all games and app come out of there folder . can you plz help me

    hey every one ,i bought a new ipad 2 last month,i am not using it  so much but  sometimes it does respond,hang's up,all games and app come out of there folder . can you plz help me.my email id is [email protected]

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.
    Don't leave your email address on a public forum

  • I cant get voice over to work on my 4G shuffle it clicks off every time help plz

    i need help plz it wont work

    Hello,
    Welcome to Adobe Forums.
    Try uninstalling Adobe Flash Player from Flash Player uninstaller : http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html#main_uninstall
    Try a clean installation using this KB : http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- mac.html
    Thanks,
    Vikram

  • Hey everyone! i have a external hardrive i keep my itunes library of songs on and it wont sync with my ipod touch inless i copy and paste it into my ipod device when thats conected. i dont want all the songs on there only checked ones. help plz!!

    im having trouble with syncing my ipod touch with my itunes library that i keep on a external hardrive. when i plug up my external hardrive that has all my songs on it, it doesn't sync to my ipod correctly. i have to copy and paste the songs to my ipod device when its connected. i dont want all the songs on there and i want to be able to manually control whats on my ipod. and id like to take some songs off of the ipod also but i want them still in my itunes library though. i usually check the songs i want on the ipod but it isnt working that way maybe because its a external hardrive?? i never had a problem with past ipods with my library on itunes but i ran out of space on my computer and had to transfer all of the songs to my external hardrive. please someone help me!! i thought it would be simple! but it isnt the case! i plug up my hardrive then my ipod, i press sync and nothing gets transfered unless i copy and paste them to the ipod. even though it says ipod syncing in progress! this is really confusing! please help me!! sorry if this is jumbled up and confusing..

    Correct. When you update via iTunes all synced media that is not in your iTunes library will be lost.
    As IO said before:
    You can redownload most iTunes pruchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    I do not think it included audio books.

  • Hey i need help plz

    i droped my phone and the screen white what do i do so far i have taken the baterry out of it please help me im gonna cry so much if cant get fixed cant afford i new one 

    Yikes!
    you can try doing a software reload by going here.
    http://us.blackberry.com/support/installpc.jsp
    You can also force the detection of the BlackBerry smartphone using Application Loader
    http://btsc.webapps.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB10144
    If it doesn't work, you'll have to visit the store for repair / exchange.
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • Could every one help me with this? Thanks

    2. a. Write a program that prompts a professor to input grades for five different courses for 10 students. Prompt the professor to enter one grade at a time using the prompt �Enter grades for student #1� and �Enter grade #1�. Verify that the professor enter only A, B, C, D, or F. Use variables for the student numbers (1 through 10) and grade numbers (1 through 5). The class name is GradePoint.
    b. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    c. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.

    I got A. but I don't know how to do B and C
    could everyone help me how to do B and C?
    here are my code in A.
    I hope I am doing right:
    here are my code in A.
    I hope I am doing right:
    public class GradePoint
    public static void main(String[] args) throws Exception
    char Grade;
    System.out.println("Enter grades for student #1");
    System.out.println("Enter A, B, C, D, or F");     
    System.out.println("\nEnter grades #1");
    Grade =(char)System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #2");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #2");
         Grade =(char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #3");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #3");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #4");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #4");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #5");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #5");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #6");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #6");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #7");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #7");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #8");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #8");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #9");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #9");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #10");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #10");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    b. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    c. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.

  • Hey every one ... Does any one suggest for me a good browser for my tablet

    Hi
    I would like to have a better browser... Every browser i had tried is not good like if i wanna to upload a file i have to choose only from the gallery and nothing on the settings can change it.. I have tried dolphin browser, boat .. Etc almlst all of them but still and the built in browser every time i try to upload something it shut down by itself 
    Thanks for reading 

    I FIXED IT!
    FYI for the rest of you that might be having the same problem. DON'T USE A BELKIN ROUTER WITH AOL ON A MBP!!!!! It ***** wirelessly. or even hard connected, it won't connect. I went to best buy today, and got a refund on the belkin. I then went to J&R and got a D-Link router. And now it works perfect. I can now chat on AOL yet again, and I tried all the other web browsers I have and messengers, and warcraft 3 online via battlenet. And it works great. I want to give you guys a special thanks for taking time out to answer back to my post. FYI! Belkin wireless G routers do not connect you to AOL wirelessly on MBP's. No matter how much you mess around on them. I highly recommend a D-Link Router. They are easy to set up as long as you READ ( AND I MEAN IT!!!) read the instructions before you set anything up on it. Use the CD that it comes with, and you'll be good to go. Set it up and it works great Almost no dead zones in the house, and now I can use the MBP with all it's cababilities. Thanks people. I really appreciate it.
    P.S. I called belkin last night when i decided to get a refund on my router for today and when i talked to the tech, after puersuading him to tell me the truth. And stop BS'ing me, he broke down and admited that AOL does not work wirelessly on MBP's. So to make a long story short this time, There you go. And one last note, I'm very happy now with my d-link router. I honestly thought it would suck. Not being a brand name router or anything. But amazingly, it works like a brand name item! Again, many thanks all.
    Bruce

  • Hey i NEEED HELP   plz

    hey i just make a ichat account (gmail) i try to add my old msn account to c if it work .,... but i add my msn and when i go in to msn nothing?? it ment to ask me if i what to add *****@gmail so i when back to ichat and add my sister so she when on her msn and the same thing ???
    so i when back to ichat and it just say "waiting for authorization " but there nothing when i go in t msn
    i hope you understand what im saying lol
    plz help

    Hi
    See for MSN http://allforces.com/?p=17&akst_action=share-this

  • Hi every one help needed ensoniq audiopci card

    trying to configure my sound card anyhelp pls

    I achieved this goal, and it works like this:
    <ol>
    <li>install solaris
    <li>try to find technical information for your pci sound card hardware
    <li>read linux and xBSD sound card driver sources
    <li>write a solaris driver...
    </ol>
    <pre>:-)</pre>
    In case you have a soundblaster 16PCI or PCI128 card, you can
    skip steps 2. - 4.

  • Run Time error!!!Help plz

    hi ..
    every time i run my application i get this error which i can't understand where exactly the error is
    can any one help plz
    )at javax.swing.JLayeredPane.paint(JLayeredPane.java:546
    )at javax.swing.JComponent.paintChildren(JComponent.java:498
    )at javax.swing.JComponent.paint(JComponent.java:669
    )at java.awt.GraphicsCallback$PaintCallback.run(GraphicsCallback.java:23
    :at sun.awt.SunGraphicsCallback.runOneComponent(SunGraphicsCallback.java
    )54
    at sun.awt.SunGraphicsCallback.runComponents(SunGraphicsCallback.java:91
    )at java.awt.Container.paint(Container.java:960
    )at javax.swing.JFrame.update(JFrame.java:329
    )at sun.awt.RepaintArea.update(RepaintArea.java:337
    )at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:200
    )at java.awt.Component.dispatchEventImpl(Component.java:2663
    )at java.awt.Container.dispatchEventImpl(Container.java:1213
    )at java.awt.Window.dispatchEventImpl(Window.java:914
    )at java.awt.Component.dispatchEvent(Component.java:2497
    )at java.awt.EventQueue.dispatchEvent(EventQueue.java:339
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    )read.java:131
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    )ad.java:98
    )at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93
    )at java.awt.EventDispatchThread.run(EventDispatchThread.java:85
    this is part of the code:
      public void actionPerformed(ActionEvent e)
        FileInputStream fis = null;
        if (e.getSource() == add) //The ADD button.
          //User has not populated all the input fields.
          if(name.getText().equals("")|| address.getText().equals("")|| phone.getText().equals("")|| sex.getText().equals("")|| dob.getText().equals("")|| photo.getText().equals(""))
            JOptionPane.showMessageDialog(null, "Please fill in all the fields","Missing Fields",JOptionPane.INFORMATION_MESSAGE);
          else
            // save the new customer:
            try
              //1. take the customer's data and photo:
              int    userId          = Integer.parseInt(id.getText());
              String userName      = name.getText();
              String userAddress      = address.getText();
              String userPhone      = phone.getText();
              String userSex      = sex.getText();
              String userDateBirth      = dob.getText();
              //String userDateBirth=Date.parse(dob);
              String photoName      = photo.getText();
              String audioName=   audio.getText();
              File   file           = new File(photoName);
              int    fileLength      = (int)file.length();
              //2. Set the user's photo into the photoHolder:
              photoHolder.setVisible(false);
              photoHolder = null;
              comments.setVisible(false);
              comments = null;
              Icon[] custPhotos = {new ImageIcon(photoName)};
              JList photosList = new JList(custPhotos);
              photosList.setFixedCellHeight(100);
              photosList.setFixedCellWidth(80);
              photoHolder = new JPanel();
              photoHolder.add(photosList);
              makeComments();
              //3. Insert the data and photo into the database:
              if(fileLength > 0)
                fis = new FileInputStream(file);
                String query = " INSERT INTO CUSTOMER VALUES('"+userId+"', '"+ userName+ "', '"+ userAddress+ "', " +" '"+ userPhone+ "', '"+ userSex+ "', '"+ userDateBirth+ "', ?,?,? ) ";
                PreparedStatement pstmt = conn.prepareStatement(query);
                pstmt.setBinaryStream(1, fis, fileLength);
                  pstmt.setString(2,photoName);
                  pstmt.setString(3,audioName);
                pstmt.executeUpdate();
                comments.setText(userName+", added.");
              else
                String query = " INSERT INTO CUSTOMER (id, name, address, phone, sex, dob) VALUES('"+userId+"', '"+userName+"', '"+userAddress+"', '"+userPhone+"', '"+userSex+"', '"+userDateBirth+"') ";
                stat.executeUpdate(query);
                comments.setText("Customer saved without a photo.");
              backPanel.add(photoHolder);
              backPanel.add(comments);
              updateTable();
              //AddScroll();
            } //try
            catch (Exception ee)
               //The danger of putting creating the JOptionPane in here is that it will show the same message regardless of the error.
                JOptionPane.showMessageDialog(null, "Customers CPR already exits!!Please enter another CPR","Invalid",JOptionPane.INFORMATION_MESSAGE);
              System.out.println("Caught exception in add action: " + ee);
              ee.printStackTrace();
            } //catch
          } //if
        }//add button

    hi...
    i got where the error is..
    now i have another problem..
    Connecting to database..
    Valid Login
    Caught updateTable exception: java.lang.ArrayIndexOutOfBoundsException
    java.lang.ArrayIndexOutOfBoundsException
    at UtilityMethods.updateTable(UtilityMethods.java:305)
    (which is this line:
    tableData[currentRow] = fieldString;)-----> i did this because one of the fields will be a Date and the others are strings
    at UtilityMethods.updateTable(UtilityMethods.java:429)
    at Login.validLogin(Login.java:114)
    at Login.actionPerformed(Login.java:80)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:14
    50)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1504)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:378)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:216)
    at java.awt.Component.processMouseEvent(Component.java:3715)
    at java.awt.Component.processEvent(Component.java:3544)
    at java.awt.Container.processEvent(Container.java:1164)
    at java.awt.Component.dispatchEventImpl(Component.java:2593)
    at java.awt.Container.dispatchEventImpl(Container.java:1213)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
    at java.awt.Container.dispatchEventImpl(Container.java:1200)
    at java.awt.Window.dispatchEventImpl(Window.java:914)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:131)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:98)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
    this is the code :
    void updateTable()
          ResultSet results = null;
          ResultSet results1 = null;
          try
            //Get the number of rows in the table so we know how big to make the data array..
            int rowNumbers  = 0;
            int columnCount = 6;
            results = stat.executeQuery("SELECT COUNT(*) FROM CUSTOMER ");
            if(results.next())
              rowNumbers = results.getInt(1);
            } //if
            if(rowNumbers == 0)
            rowNumbers = 1;
            tableData = new String[rowNumbers][columnCount];
            //Initialize the data array with "" so we avoid possibly having nulls in it later..
            for(int i =0;i<tableData.length;i++)
              for(int j=0;j<tableData[0].length;j++)
              tableData[i][j] = "";
            //Populate the data array with results of the query on the database..
            int currentRow = 0;
             SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");
            results1 = stat.executeQuery("SELECT * FROM CUSTOMER ORDER BY ID");
            while (results1.next())
              for(int i = 0; i < columnCount; i++){
              Object field = results1.getObject(i + 1);
              // actually this next line should be put outside your loop so you don't keep creating this object
              // or whatever format you want
              String fieldString;
              if (field instanceof Date)
                     fieldString = sdf.format((Date) field);
                     else
                          fieldString = field.toString();
                          tableData[currentRow] = fieldString;
    //tableData[currentRow][i] = results1.getString(i + 1);
    currentRow++;
    } //while
    }//for
    final String[] colName = { "CPR", "Name", "Address", "Phone", "Sex", "Date OF Birth" };
    TableModel pageModel = new AbstractTableModel()
    public int getColumnCount()
    return tableData[0].length;
    } //getColumnCount
    public int getRowCount()
    return tableData.length;
    } //getRowCount
    public Object getValueAt(int row, int col)
    return tableData[row][col];
    } //getValueAt
    public String getColumnName(int column)
    return colName[column];
    } //getcolName
    public Class getColumnClass(int col)
    return getValueAt(0, col).getClass();
    } //getColumnClass
    public boolean isCellEditable(int row, int col)
    return false;
    } //isCellEditable
    public void setValueAt(String aValue, int row, int column)
    tableData[row][column] = aValue;
    } //setValueAt
    //dataTable.setValue( new JScrollBar(JScrollBar.HORIZONTAL), 2,1 );
    }; //pageModel
    //Create the JTable from the table model:
    JTable dataTable = new JTable(pageModel);
    // dataTable.setModel();

  • NOKIA N73 HELP PLZ

    hey every one i have bought a noia n73 unlocked and am using optus sim on it. i tryed to connect to the optus zoo tv and when the real player opens it gives me this error ( max.number of connections in use close an active connection first)
    and it shows me this thing where it shows optus zoo and when i clck on it it ends the internet and happens on every channel i try to watch

    Press the menu button until a list of running applications shows, scroll down to highlight the one you want to close, hit the centre button to open it, use the options button to scroll down to "exit" and hit that to close it.
    Then hit and hold the menu button again and repeat until only standby is showing. Go to that. Then you can use the data transfer mode.

  • TS3297 when i restore my ios the massage appear  the i phone cannot restore at this time because the i phone  software update server cannot be contacted or temporary unavailable plz any one help me what i do

    when i restore my ios the massage appear  the i phone cannot restore at this time because the i phone  software update server cannot be contacted or temporary unavailable plz any one help me what i do

    tell me the full prosedure how i remove entries for gs.apple.com i am a new user thanks

  • 1 button to do create in 2 iteraitories  in one  page, how can help plz

    hi every one
    how can i make one button in one single page do the create action for two iteraitories in that html page
    “in other words.” i have two tables in one html page I want use one butten in the html page to create new row for each
    thank you ;

    Hi,
    see 1 button to do create in 2 iteraitories  in one  page, how can help plz
    Frank

  • Hi! every one  ... i mine phone ettings cant be restore  its ask passcode am enter mine present mine old all passcode but they cant work  . if any one know solution mine problem plz rply . thanks regards

    hi! every one  ... imine phone settings cant be restore  its ask passcode am enter mine present mine old all passcode but they cant work  . if any one know solution mine problem plz rply . thanks regards

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • Every one..help required ..

    hello every one i need help on urgent basis.
    can someone tell me how to store images and a few video clips and then retrieve them in plsql.?
    i have to make a small program in plsql in which i can store images and video clips and then retrieve them.
    plz help me..
    waiting for replies from all the users plz
    regards
    niak

    well i m not asking u or any one to do the project
    for me ..So where is problem in doing your research then?
    all i asked was for help.You've received some replies that should get you started on the topic.
    and i dont think
    u people should have segregations that students
    seeking help for their projects must not be helped..We obviously seem to have different views on the term "help". I do get the impression that you only seem to be helped, if (some) work is done for you, like researching and writing code. My definition (in this area) is: lead the person to the information and give some advice, but don't do the whole work, otherwise nothing is learned from that case, except for "how to be an efficient free loader". And we both don't want that to happen, right?
    besides its a forum and everyone should be helped
    here.. You've been given some hints and advise. Not satisfied with that? Maybe you are in the wrong forum, this one is on voluntary basis, nobody is obliged to help, most people do in the way as they see fit.
    if i wouldnt have told u that its my project then u
    wouldnt have know it..My answer then wouldn't have been any different. Start reading documention, read through this forum's threads, use other sources and get your project on the road. How do you thing any of use has to cope with his/her obligations? By letting someone else doing the job?
    and u wouldnt have been bully ..If I wanted to bully you, I'd just wrote: Please go away, you're obviously in the wrong forum. I think, you're disappointed because you haven't received the whole code including installation procedure and documentation. Well, some people here could give you that, but they usually charge a fee for that. If it's just sample code and concepts you want, learn how to use search engines and read the (in my opinion) excellent documentation. You claim you're a student, so what is this task different from all the other classes you have to attend?
    i dont need help from such bossy and rude people like
    u..Believe what you want, it's your choice.
    u dont wana help then dont.. but u dont have any
    right to be bossy ..Tell what, since this is an open forum, I think I'll write comments as I see fit, if you can't live with that, the web is quite a vast area, you should be able to find a place, where those "bossy and rude people" like me won't show up.
    dont think that each post here is for u to answer..I'm certainly not under this impression.
    first get proper manners then think of ur self of
    something..Well, you could be right, maybe I do have a problem in that area - on the other hand, maybe I'm just talking to someone that is dishing out unfounded accusations because he/she can't come up with any valid argument against my suggestions.
    as knowledge is useless if u dont have any manners
    which u dont have..I would take your critique a bit more seriously if it didn't came from a person who showed that his/her strategy to solve a critical position is to ask other people doing the work including research. But what do I know ...
    C.

Maybe you are looking for