I disconnected my Wireless Keyboard from my Mac and I am logged out! Please help?

So, I was trying to test out the Wireless Keyboard for my iPad, so I disconnected it from the computer and logged out. So now I am logged out and I can't even log in without my keyboard! What should I do? I have another keyboard in the house that works via USB, should I use it?

Hi
I have the same problem. Did you use the USB keyboard and works? Did you log in again?
Youd answer will be very helpful to me!

Similar Messages

  • Access wireless pc from a Mac - and both to internet

    From home, I need to access my web server at work through my new pc laptop. But, I want to use my G5 iMac's big screen. I'm aware of MS Remote Desktop which allows me to access my pc from my iMac. But, I'm not sure how to set everything up so that I can
    - Use the same internet connection (yahoo/pacbell) for both the pc and the mac.
    - Use my pc laptop from the patio about 15-20 feet from my mac and internet connection/box.
    Do I need Airport? Use Bluetooth? Network the two computers? Can I use the same internet connection to call up the pc from my mac using MS Remote Desktop, and if so, how do I at the same time access keep my pc laptop? wireless? (Yes, I'm pretty ignorant about this.) Use Windows XP/ OS X 10.4.9
    P.S. My employer only supports pc's, not macs, and they purchased the pc laptop for me. So, getting a new Mac and using Bootcamp was not an option. And Bootcamp doesn't work on my current G5 mac. I must connect to the web server with a pc because I have to map a drive from a pc to access the web server -- they've set it up so that we cannot access the server through a Mac without using Bootcamp and Windows.

    You haven't mentioned that you have a router, which you'll need first to connect both your Windows and Mac computers to the Internet at the same time.
    Next, you need to work with your employer to get your Windows laptop connected to your server. He most likely has a router on his end, which means your server is not directly connected to the Internet for you to access. He will have to "port forward" port number 3389 to the server. This will direct all incoming RDC traffic to your server so that you can connect. (NOTE: Remote Web Workspace, aka RWW, will not work with Macs.)
    These are the two basic things you need to do. Your setup may require more steps.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.9)  

  • Create a table from another table and add constraint statement. Please help

    Previously, I post a question and it works as below:
    create table my_table
    PCTFREE 10 PCTUSED 0 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE
    INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT
    TABLESPACE TAB_DATA
    as select t1, t5, t2, t3, t4 from orig_table;
    I have been trying to use the same strategy as I post earlier, but it doesn't work.
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    Below iis my SQL statement, but it doesn't work. Please help.
    create table my_table
    CONSTRAINT "MY_TEMP" UNIQUE ("ID", "SNAME", "CNAME", "TIME", "SYSTEM_ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TAB_DATA" ENABLE
    CLUSTER MY_CLUSTER
    "CNAME"
    as (select t1, t5, t2, t3, t4 from orig_table;

    Hi,
    Why do you need to combine the two action togather. You can get the things done in two steps.
    Create table tab1 as select * from tab2;
    Then you create any contraint that you want to create on tab2 using 'alter table add constraint'.
    Regards

  • TS3999 HELP my work calender has vanished from the icloud and i cant find it PLEASE HELP I AM DESPERATE!

    HELP! I have my calender on my iphone saved and updated on the icloud, today it has vanished!!!!!!!!!!!!!!
    No idea how or why, please help!

    Go to settings>icloud and turn off calendars.  Then turn on again.  That might bring them back.
    If not, test the account by using a browser to log into icloud.com and go to the calendar page.  If not there, then for whatever reason, they're gone.  You might try performing a restore from an icloud backup, if you have that turned on.

  • Hi everyone, i recently bought a mac book pro and tried using the facetime app on it, but unfortunately i am not able to log onto it from my mac and able to log onto my id from a different mac, ipad2, iphone. My mac is giving me problems only for my id

    please send me how to use my macbook for facetime. Thanks.

    If your machine came with Lion preinstalled, you cannot use it on another machine. It is tied to the machine it came with. You are allowed to make a one time transfer of the OS when you sell the machine as long as it remains with that machine.
    If you purchase Lion from the app store, you are free to install it on as many Macs as you own - however, if/when you sell one of those Macs, you are required to uninstall Lion as the license is not transferable and you need to reinstall the original OS.
    You can read the SLA for yourself - the link to the downloads to all licenses is here:
    http://www.apple.com/legal/sla/

  • How to Read from two file and write to another file --Please help !!

    Hi all,
    Please suggest me where i'm goin goin wrng.
    I have 2 flat files. one of them is the main file(Ann.dat) has a about 150,000 lines (each line has unique ID from 00001 to 45000) of data and the the other(Miss.dat) has a just a list of IDs that are no longer in use & have to be deleted from the first file(NewAnn.dat). (Note that Ann.dat is a tab delimitted file and Miss.dat is just a list of all invalid IDs)
    Below is my code. It doesn't do what I'm supposed to. Please suggest me or help me with a code to do it. What I'm trying to do is read each of the lines from the 2 files compare the ID in ann.dat with all the IDs in Miss.dat & if it doesn't match with the ID in Miss.dat write the whole line to NewAnn.dat. And do the rest with all the lines in Ann.dat.
    It could be a real dumb question. since i'm not a software professional, I consider myself to be newbie to programming. I desperately need your help.
    import java.io.*;
    import java.util.*;
    public class anntemp{
         public static void main(String[] args)
              String keyAnn ="";
              String keyMis="";
              String recAnn =null;
              String recMis =null;
              try{               
              FileReader fr=new FileReader("C:\\Tom\\Ann.dat");
              BufferedReader br=new BufferedReader(fr);
              int couter=0;
              while ((recAnn = br.readLine())!=null)
                   couter++;
                   keyAnn = recAnn.substring(0, recAnn.indexOf("\t"));
              FileReader fr1=new FileReader("C:\\Tom\\Miss.dat");
              BufferedReader br1=new BufferedReader(fr1);
              while((recMis = br1.readLine())!=null){
              keyMis = recMis.substring(0, recMis.indexOf("\t"));
                   if(keyAnn.equals(keyMis)){
         FileWriter fw=new FileWriter("C:\\Tom\\NewAnn.dat",true);
         BufferedWriter bw=new BufferedWriter(fw);
         PrintWriter pw=new PrintWriter(bw);
         StringBuffer writeValue = new StringBuffer();
         writeValue.append(recAnn);
                                                 pw.println(writeValue.toString());
         pw.flush();
              }catch (Exception expe){
                   System.out.println("In Exception ");
                   expe.printStackTrace();
    Thank you all in advance,
    br

    I think you need to close the files when you are done in the inner loop. Plus I think you'll be overwritting the file in the inner loop if more than one match. It might be easier to read the unused id file into a map at the start, and then loop up the id's from the master file in the map. You can put the unused id's in as the keys, and a Boolean.TRUE as the value (value won't matter). Then just check if the map contains the key for the id read from the master file. That should cut down on disk activity. This assumes the unused id file is smallish.

  • Is it possible to to disconnect 2 wireless clients from my wireless network without access to the clients i.e. 2 iPads?

    Is it possible to disconnect 2 wireless clients from my network if I do not have access to the clients? ie 2 iPads.

    You would have to set up Timed Access for each device.
    This consists of specifying the amount of time each day that wireless devices will be allowed to connect to the network. You must provide a MAC or hardware address for each device, which is a long code that might look something like this, for example......A1-B2-C3-D4-E5-F6....and then specify the hours each day that this device is allowed to connect to the wireless network.
    You have to do this for each device, which is tedious. Devices that are not on the Access List cannot connect to the network at any time.

  • Can I hook up a wireless keyboard to my mac mini 2005 running OS X 10.4.11? if so how?

    can I hook up a wireless keyboard to my mac mini 2005 running 10.4.11? If so how?

    The original Mac Mini does have Bluetooth, see > Mac mini (original) - Technical Specifications
    Of course it also depends on what wireless keyboard you mean...?
    For more on setting up an Apple wireless keyboard, see > Troubleshooting wireless mouse and keyboard issues
    For more buying and/or using a third party wireless keyboard with a USB dongle, google the manufactures web site for compatibility and set-up information.

  • Wireless music from my Mac OSx Leopard

    I have a newer MacBook Pro w/OSx 10.5. I'm trying to figure out if I can achieve wireless music from my Mac using Bluetooth or my wireless network? I don't want to plug anything into my usb ports or my network ports. I simply want to play music from my computer, the way it is. I know I'll have a unit to plug into my stereo, I just don't want to plug anything into my computer.
    I was reading about Stereo Bluetooth Profile (A2DP) on Mac OS X Tiger with Jack Audio, but I don't really understand if that will work, to play music to my stereo from my Mac.
    Any help would be appreciated....
    Thanks,
    Gary

    I'm thinking you've probably already considered this, but Apple's own AirPort router with AirTunes is an incredibly easy way to hook up your computer to your stereo with nothing but your wireless network (which, naturally, the router broadcasts).

  • Can i use my wireless keyboard from my iMac on the iPad?

    can i use my wireless keyboard from my iMac on the iPad?

    Bluetooth: How to set up your Apple Wireless Keyboard
    http://support.apple.com/kb/ht1809
    iOS: Apple Wireless Keyboard compatibility
    http://support.apple.com/kb/HT4112
     Cheers, Tom

  • Since upgrading to Mavericks my wireless keyboard keeps dropping. This stops me logging in! Can I fix this, or at least show the keyboard viewer to login?

    Since upgrading to Mavericks my wireless keyboard keeps dropping. This stops me logging in! And I find I cannot reconnect the keyboard without switching the computer off. Can I fix this, or at least show the keyboard viewer to login with instead?

    This is getting annoying!
    The computer goes to sleep. I can wake it by pressing a key on the wireless keyboard. It thinks for a while. It asks me for the password. I can't enter the password because during that time the keyboard has disconnected from the computer. I have no choice but to hard restart the computer.
    Any and all ideas welcome. Thanks in advance.

  • I got a new wireless connection for my mac and cannot figure out how to delete the last connection service I had. Everytime I shut the computer, the network goes back to the other one. I cannot find the file ANYWHERE

    got a new wireless connection for my mac and cannot figure out how to delete the last connection service I had. Everytime I shut the computer, the network goes back to the other one. I cannot find the file ANYWHERE

    Under Network Preferences, select the WiFi
    click on "Advanced..." button
    Select the network you want to delete from the list and click on "-"
    Click "Ok"
    Click "Apply"
    Well done ;-)
    You may also want to delete the wireless key from Keychain.
    Open Keychain, seach for the old wifi network name, slect it and click delete

  • Transferring keyboard shortcuts between Mac and Windows

    I need to migrate users from Mac (CS 5.5) to Windows 7 (CS 6). I have tried to transfer a user's custom keyboard shortcut set by copying the .indk file to the appropriate folder on the PC, and although it shows up in the list, when I try to select the set I get an error saying it is in the wrong format or the file could be damaged. Is there a way of transferring keyboard shortcuts between Mac and Windows?

    Shortcut sets seem to be human-readable text files, so you could try making a copy and doing some editing, changing cmd to ctrl and opt to alt, and change the platform value in the first line to "win" though I can't make any promise it will work.
    There are also some known problems trying to migrate legacy sets into newer versions of ID since CS5, I think.

  • Import photos without copying? I Have thousands of photos on a hard drive separate from my mac and i dont have enough space on my mac to copy them to. Any way to import without copying to the local hard drive?

    Import photos without copying? I Have thousands of photos on a hard drive separate from my mac and i dont have enough space on my mac to copy them to. Any way to import without copying to the local hard drive?

    Yes, but you might want to think carefully about it.
    A Referenced Library is when iPhoto is NOT copying the files into the iPhoto Library when importing. The files are then stored where ever you put them and not in the Library package. In this scenario you are responsible for the File Management.
    This is an attractive option for some users at face value, but it contains a significant number of issues that you might want to consider before making the decision to run a Referenced Library
    How to do it:
    iPhoto -> Preferences -> Advanced and uncheck the box at 'Copy items to the iPhoto Library'
    Now when you import iPhoto makes an alias in the Library Package that points to the stored file. Note: iPhoto still creates a thumbnail of the image and it makes a Preview of edited photos inside the Library Package.
    Issues?
    1. You are responsible for file management. That's more work:
    You must first move the files from your camera to the storage location before importing.
    If you want to delete files then you must first trash them from iPhoto and then afterwards find them in your storage and trash them.
    Thereafter, you cannot move the files on early versions of iPhoto at all, on iPhoto 08 and later you may move them on the same Volume or Disk. If you move them to a new volume or disk the aliases my break. If they are on an different volume and you move them the aliases will break.
    You cannot rename the files.
    Migrating: moving to a new machine, moving the files to another disk are all a lot more complex.
    2. You gain no extra functionality from running a Referenced Library. Nothing. This is just storage. You still manage the files via iPhoto. You edit them with iPhoto or via iPhoto's External Editor setting, otherwise you're changes will not be available in iPhoto. You don't save  byte of storage space.
    3.  If you have the Library on one volume and the photos on another you if anything changes in the path to a file (Like if you upgrade your machine, move the files on the NAS or on to another one?) then the alias will break, and you'll have to repair it manually. For every photo in the Library. One at a time.
    Why do you want to run a Referenced Library?
    Because my photos won't fit on my HD?
    You can run a Managed library from an external disk. Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    You're worried about accessing the files?
    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • I migrated a user from another mac and cant get any updates to install!

    Hi
    I migrated a user from another mac and cant get any updates to install, for example it says iPhoto is intalled but its not, i never copied it from the older imac, and i cant download it to this one now
    any help appreciated

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

Maybe you are looking for