I need help guys..

i need help guys....
Project Specification:
Develop a software package using HTML, servlet for a company called BookWorm Pte Ltd. This company rents out its books to the general public. This software package allows them to check if books are available in the store. If books are not available, they can join as members and put a reservation for the book. A title can only be reserved by a member. Members are given a userid and password to perform this function.
Features of program:
Compulsory:
1. A main page allowing user to select what they want to do.
2. For the general public, the program must be able to separately:
a.      Display all titles in the store. It should include current quantities in the store and status of each title. i.e. Available, on loan, Reserved by someone.
b.      Display only books that are available for loan.
c.      Display books that are out on loan but are available for reservation. (These books are not reserved by anyone yet.)
3. For members of the book store, the program must be able to:
a.     Request user for userid and password.
b.     Reserve a book that is out on loan but not reserved by anyone else.
c.     Cancel his/her reservation.
d.     View the books he/she has reserved so far.
Additional:
1. For book store administrator, the program can:
a.     Request administrator userid and password.
b.     Add/Remove members.
c.     Update members� userid and password.
d.     Change administrator�s password.
e.     Change quantity of books whenever it is return or loan out.
f.     Remove or add in new titles.
g.     � etc... Features you think are helpful to administrator�
2. For members, the program can:
a.     Allow users to send comments to administrator.
b.     View all books he/she has rented so far.
c.     Reserve for books already reserved by other members.
d.     � etc� Features you think are helpful to members�
Required Database:
You will need a database with two tables to store information on books and members. Please create the database & tables with the exact names shown below. You can use your own names for any additional tables or fields in the database.
Microsoft Access Database
Database name: BookWorm Pte Ltd.mdb
Table for storing books information:
Table name for Books: BookRec
Structure of table for compulsory features:
Field Name     Type     Explanation
Title     Text     Title of book
Author     Text     Author�s name
Price     Currency     Cost of rental
Qty      Number     Current quantity in store
ResvUserID     Number     For storing of member�s userid if reserved by him/her
Table name for Members: UserRec
Structure of table for compulsory features:
Field Name     Type     Explanation
UserID     Number     Member�s userid
UserName     Text     Member�s name
Password     Text     Member�s password

There's an old saying at the forum:
Do your homework yourself.
Post only if you are stuck somewhere... no spoon-feeding.

