Please help ... new to JAVA

Hi All,
I know this is stupid question. But I need help in learning Java. I have keen to learn this language. But I dont know how to approach this situation. You guys are expert please tell me which books will help me out and what is the best way to learn this langauge. I always get confused about so many pacakages in java.. Please help me.
Thanx

u need to study java books like thinking in java, java completer reference and Orelly books for java. They give more knowledge about java basics and then u can learn urself to the new technologies of java

Similar Messages

  • PLz Help New To Java

    Hey im brand new to java and i just downloaded and installed jdk-1_5_0_01-windows-i586-p now im tryin to set up the PATH permanently but i have no clue how to i went to the install notes and typed in C:\Program Files\Java\jdk1.5.0_<windows>\bin in the command.com but everytime i do it says access is denied. i have no clue how to set up the path permanently beside what i tried plz help!!!

    You didn't which OS you are running, but it's fairly similar for all windows.
    Start->settings->control panel->system->advanced->environment variables
    Go to System variables, click on path, click edit button and add a semicolon and the path at the end. DO NOT REPLACE EVERYTHING THAT'S THERE NOW.
    I don't have 1.5 installed on this computer, but I'm willing to bet the real path doesn't have '<windows>' in it. Use Windows Explorer to find out where java.exe actually exists on the hard disk and use that path

  • Please help C++ into java.

    Hello,
    I am working one small swing program. And want to know about c++ code. Can any one tell me that can we convert the c++ code into java code. My c++ code is:
    void Activity::computeInternalStructure(Rules& r)
         //the internal subgroups list must be computed before entering here.
         //teachers
         //this->nTeachers=0;
         this->iTeachersList.clear();
         for(QStringList::Iterator it=this->teachersNames.begin(); it!=this->teachersNames.end(); it++){
              int tmp;
              for(tmp=0; tmp<r.nInternalTeachers; tmp++){
                   if(r.internalTeachersList[tmp]->name == (*it))
                        break;
              assert(tmp < r.nInternalTeachers);
              //assert(this->nTeachers<MAX_TEACHERS_PER_ACTIVITY);
              //this->teachers[this->nTeachers++]=tmp;
              this->iTeachersList.append(tmp);
         //subjects
         this->subjectIndex = r.searchSubject(this->subjectName);
         assert(this->subjectIndex>=0);
         //activity tags
         this->iActivityTagsSet.clear();
         foreach(QString tag, this->activityTagsNames)
              assert(tag!="");
              int index=r.searchActivityTag(tag);
              assert(index>=0);
              this->iActivityTagsSet.insert(index);
         //this->activityTagIndex = r.searchActivityTag(this->activityTagName);
         //students     
         //this->nSubgroups=0;
         this->iSubgroupsList.clear();
         for(QStringList::Iterator it=this->studentsNames.begin(); it!=this->studentsNames.end(); it++){
              StudentsSet* ss=r.searchAugmentedStudentsSet(*it);
              assert(ss);
              if(ss->type==STUDENTS_SUBGROUP){
                   int tmp;
                   /*for(tmp=0; tmp<r.nInternalSubgroups; tmp++)
                        if(r.internalSubgroupsList[tmp]->name == ss->name)
                             break;*/
                   tmp=((StudentsSubgroup*)ss)->indexInInternalSubgroupsList;
                   assert(tmp>=0);
                   assert(tmp<r.nInternalSubgroups);
                   //assert(this->nSubgroups<MAX_SUBGROUPS_PER_ACTIVITY);
                   bool duplicate=false;
                   if(this->iSubgroupsList.contains(tmp))
                   //for(int j=0; j<this->nSubgroups; j++)
                   //     if(this->subgroups[j]==tmp)
                             duplicate=true;
                   if(duplicate){
                        QString s;
                        s=QObject::tr(QString("Warning: activity with id=%1\ncontains duplicated subgroups. Automatically correcting..."))
                             .arg(this->id);               
                        cout<<qPrintable(s)<<endl;
                   else
                        this->iSubgroupsList.append(tmp);
                        //this->subgroups[this->nSubgroups++]=tmp;
              else if(ss->type==STUDENTS_GROUP){
                   StudentsGroup* stg=(StudentsGroup*)ss;
                   for(int k=0; k<stg->subgroupsList.size(); k++){
                        StudentsSubgroup* sts=stg->subgroupsList[k];
                        int tmp;
                        /*for(tmp=0; tmp<r.nInternalSubgroups; tmp++)
                             if(r.internalSubgroupsList[tmp]->name == sts->name)
                                  break;*/
                        tmp=sts->indexInInternalSubgroupsList;
                        assert(tmp>=0);
                        assert(tmp<r.nInternalSubgroups);
                        //assert(this->nSubgroups<MAX_SUBGROUPS_PER_ACTIVITY);
                        bool duplicate=false;
                        if(this->iSubgroupsList.contains(tmp))
                        //for(int j=0; j<this->nSubgroups; j++)
                        //     if(this->subgroups[j]==tmp)
                                  duplicate=true;
                        if(duplicate){
                             QString s;
                             s=QObject::tr(QString("Warning: activity with id=%1\ncontains duplicated subgroups. Automatically correcting..."))
                                  .arg(this->id);
                             cout<<qPrintable(s)<<endl;
                        else
                             //this->subgroups[this->nSubgroups++]=tmp;
                             this->iSubgroupsList.append(tmp);
              else if(ss->type==STUDENTS_YEAR){
                   StudentsYear* sty=(StudentsYear*)ss;
                   for(int k=0; k<sty->groupsList.size(); k++){
                        StudentsGroup* stg=sty->groupsList[k];
                        for(int l=0; l<stg->subgroupsList.size(); l++){
                             StudentsSubgroup* sts=stg->subgroupsList[l];
                             int tmp;
                             /*for(tmp=0; tmp<r.nInternalSubgroups; tmp++)
                                  if(r.internalSubgroupsList[tmp]->name == sts->name)
                                       break;*/
                             tmp=sts->indexInInternalSubgroupsList;
                             assert(tmp>=0);
                             assert(tmp<r.nInternalSubgroups);
                             //assert(this->nSubgroups<MAX_SUBGROUPS_PER_ACTIVITY);
                             bool duplicate=false;
                             if(this->iSubgroupsList.contains(tmp))
                             //for(int j=0; j<this->nSubgroups; j++)
                             //     if(this->subgroups[j]==tmp)
                                       duplicate=true;
                             if(duplicate){
                                  QString s;
                                  s=QObject::tr(QString("Warning: activity with id=%1\ncontains duplicated subgroups. Automatically correcting..."))
                                       .arg(this->id);
                                  QObject::tr("&Ok"));
                                  cout<<qPrintable(s)<<endl;
                             else{
                                  //this->subgroups[this->nSubgroups++]=tmp;
                                  this->iSubgroupsList.append(tmp);
              else
                   assert(0);
    }Please help me. In this code we are using some variables. with QT GUI in c++.
    Thanks in advance.
    Manveer.

    Manveer-Singh wrote:
    Hello,
    I am working one small swing program. And want to know about c++ code. Can any one tell me that can we convert the c++ code into java code. My c++ code is:
    void Activity::computeInternalStructure(Rules& r)
         //the internal subgroups list must be computed before entering here.
         //teachers
         //this->nTeachers=0;
         this->iTeachersList.clear();
         for(QStringList::Iterator it=this->teachersNames.begin(); it!=this->teachersNames.end(); it++){
              int tmp;
              for(tmp=0; tmp<r.nInternalTeachers; tmp++){
                   if(r.internalTeachersList[tmp]->name == (*it))
                        break;
              assert(tmp < r.nInternalTeachers);
              //assert(this->nTeachers<MAX_TEACHERS_PER_ACTIVITY);
              //this->teachers[this->nTeachers++]=tmp;
              this->iTeachersList.append(tmp);
         //subjects
         this->subjectIndex = r.searchSubject(this->subjectName);
         assert(this->subjectIndex>=0);
         //activity tags
         this->iActivityTagsSet.clear();
         foreach(QString tag, this->activityTagsNames)
              assert(tag!="");
              int index=r.searchActivityTag(tag);
              assert(index>=0);
              this->iActivityTagsSet.insert(index);
         //this->activityTagIndex = r.searchActivityTag(this->activityTagName);
         //students     
         //this->nSubgroups=0;
         this->iSubgroupsList.clear();
         for(QStringList::Iterator it=this->studentsNames.begin(); it!=this->studentsNames.end(); it++){
              StudentsSet* ss=r.searchAugmentedStudentsSet(*it);
              assert(ss);
              if(ss->type==STUDENTS_SUBGROUP){
                   int tmp;
                   /*for(tmp=0; tmp<r.nInternalSubgroups; tmp++)
                        if(r.internalSubgroupsList[tmp]->name == ss->name)
                             break;*/
                   tmp=((StudentsSubgroup*)ss)->indexInInternalSubgroupsList;
                   assert(tmp>=0);
                   assert(tmp<r.nInternalSubgroups);
                   //assert(this->nSubgroups<MAX_SUBGROUPS_PER_ACTIVITY);
                   bool duplicate=false;
                   if(this->iSubgroupsList.contains(tmp))
                   //for(int j=0; j<this->nSubgroups; j++)
                   //     if(this->subgroups[j]==tmp)
                             duplicate=true;
                   if(duplicate){
                        QString s;
                        s=QObject::tr(QString("Warning: activity with id=%1\ncontains duplicated subgroups. Automatically correcting..."))
                             .arg(this->id);               
                        cout<<qPrintable(s)<<endl;
                   else
                        this->iSubgroupsList.append(tmp);
                        //this->subgroups[this->nSubgroups++]=tmp;
              else if(ss->type==STUDENTS_GROUP){
                   StudentsGroup* stg=(StudentsGroup*)ss;
                   for(int k=0; k<stg->subgroupsList.size(); k++){
                        StudentsSubgroup* sts=stg->subgroupsList[k];
                        int tmp;
                        /*for(tmp=0; tmp<r.nInternalSubgroups; tmp++)
                             if(r.internalSubgroupsList[tmp]->name == sts->name)
                                  break;*/
                        tmp=sts->indexInInternalSubgroupsList;
                        assert(tmp>=0);
                        assert(tmp<r.nInternalSubgroups);
                        //assert(this->nSubgroups<MAX_SUBGROUPS_PER_ACTIVITY);
                        bool duplicate=false;
                        if(this->iSubgroupsList.contains(tmp))
                        //for(int j=0; j<this->nSubgroups; j++)
                        //     if(this->subgroups[j]==tmp)
                                  duplicate=true;
                        if(duplicate){
                             QString s;
                             s=QObject::tr(QString("Warning: activity with id=%1\ncontains duplicated subgroups. Automatically correcting..."))
                                  .arg(this->id);
                             cout<<qPrintable(s)<<endl;
                        else
                             //this->subgroups[this->nSubgroups++]=tmp;
                             this->iSubgroupsList.append(tmp);
              else if(ss->type==STUDENTS_YEAR){
                   StudentsYear* sty=(StudentsYear*)ss;
                   for(int k=0; k<sty->groupsList.size(); k++){
                        StudentsGroup* stg=sty->groupsList[k];
                        for(int l=0; l<stg->subgroupsList.size(); l++){
                             StudentsSubgroup* sts=stg->subgroupsList[l];
                             int tmp;
                             /*for(tmp=0; tmp<r.nInternalSubgroups; tmp++)
                                  if(r.internalSubgroupsList[tmp]->name == sts->name)
                                       break;*/
                             tmp=sts->indexInInternalSubgroupsList;
                             assert(tmp>=0);
                             assert(tmp<r.nInternalSubgroups);
                             //assert(this->nSubgroups<MAX_SUBGROUPS_PER_ACTIVITY);
                             bool duplicate=false;
                             if(this->iSubgroupsList.contains(tmp))
                             //for(int j=0; j<this->nSubgroups; j++)
                             //     if(this->subgroups[j]==tmp)
                                       duplicate=true;
                             if(duplicate){
                                  QString s;
                                  s=QObject::tr(QString("Warning: activity with id=%1\ncontains duplicated subgroups. Automatically correcting..."))
                                       .arg(this->id);
                                  QObject::tr("&Ok"));
                                  cout<<qPrintable(s)<<endl;
                             else{
                                  //this->subgroups[this->nSubgroups++]=tmp;
                                  this->iSubgroupsList.append(tmp);
              else
                   assert(0);
    }Please help me. In this code we are using some variables. with QT GUI in c++.
    Thanks in advance.
    Manveer.why do you say this?
    My c++ code is:and
    In this code we are using some variables. with QT GUI in c++. You didn't code that. Liviu Lalescu code that, not you.
    He has rights on that code and he published it under gpl.
    So you must say that it is from him, not from you.
    Also if you "translate" (modify) his algorithm you must still care about the gpl. Please read whole gpl and care about that.
    Regards,
    Volker Dirr
    PS:
    compare original code from Liviu at sourceforge or at his homepage:
    http://lalescu.ro/liviu/fet/
    you can see the copied copy in /src/engine/activity.cpp line 167 and following.

  • Please help new mac user is getting super frusturated with mail

    I am trying to send a peice of mail to one of my friends but when i click send it says:The SMTP server “smtp.mac.com” rejected the password for user “PierceP”
    Please re-enter your password, or cancel. But i type in my password and nothing changes. I even went into my preferences and changed the password but it still will not allow me to send mail. PLease help
    Pierce

    Hi again. It seems like there is information people are looking for to help you that they don't have. It occurs to me that you have a new Mac and you perhaps have an Apple Store with a Genius Bar in your area. A great experience for you might be to visit one and let them setup your mail for you (for free) and debug, if there is a problem of any sort. You can make an advanced reservation at Apple Stores at http://www.apple.com/buy/. Select the nearest store and make reservation. If you haven't been in an Apple Store, you're in for a treat.

  • Please help me with java packages...

    Hey guys,
    Im pretty new to java and I have some questions on packages.
    My friend gave me a bunch of .java files. Now, each of the files has package edu.nyu.sejava.gc.util; as the beginning.
    I know that the package name = directory structure but Im not sure on other things.
    Do I have to put all of the .class files in a directory
    C:\edu\nyu\sejava\gc\util? Is there a specific way I need to compile the files?
    I compiled the files with 'javac -d c:\classes *.java' and the class files were put in a dir C:\classes\edu\nyu\sejava\gc\util. However, when I try to run one of them, I get
    C:\classes\edu\nyu\sejava\gc\util>java LogTest
    Exception in thread "main" java.lang.NoClassDefFoundError: LogTest (wrong name: edu/nyu/sejava/gc/util/Log)
    Im confused. Why doesnt it see my class def for LogTest?
    Any help is greatly appreciated. :)
    Thanx
    Flack

    Run the class using the full name. e.g.
    java edu.nyu.sejava.gc.util.LogTest
    Make sure the classpath includes c:/classes and/or the current directory.

  • Please help - New to Mac - File managment.. moving files, folders, deleting

    Hello, I am hoping someone can help me...
    I have just got one of the 24" iMacs at work and I have never worked on Mac before. I am having problems with documents/files.
    I have made new folders in my "documents" folder but I cannot move/drag files into the folders. I also cant delete files from the documents folder.
    I have spent the last 4 hours reading tutorials etc and still can't figure this out. I am guessing it's probably simple... but I just can't seem to find the answer.
    PLEASE HELP!!!!!!

    There are two documents folders. One shared among all user and a personal documents folder.
    To get to the system folder you double click on the machintosh hd. You will see the system documents folder here. If you are not logged on with system administrator privileges, the files will be read only. To tell if you have administrator privileges, do:
    apple icon > system preferences > accounts
    click on your account and see if the allow user to administer this computer box is checked.
    One way get your person documents folder, you double click on the machintosh hd. Next, click on the little house icon on the lower left side of the screen. This will get to all your personal files and folders. One of the folders is your documents folder.
    I agree with the prior poster to find someone who has worked with the mac before to give you a quick tutorial.
    I suggest you visit the local library or book store and checkout or buy a book on using Mac OS Tiger.
    Robert

  • Please help new iPod touch won't sync

    I've spent the last 3 nights on the phone with apple support trying to get past step 5 of 5 on iPod touch sync..,,I've given up support can't fix it what am I suppose to do? After all failed attempts the solution must be defective ipod I didn't think it was but I took it back got new one now it's doing same thing please please anyone please help me my old ipod works great as well as my iphone ipad I'm at wits end with this?? The only music I have is them ones is bought in iTunes my library gets to step 5 of 5 and won't finish them cancels sync

    See if this previous discussion helps
    https://discussions.apple.com/thread/5468491?tstart=0

  • Please Help - New Ipod

    Hi,
    I got an ipod with 30gb for Christmas - it came pre-loaded with 100 songs from the person who gave it to me. They created a playlist of all my favorite songs... which I love!!! However - when I come to hook it up to my pc/itunes it keeps asking me to delete everything on my ipod in order to put new songs on it... What do I do?????
    Please Help!
    Dell Inspiron   Windows XP  

    Well, this is just guess but iPods are very ,uhm, protective about who can use what music, etc. Your fiend synched the pod to his/her computer to load the music that is what is causing the issue. I'd ask said friend to burn you a DVD of the playlist in question (not a back-up), wipe your pod on your computer, load the DVD ,and reinstall the music on to the pod via your computer. Hope that helps.
    Cheers,
    Chris
    P.S. I say DVD because to get everything to work the music will be in AIFF format which takes up a lot of room. You could also break the play lists into more manageable sized chunks and use regualr CD's.
    1.4 GHz Sonnet "digital audio",1.5 GB RAM, 500 GB SATA HD Mac OS X (10.4.8) Pioneer DVR-111D,FirmTek SeriTek 1V4, BFG 6800 GT oc, 30GB 5G video iPod

  • Please Help New version of Itunes 6.4 don't open.

    Hi , today I decided to download quicktime with the new version of apple itunes on apple.com and since I downloaded that and upgraded my itunes is not opening anymore on my desktop.
    There are absolutely no error messages it just don't open the program does not load.
    I have tried reinstalling , deleting quicktime and redownloading another version of itunes and it still don't open. I never had troubles like that.
    I am on Windows XP.
    Any ideas ?
    Please help thank you.
      Windows XP  

    just checking something...does Quicktime open? Double check to make sure it is there, because iTunes cannot open without Quicktime. If not, DL a standalone version of Quicktime:
    http://www.apple.com/quicktime/download/standalone.html
    Also, what antivirus and spyware programs do you run on your Box? Some of them interfere with iTunes and Quicktime and cause it not to download properly. Post back and we will get it up and going.
    Rachyl

  • Please help new to macs and my recently purchased power mac keeps freezing :-(

    Hi apple community!
    I recently purchased a power mac g5
    Specs;
    G5 power mac dual core (2.0)
    Power pc 970 mp
    Late 2005
    I don't have an apple mouse/keyboard
    I just use $40 wireless mouse keyboard.
    Upon purchase everything seemed to work as it should....booted up, open and closing apps without freezing.
    However I never had it connected to the Internet when I navigated through system.
    I got it home and installed a 1 tb harddrive (WD mainstream desktop) from future shop. When I installed it in tower I had to buy a sata 2.0 cable as there was not one available for use. Booted up fine and installation went as my research said it should. Turned it on next day....
    Tried to update iTunes and this is where it started actin up. First just froze had to turn off, second time wouldn't even boot up plus fans went into overdrive. Third forth fifth sixth boots fans sometimes kick in, now whenever I try to do any kind of action it freezes. (Only when I click something)
    I read about possible power suppy issue, so I plugged tower and monitor into seperAte plugs,
    They may however be in same circuit because they at in the same wall...would a power conditioner fix this?
    Anyway still froze on any action tried...just opened disk drive...opened then frooze...?
    Anybody have any ideas??
    Please help
    Not sure if this is correct OS ( looked up using serial #)
    Max operating system OSX 10.5.8 leaporad
    Earliest supported OSX version ; 10.4.2 tiger.

    Sorry for the late reply. I want to thank you for taking the time to help me.
    Not sure exactally where I could get something like this your speaking of.
    Update; I have removed the harddrive and will most
    Likely just use an external one, if the computer will even work.
    I ended up taking it in to geeksquad at best buy, they had it for 3 days and also told me after the fact that neither of the techs working on it knew much about macs :-( needless to say I requested my
    Money back due to the fact that the service I paid for could not be completed and literally couldn't tell me anything more than what's below.
    They told me that they could not dock it with thier diagnostic machine, kept restarting on them and the one fella said it was overheating but had no idea why. When I brought it home again I tried it once more computer boots up to desktop as usual, this time had a asterisk window saying " the computer was restarted after mac OSX quit unexpectedly" however my cursor was again locked in the top left of the screen. Would not move, so I could not view the report, shortly after fans kicked into overdrive. I'm losing hope for this machine rapidly. I'm all ears when it comes to anything I may be able to do.
    Should I try an actual apple keyboard/mouse just to eliminate that possible?
    If you have ideas AWSOME, If not, no worries, ill take it into the mac store and see what they say
    P.s the machine is clean inside little to no dust and the tech said he was going to clean it out, hard to tell if he did because it was clean clean before I brought it to him.
    Thanks again for the help you have given me so far and in the future
    I look forward to hearing back
    Sincerally
    Al

  • PLEASE HELP, new error when I try to sync my iPod!!!

    The past two times I've tried to sync my iPod nano (4th gen.), a message comes up saying "The iPod, 'Emily's iPod', cannot be synced. An unknown error occured (-48)." Though it seems that my iPod is still being synced, this message pops up three times throughout the process & the songs don't appear on my iPod.
    I really don't want to have to lose all my songs & start iTunes all over again! Can someone please help?

    You might want to reset that ipod, if still getting error 48 then try a restore or a different USB port.
    That worked for this person:
    http://discussions.apple.com/thread.jspa?messageID=7852037

  • Please help new to mac what monitor do i buy

    hi i know this has been on here before but please help
    so what monitor do i buy?
    not the apple thats why i bought a mini mac lack of ££
    so i would like a 19" or 20" monitor
    realy not fussed about tv
    will just be using it as my first venture itto the world of mac
    thanks
    malc
    1.83GHz Intel Core 2 Duo
    1GB memory
    80GB hard drive

    Hi Malcs,
    Don't know if you're in the U.K. but PC World are doing a good deal on the HP w2207h - £199.
    Just bought one for my Mac Mini and am extremely pleased with it - worked straight out of the box at its 1680 x 1050 resolution, it's very clear, at least to my ancient eyes, and the colours are superb and it comes with several presets i.e Movie; Photo; Gaming; Text and custom. It also comes on a stand that is height adjustable and tilts & swivels you can even turn it to portrait mode should that be your thing.
    On top of that it also looks visually superb, to me at least, seems extremely well made and the on/off button is located on the top edge, unlike a lot of monitors, so you don't get the blue 'on light' staring you in the face all the time.
    As I stated earlier, couldn't be more happy with my purchase, and I initially went to PC World to compare the LG and the Samsung.

  • Formatted Harddrive and carnt get os x on it Macbook air PLEASE HELP new to mac!!

    I have purchsed a second hand Macbook Air think its 2008/2009 model with Windows 8 that was on it no other operating system on it!!!
    However i have formatted the harddrive and tried to get os x lion installed on it having no luck at all need help! i have come arcross a circle with a line threw it.
    Please help me get os x installed on it!!!
    Thanks
    Adam

    Does this Mac meet v10.7 Lion requirements >  System requirements for OS X Lion
    How To Perform a Clean Install of OS X Lion on Your Mac

  • PLEASE HELP NEW IPOD IN TROUBLE

    i had no trouble uploading songs or videos, but all of a sudden my music stopped playing and i couldn't do anything to fix this. i didn't drop the ipod or anything, the files show up, games work,everthyings there but the timer on the song stands still and no song will play. this ipod was only 4 days old? whats going on please help! it'n not paused either, the osngs just don't play!

    Yehlena,
    I am glad we could help, but your not done yet;) I think you should award King the solved points for informing you about the restoring feature.
    One of the responsibilities of the original poster (sometimes referred to as OP) is to award points to the "solver" as well as the most helpful. The reason being, not only does it show how the problem was fixed, but it 5-10 points (depending on helpful or solved) to those who helped the most. I like to think of it as paying them back with Monopoly money. It doesn't count anywhere else, but here. The reason for these points (I believe) is to show a rough estimate someone has been helpful as well as reduce the number of slipshod responses (the idea that someone will put the extra effort to try solve/help the problem). It has become proper etiquette when posting in the forums to issue these post (my opinion). I am not an Apple host/moderator, nor do I have any authority/say in this forum. I am "just another brick in the wall". It's up to you; I just thought it was something worth mentioning.
    Thanks,
    Jon
    Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • PLEASE HELP- NEW PHONE (THREE DAYS OLD) MESSAGE IS...

    I HAVE A NOKIA N8 WHICH ARRIVED A FEW DAYS AGO. I RECIEVED A MESSAGE TODAY WHICH HAD A RED STAR IN THE CORNER. It THEN WOULD NOT LET ME SEND A REPLY OR ACCESS OTHER MESSAGES TO REPLY TO. I COULD RING THEM BUT COULD NOT TEXT THEM.
    PLEASE HELP.
    THANKS

    You are right in time to write to Santa

  • Please help, new blackberry data transfer

    I had to replace my Blackberry, and do not have the old one. I would regularly sync my old Blackberry and can view the contacts in Outlook, but don't know how to get them onto my Blackberry. PLEASE HELP.

    I'm still very much a novice on a BB, after having used Palm products for years. But if I were you, I'd check to see if your desktop manager is the same version as your device - if not it can be downloaded. At that point syncing w/ your desktop ought to transfer the data if your syncronization is configured correctly. I hope this at least gets you started
    Phil

Maybe you are looking for