Similar Messages

  • HT204382 i need help guys mi karaoke videos aren't playing anymore how can i download some drivers for it ?

    i need help guys mi karaoke videos aren't playing anymore how can i download some drivers for it ?

    Drivers? You need a program to run them such as K-Jams. Then you will need to check your connections from the laptop to the monitor and make sure your settings are correct in System Preferences.
    Good Luck
    Pete

  • I need help Guys I might of deleted the Archive utility How do i get it back.

    i Have a Mac Air Book OS  X and i think i might of deleted the Archive utility How do i get it back please need help.

    Why do you think you deleted it?

  • HT201272 Need help guys i purchased a gems using my credit card but i didnt get the gems in that game but i was charge on my credit card, need help :(

    I tried to purchased gems in the game castle master i used my credit card but when i tried to purchase for the first time no gems was added on my account i tried it again it went thru but when i saw my invoice for my purchase i got charged twice but i only got the gems once, NEED HELP PLEASE

    Hi..
    If this is an In-App purchase, turn off the subscription until the matter is resolved >  iTunes Store: Purchasing and managing auto-renewing subscriptions
    iTunes Store: About In-App Purchases

  • I need help guys... please help....

    guys, is someone interested to help here? this is for our thesis.. this is an opengl program. i can send the whole program if you want.. but this is the most urgent and need the best help... ill be glad if you guys can help......
    * Dice.java
    * Created on 08 February 2007, 22:26
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package longgong;
    import java.net.URL;
    import gl4java.GLContext;
    import gl4java.awt.GLAnimCanvas;
    import gl4java.utils.textures.*;
    * @author welcome
    public class Dice {
    GLAnimCanvas glCanvas ;
    URL codeBase;
    int[]texture1 = new int[1]; //Storage for one texture ( NEW )
    int[]texture2 = new int[1]; //Storage for one texture ( NEW )
    int[]texture3 = new int[1]; //Storage for one texture ( NEW )
    int[]texture4 = new int[1]; //Storage for one texture ( NEW )
    int[]texture5 = new int[1]; //Storage for one texture ( NEW )
    int[]texture6 = new int[1]; //Storage for one texture ( NEW )
    float rx;
    float ry;
    float rz;
    float tx;
    float ty;
    float tz;
    float speed;
    boolean txMoveLeft;
    boolean tyMoveUp;
    boolean tzMoveFront;
    /** Creates a new instance of Dice */
    public Dice(GLAnimCanvas g) {
    glCanvas = g;
    if(!LoadGLTexture("c:\\java\\images\\one.png",texture1)){
    System.out.println("Failed to load Textures,Bailing!");
    System.exit(0);
    if(!LoadGLTexture("c:\\java\\images\\two.png",texture2)){
    System.out.println("Failed to load Textures,Bailing!");
    System.exit(0);
    if(!LoadGLTexture("c:\\java\\images\\three.png",texture3)){
    System.out.println("Failed to load Textures,Bailing!");
    System.exit(0);
    if(!LoadGLTexture("c:\\java\\images\\four.png",texture4)){
    System.out.println("Failed to load Textures,Bailing!");
    System.exit(0);
    if(!LoadGLTexture("c:\\java\\images\\five.png",texture5)){
    System.out.println("Failed to load Textures,Bailing!");
    System.exit(0);
    if(!LoadGLTexture("c:\\java\\images\\six.png",texture6)){
    System.out.println("Failed to load Textures,Bailing!");
    System.exit(0);
    txMoveLeft = true;
    tyMoveUp = true;
    public boolean inCircleBoundaries(float x, float y, float radius)
    float r;
    r = (float)Math.sqrt((x*x) + (y*y));
    if (r <= radius)
    return true;
    else
    return false;
    public void setCoordinates(float corRx,float corRy,float corRz,float corTx,float corTy,float corTz){
    rx = corRx;
    ry = corRy;
    rz = corRz;
    tx = corTx;
    ty = corTy;
    tz = corTz;
    public void getRandomDice(){
    int num = (int)(Math.random() * 6);
    if (num==1){
    rx=0.0f;
    ry=0.0f;
    rz=0.0f;
    else if (num==2){
    rx=90.0f;
    ry=0.0f;
    rz=0.0f;
    else if (num==3){
    rx=0.0f;
    ry=-90.0f;
    rz=0.0f;
    else if (num==4){
    rx=0.0f;
    ry=90.0f;
    rz=0.0f;
    else if (num==5){
    rx=-90.0f;
    ry=0.0f;
    rz=0.0f;
    else{
    rx=180.0f;
    ry=0.0f;
    rz=0.0f;
    public float getTx(){
    return tx+0.5f;
    public float getTy(){
    return ty+0.5f;
    public float getTz(){
    return tz+0.5f;
    public void setTz(float z){
    tz=z;
    public boolean getMoveLeft(){
    return txMoveLeft;
    public boolean getMoveUp(){
    return tyMoveUp;
    public void setMoveLeft(boolean m){
    txMoveLeft = m;
    public void setMoveUp(boolean m){
    tyMoveUp = m;
    public void startDiceMovement(){    
    if (txMoveLeft==true) {
    tx+=speed;
    else {
    tx-=speed;
    if (tyMoveUp==true) {
    ty+=speed;
    else {
    ty-=speed;
    ry+=(speed*4);
    rx+=(speed*4);
    //rz+=(speed*2);
    //tx+=speed;
    //ty+=speed;
    //tz+=speed;
    if (inCircleBoundaries(tx,ty,3.5f)==false) {  
    if (tx>=3.0f) txMoveLeft = false;
    if (tx<=-3.0f) txMoveLeft = true;
    if (ty>=3.0f) tyMoveUp = false;
    if (ty<=-3.0f) tyMoveUp = true;
    public void setSpeed(float s){
    speed = s;
    public void drawDice(){        
    glCanvas.gl.glLoadIdentity();                                             // Reset The View
    glCanvas.gl.glTranslatef(tx,ty,tz);
    glCanvas.gl.glRotatef(rx,1.0f,0.0f,0.0f);
    glCanvas.gl.glRotatef(ry,0.0f,1.0f,0.0f);
    glCanvas.gl.glRotatef(rz,0.0f,0.0f,1.0f);
    glCanvas.gl.glBindTexture(glCanvas.gl.GL_TEXTURE_2D, texture1[0]);
    glCanvas.gl.glBegin(glCanvas.gl.GL_QUADS);
         // Front Face
    glCanvas.gl.glTexCoord2f(0.0f, 0.0f); glCanvas.gl.glVertex3f(-1.0f, -1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 0.0f); glCanvas.gl.glVertex3f( 1.0f, -1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 1.0f); glCanvas.gl.glVertex3f( 1.0f, 1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 1.0f); glCanvas.gl.glVertex3f(-1.0f, 1.0f, 1.0f);
    glCanvas.gl.glEnd();
    glCanvas.gl.glBindTexture(glCanvas.gl.GL_TEXTURE_2D, texture6[0]);
    glCanvas.gl.glBegin(glCanvas.gl.GL_QUADS);
              // Back Face          
    glCanvas.gl.glTexCoord2f(1.0f, 0.0f); glCanvas.gl.glVertex3f(-1.0f, -1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 1.0f); glCanvas.gl.glVertex3f(-1.0f, 1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 1.0f); glCanvas.gl.glVertex3f( 1.0f, 1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 0.0f); glCanvas.gl.glVertex3f( 1.0f, -1.0f, -1.0f);
    glCanvas.gl.glEnd();
    glCanvas.gl.glBindTexture(glCanvas.gl.GL_TEXTURE_2D, texture2[0]);
    glCanvas.gl.glBegin(glCanvas.gl.GL_QUADS);
         // Top Face
    glCanvas.gl.glTexCoord2f(0.0f, 1.0f); glCanvas.gl.glVertex3f(-1.0f, 1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 0.0f); glCanvas.gl.glVertex3f(-1.0f, 1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 0.0f); glCanvas.gl.glVertex3f( 1.0f, 1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 1.0f); glCanvas.gl.glVertex3f( 1.0f, 1.0f, -1.0f);
    glCanvas.gl.glEnd();
    glCanvas.gl.glBindTexture(glCanvas.gl.GL_TEXTURE_2D, texture5[0]);
    glCanvas.gl.glBegin(glCanvas.gl.GL_QUADS);
         // Bottom Face
    glCanvas.gl.glTexCoord2f(1.0f, 1.0f); glCanvas.gl.glVertex3f(-1.0f, -1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 1.0f); glCanvas.gl.glVertex3f( 1.0f, -1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 0.0f); glCanvas.gl.glVertex3f( 1.0f, -1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 0.0f); glCanvas.gl.glVertex3f(-1.0f, -1.0f, 1.0f);
    glCanvas.gl.glEnd();
    glCanvas.gl.glBindTexture(glCanvas.gl.GL_TEXTURE_2D, texture3[0]);
    glCanvas.gl.glBegin(glCanvas.gl.GL_QUADS);
         // Right face
    glCanvas.gl.glTexCoord2f(1.0f, 0.0f); glCanvas.gl.glVertex3f( 1.0f, -1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 1.0f); glCanvas.gl.glVertex3f( 1.0f, 1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 1.0f); glCanvas.gl.glVertex3f( 1.0f, 1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 0.0f); glCanvas.gl.glVertex3f( 1.0f, -1.0f, 1.0f);
    glCanvas.gl.glEnd();
    glCanvas.gl.glBindTexture(glCanvas.gl.GL_TEXTURE_2D, texture4[0]);
    glCanvas.gl.glBegin(glCanvas.gl.GL_QUADS);
         // Left Face
    glCanvas.gl.glTexCoord2f(0.0f, 0.0f); glCanvas.gl.glVertex3f(-1.0f, -1.0f, -1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 0.0f); glCanvas.gl.glVertex3f(-1.0f, -1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(1.0f, 1.0f); glCanvas.gl.glVertex3f(-1.0f, 1.0f, 1.0f);
    glCanvas.gl.glTexCoord2f(0.0f, 1.0f); glCanvas.gl.glVertex3f(-1.0f, 1.0f, -1.0f);
    glCanvas.gl.glEnd();
    public boolean LoadGLTexture(String fileName, int textureNumber[])
    PngTextureLoader texLoader = new PngTextureLoader(glCanvas.gl, glCanvas.glu);
    if(codeBase!=null)
    texLoader.readTexture(codeBase, fileName);
    else
    texLoader.readTexture(fileName);
    if(texLoader.isOk())
    //Create Texture
    glCanvas.gl.glGenTextures(1, textureNumber);
    glCanvas.gl.glBindTexture(glCanvas.gl.GL_TEXTURE_2D, textureNumber[0]);
    glCanvas.gl.glTexParameteri(glCanvas.gl.GL_TEXTURE_2D, glCanvas.gl.GL_TEXTURE_MAG_FILTER, glCanvas.gl.GL_LINEAR);
    glCanvas.gl.glTexParameteri(glCanvas.gl.GL_TEXTURE_2D, glCanvas.gl.GL_TEXTURE_MIN_FILTER, glCanvas.gl.GL_LINEAR);
    glCanvas.gl.glTexImage2D(glCanvas.gl.GL_TEXTURE_2D,
    0,
    3,
    texLoader.getImageWidth(),
    texLoader.getImageHeight(),
    0,
    glCanvas.gl.GL_RGB,
    glCanvas.gl.GL_UNSIGNED_BYTE,
    texLoader.getTexture());
    return true;
    return false;
    }

    im from university of st. la salle bacolod city.. this is for our thesis due on friday... this is a java program but with the opengl library to create graphics. i can send you all the files so that you can read it. but first, you need to have all the jar and lib of opengl in your pc to see the canvas. this is made up of three dice that supposed to bounce on the circle boundaries and with each other as well. i have to send you 3 files in order to work on that dice so that you can see the outcomes. so if you want, i can send to you these files on your email add if you want.. but it is ok for me to send it here also but i will just protion the three. but if you want, i can send it to your email add. just send me a message on my email add... [email protected]....
    but if you want to read more about me... you can see me here...
    http://tagged.com/memayem2
    thank you very much....

  • Again i need help guys

    this time with a dead line {tonight} :(
    anyway the user is supposed to enter "i am user i am user" & the program will output
    i 2
    am 2
    user 2
    this is the code
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    public class Try extends JFrame {
         private JLabel label;
         private JTextField field;
         private JTextArea area;
         private JScrollPane scroll;
         private int count;
         private String poprage="";
         public Try(){
              super("Application 3 / Word Occurence");
              getContentPane().setBackground(Color.CYAN);
              Container c = getContentPane();
              c.setLayout(new FlowLayout());
              label = new JLabel("Enter The Text Here");
              c.add(label);
              field = new JTextField(30);
              field.addActionListener(
                   new ActionListener(){
                        public void actionPerformed(ActionEvent e){
                             StringTokenizer s = new StringTokenizer(e.getActionCommand());
                             count = s.countTokens();
                             while(s.hasMoreTokens()){
                                  StringTokenizer z = new StringTokenizer(e.getActionCommand());
                                  for(int i =0 ; i<count ;i++){
                                       int c=0;
                                       if(s.equals(z.nextToken())){
                                            c++;
                                       poprage += s+"\t"+c+"\n";}
              area.append(poprage);
             c.add(field);
              area = new JTextArea(10,30);
              area.setEditable(false);
              c.add(area);
              scroll = new JScrollPane(area);
              c.add(scroll);
              setSize(500,500);
              show();
         public static void main (String ar[]){
              Try a = new Try();
              a.addWindowListener(
                   new WindowAdapter(){
                        public void windowClosing( WindowEvent e ){
                             System.exit(0);
    }it gives me an exeption
    Exception in thread main java.lang.NullPointerException
    at Try.<init><Try.java.55>
    at Try.main<Try.java.73>
    first of all i did not take exeption handling or util package or data structure , so that no 1 insults me. O.K ??
    second i really need ur help , thx in advance.
    poprage.

    first of all i did not take exeption handling or util
    package or data structure , so that no 1 insults me.
    O.K ??What do you mean you didn't "take" them? I can't imagine a whole class just for java exception handling or the util package...there are some things where you just have to read the magazine articles...
    Anyway.
    it gives me an exeption
    Exception in thread main
    java.lang.NullPointerException
    at Try.<init><Try.java.55>
    at Try.main<Try.java.73>
    This means:
    On line 73, in your main method, there's a call to Try's constructor.
    On line 55, in Try's constructor, there's a null pointer exception.
    Look on line 55. Look for a period (.). Something to the left of it is null.
    You're the one with the original source code and an editor. It should be trivially simple for you to find line 55, whereas it's a pain for anyone reading your source on this forum.

  • I NEED HELP GUYS! so i just updated my i pod 4g into os 5 and i dont have digital zoom. I didnt jailbreak it or anything to get the os soo whats the problem!

    so i just updated my i pod 4g to os and when ever i wanna zoom in with my camera it dosent work  NEED HALP REALLY FAST. SOMEONE HELP PLEASE!

    Just use the 2-finger pinch gesture on the screen.

  • Ok srsly I really need help guys!!!

    so my itunes app store kept saying cannot connect to the itunes store when I tried to download a new app so I try signing out but I cant even sign in again it keeps showing th esame message and guys I cant even create a new apple id it keeps saying cannot connect to the itunes store omg im screwed help me!!!

    Well, then seriously... provide some relevant details.
    Apps cannot be installed on the ATV, so what exactly does this have to do with the ATV, the forum to which the question was posted.
    If help is desired, stop being vague.  Provided useful details and more importantly, post to the correct forum.

  • I really need help guys

    Okay, my phone is stuck in recovery mode. When I plug it up, iTunes automatically connects and says 'iTunes has detected a phone in recovery mode, must restore..."
    Then, I click ok...and the same message pops up again. Click okay, it pops up again. Each time it does this, another iPhone icon appears on the left side showing that it's connected (there were 5 before I unplugged the phone)
    I have no idea what to do.
    Once, it actually let me click restore. It extracted the files, or whatever, then it says "iTunes cant restore this phone...unknown error 2001"
    Another time, it gave this message as soon as I clicked restore, "iTunes could not locate the file "iPhone" to restore this phone". The wording may not be exact, but thats the gist.
    Someone, anyone...YOU lol, please help. Any advice would be greatly appreciated. Thanks

    I had a similar problem when I had the phone replaced and I updated (or attempted) the firmware to 1.1.4. I could not get it to go past a certain point and it would just hang up (the progress bar would not move). I retried it several times and it got to the point that Windows could not even recognize the phone as a USB device! I reset the phone and I went into iTunes and found where the latest download file for the firmware was located and deleted it. I then doubleclicked on 1.1.3 file and the download started, but it finished with the 1.1.4 update. So all was well after many attempts and seemingly a totally corrupted phone. Now it works fine and have had no problems.

  • I need help guys !! is my i pod dead?

    i accidentally jail broken my sisters i pod instead of mine now it cant turn on.
    so this is what happen
    one hour after jailbreak the battery was low.
    i was playing a game then it went completely black
    now it cant turn on at all.
    first i thought the battery died, but when i plugged it into my computer it wouldn't turn on. i drained the battery and that didnt work
    Putting it in DFU mode dotn work
    what else can i try to get my i pod sync to my computer.
    i tried 3 computers, re installing i tunes and used different usb cables
    im stuck! can anyone help me ?

    http://helpx.adobe.com/creative-cloud/help/install-apps.html#Download and install apps

  • Need help guys.. 10.5.5 update problem.

    Ok, so I was in class and decided to run the update on my computer because I had awhile to go before the end. The update downloads and everything just fine, then my computer restarts to finish the installation. The dialog box that comes up goes through "Installing files" until it gets to 100% then pauses for awhile. After about 5-10 minutes, the teacher says we can leave, so I did a hard shutdown because closing my MBP would have put it to sleep anyways.
    Now when I try to start my computer it takes awhile to get to the login screen. After I login, it stays on the pink/black leopard galaxy picture, and doesnt progress any further after that. Basically I'm stuck on that screen with a pointer that move around and that picture as my background. Anybody know what went wrong here.. or how I can attempt to fix it?
    Thanks in advance for any of your help.

    sdemo45 wrote:
    Ok, so I was in class and decided to run the update on my computer because I had awhile to go before the end. The update downloads and everything just fine, then my computer restarts to finish the installation. The dialog box that comes up goes through "Installing files" until it gets to 100% then pauses for awhile. After about 5-10 minutes, the teacher says we can leave, so I did a hard shutdown because closing my MBP would have put it to sleep anyways.
    that was the opposite of clever. you should have let it sleep then. interrupting an update like this is a sure way to fubar your system which is what you have done.
    If you have a backup, restore your system from backup and reinstall 10.5.5. if you don't have a backup do an [archive and install|http://support.apple.com/kb/HT1710?viewlocale=en_US] and reinstall all system updates.

  • Need help guys.

    I have a Hitachi DZ-MV780A mini dv recorder. I want to download my videos to my computer and put them on myspace but for some reason my computer doesn't even recognize the camera and I'm using the firewire cord which came with the camera. Any ideas?

    Hello,
    Perhaps I have the wrong info, but the model listed seems to record to DVD, not mini-DV.
    http://reviews.cnet.com/digital-camcorders/hitachi-dzmv780a/4507-6500_7-31396051 .html
    And I don't see where that model has a Firewire port. Indeed, if it isn't mini-DV it doesn't need on since there is no "streaming" video. If your camcorder does indeed record to DVD, then you need to convert the DVD (which is in the MPEG2 format) to something iMovie/iDVD will recognize. This might do the trick (I have never used it):
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Mike

  • I still need help guys ... cannot sync....

    i understand that when i plug my ipod into the usb it is ment to come up with '''' do you want to sync your ipod'''''' THIS DOESNT HAPPEN NOTHING ABOUT SYNCING APPEARS  ALL THAT IT SAYS IS ''' DO YOU WANT TO IMPORT PICTURES FROM YOUR IPOD ''''                     PLEASE ANY IDEAS ........

    If the iPod does not appear in iTunes then:
    iOS: Device not recognized in iTunes for Windows
    To sync:
    iTunes 11 for Windows: Syncing overview\
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad

  • Deactivate old phone? I need help guys

    I got my iphone and I activated over itunes...It is stuck on the verizon accept terms page and wont go anywhere but my iphone said "activated" after that. I called *228 and activated it. Is my old phone now deactivated?  dont get ths

    All you have to do is power off your old phone before activating your new one.

  • Would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

Maybe you are looking for

  • Listing all fonts used in a document?

       As I understand it, TextFonts is a collection of all fonts available to Illustraot.  Is there a collection of all fonts used in the open document?  Or would I have to step through every textFrame an create that list myself?

  • SQL Developer 3.2.09 (Build MAIN-09.23) Disconnected Worksheet bug

    If you disconnect from a database, the SQL Worksheet that was using that connection loses its connection as shown in the drop-down at the top-right. (ok) If you then click on the drop-down to re-connect, you can choose a database and a modal popup ap

  • Sync time duration

    Hi, I have a question concerning the sync time. Our current application uses 5 (developed) SyncBOs, each sync we have all in all about 500 records that are moved splitted on these syncbos. Currently a sync action takes about 1min which seems quite lo

  • Org.flexunit.listeners.UIListener not found, and other problems

    I have a basic setup of FlexUnit that comes with the latest FlashBulider. I import a bunch of SWC's in my project and try to follow instructions from here: http://docs.flexunit.org/index.php?title=Setting_up_a_FlexUnit_4_Project I got an error saying

  • RMBP - high frequency/power noise when doing file operations?

    Hi, I noticed today that my new rMBP is emitting some strange high pitched noise, especially when doing heavy files operations like spotlight indexing or startup of the computer. It's louder and more prominent when I connect the AC adapter. It sounds