I need help. I need a KVM to switch between my Mac Pro and my IBM ThinkPad (docking station).

I need help.  I need a KVM to switch between my Mac Pro and my IBM ThinkPad (docking station). 
Best Buy (only local option) has only a VGA / USB from iogear that scroll lock doesn't work on the Mac and low and behold I'm a d.a. and didn't notice VGA, ie:  want/need DVI. 
I don't game on my Mac or do high-end video editing but don't want to step down the video quality too much.
Appreciate all of the forthcoming advice. 
Jason

I guess I should have clarified and said "can you please share what you've used and been successful with"
Two that I have been considering are:
ConnectPRO
http://www.connectpro.com/prod_kvm_usb12plusDvi.html
IOGear
http://www.iogear.com/solutions/kvm/?view=displayDVI
If you do the Belkin KVM wizard, as soon as you reference a Mac, they only support VGA and I am not sure why.  http://www.belkin.com/kvm/
Thanks for the effort.
Jason

Similar Messages

  • Need help with graphics card options for an early 2008 mac pro

    Hello,
       I have an early 2008 mac pro with 2 x 3.2 GHz quad core Intel Xeon and 6Gigs of ram, currently running with an Nvidia Geforce 8800 GT with 512mb.
        It is also running 10.7.2.
       I would like to either add a video card on top of the one I am currently running or replace it completely if necessary.
       I do video editing on the Mac, no gaming and only a small amount of photoshop, and as the resolutions get larger I would like to have my machine keep up.
       My questions are,
         1. What cards would you the community suggest?
         2. Can I add a whole other card to my system or do I have to replace the current one?
         3. If I can hold two cards what special accomidations would be needed in regards to final cut performance if any?
        Thank you for any help you would like to give.
      Rob

    The two main cards for mac pros are the apple versions of the  ATI Radeon 5770 and 5870.
    The 5770 requires one aux power adaptor and the 5870 requires two.  So generally you could only have one 5780 or two 5770's.
    Video cards which don't require aux power should be able to coexist with these cards so log as it's all within the power supply maximums of course.

  • Is it possible to run dual display monitors on a KVM switch between my mac mini and a PC desktop?

    I have two 23" monitors utilizing DVI that I currently have plugged into my PC desktop.  I'd like to purchase the mac mini and utilize the same monitors for both systems and switch back and forth between the two.  So, I'm wondering if it's possible.  The only two hangups I can anticipate is dual display capability on the mini (I expect that some adapter will be necessary), keyboard compatibility between the two systems, and finding a switch that will handle all the above.  Any help would be greatly appreciated!!!!

    I think this video could help you
    http://www.youtube.com/watch?v=IYoC2teAbmE
    Other question is the switch box, You will have eight income cables (4 video, 4 usb) and four output cables
    http://www.showmecables.com/viewItem.asp?idProduct=10778
    http://www.networktechinc.com/pdf/cat-kvmsplit-usb-hdmi.pdf

  • I need help with my Tictactoe. can't  switch between  players Please Please

    You will be building a Tic Tac Toe program, I have provided a program shell that has four functions:
    printBoard- Prints the board as shows in the comments at the top of the file.
    hasWon - Takes in a player's marker and tells us if that player has won
    markTheBoard - marks the given location with the player's marker
    isTie - Tells if there are no more spots and no winner
    The play starts with X, the variable turn will keep track of who's turn it is.
    At the beginning you will display the board with position numbers so the player knows how to place his/her marker.
    The code will ask each player where they would like to place their marker until either
    there are no more spots to play or one of the players wins.
    The shell program is here
    import java.util.Scanner;
    * Represents a tic tac toe board on the console, positions are shown below:
    * | 1 | 2 | 3 |
    * | 4 | 5 | 6 |
    * | 7 | 8 | 9 |
    * An example board in mid play looks like this:
    * | X | | |
    * | | O | |
    * | O | | X |
    public class TicTacToe {
    public enum Marker
    EMPTY,
    X,
    O
    private static Marker position1 = Marker.EMPTY;
    private static Marker position2 = Marker.EMPTY;
    private static Marker position3 = Marker.EMPTY;
    private static Marker position4 = Marker.EMPTY;
    private static Marker position5 = Marker.EMPTY;
    private static Marker position6 = Marker.EMPTY;
    private static Marker position7 = Marker.EMPTY;
    private static Marker position8 = Marker.EMPTY;
    private static Marker position9 = Marker.EMPTY;
    private static Marker turn = Marker.X;
    public static void main(String[] args)
              printBoard();
              Scanner scan = new Scanner(System.in);           
              for (int j = 1; j < 9; j++) {
              boolean validInput = false; // for input validation          
    while(!validInput) {
    if (turn == Marker.X) {
    System.out.print("Player 'X', enter your move: ");
    } else {
    System.out.print("Player 'O', enter your move: ");
    int player = scan.nextInt();
    if (j == 1 || j == 3 || j == 5 || j == 7 || j == 9) {
                        turn = Marker.X;
                        markTheBoard(turn, player);
                   } else if (j == 2 || j == 4 || j == 6 || j == 8) {
                        turn = Marker.O;
                        markTheBoard(turn, player);
                        }else {
    System.out.println("This move at (" + j + ") is not valid. Try again...");
    * This method will print the board as shown in the above example.
    public static void printBoard()
              System.out.println("Welcome! Tic Tac Toe is a two player game.");
              System.out.println("Please Refer to the board below when asked to enter your values.");
                   System.out.println();
              for (int x = 0; x < 1; x++) {
                   for (int i = 0; i < 9; i += 3) {
                        System.out.println(" -------------");
                        System.out.println(" | " + (i + 1) + " | " + (i + 2) + " | "
                                  + (i + 3) + " | ");
                   System.out.println(" -------------");
                   System.out.println();
    * Checks if a particular player has won.
    * @param m The player to check
    * @return true if the player won, false if not
    public static boolean hasWon(Marker m)
              boolean hasWon = true;
              System.out.println("Player " + m + " has won this game");
              return hasWon;
    * Checks if the board is full with no winner
    * @return true if the board is full with no winner, false otherwise
    public static boolean isTie()
              boolean isTie = true;
              System.out.println("This game is a tie!");
              return isTie;
    * Mark the given position with the given marker
    * @param m The marker of the player given
    * @param pos The position that we are marking
    public static void markTheBoard(Marker m, int pos){
              switch (pos) {
                   case 1:
                        position1 = m;
                        break;
                   case 2:
                        position2 = m;
                        break;
                   case 3:
                        position3 = m;
                        break;
                   case 4:
                        position4 = m;
                        break;
                   case 5:
                        position5 = m;
                        break;
                   case 6:
                        position6 = m;
                        break;
                   case 7:
                        position7 = m;
                        break;
                   case 8:
                        position8 = m;
                        break;
                   case 9:
                        position9 = m;
                        break;
                   default:
                        break;
         System.out.println(" -------------");
         System.out.println(" | " + position1 + " | " + position2 + " | "
                   + position3 + " | ");
         System.out.println(" -------------");
         System.out.println(" | " + position4 + " | " + position5 + " | "
                   + position6 + " | ");
         System.out.println(" -------------");
         System.out.println(" | " + position7 + " | " + position8 + " | "
                   + position9 + " | ");
         System.out.println(" -------------");          
              if (position1 == Marker.X && position2 == Marker.X
                        && position3 == Marker.X || position4 == Marker.X
                        && position5 == Marker.X && position6 == Marker.X
                        || position7 == Marker.X && position8 == Marker.X
                        && position9 == Marker.X) {
                   hasWon(Marker.X);
              } else if (position1 == Marker.O && position2 == Marker.O
                        && position3 == Marker.O || position4 == Marker.O
                        && position5 == Marker.O && position6 == Marker.O
                        || position7 == Marker.O && position8 == Marker.O
                        && position9 == Marker.O) {
                   hasWon(Marker.O);
              } else if (position1 == Marker.O && position2 == Marker.O
                        && position3 == Marker.X || position4 == Marker.O
                        && position5 == Marker.O && position6 == Marker.X
                        || position7 == Marker.O && position8 == Marker.O
                        && position9 == Marker.X) {
                   isTie();
              if (position1 == Marker.X && position4 == Marker.X
                        && position7 == Marker.X || position2 == Marker.X
                        && position5 == Marker.X && position8 == Marker.X
                        || position3 == Marker.X && position6 == Marker.X
                        && position9 == Marker.X) {
                   hasWon(Marker.X);
              } else if (position1 == Marker.O && position4 == Marker.O
                        && position7 == Marker.O || position2 == Marker.O
                        && position5 == Marker.O && position8 == Marker.O
                        || position3 == Marker.O && position6 == Marker.O
                        && position9 == Marker.O) {
                   hasWon(Marker.O);
              if (position1 == Marker.X && position5 == Marker.X
                        && position9 == Marker.X || position3 == Marker.X
                        && position5 == Marker.X && position7 == Marker.X) {
                   hasWon(Marker.X);
              } else if (position1 == Marker.O && position5 == Marker.O
                        && position9 == Marker.O || position3 == Marker.O
                        && position5 == Marker.O && position7 == Marker.O) {
                   hasWon(Marker.O);
    }

    1006734 wrote:
    You will be building a Tic Tac Toe program, I have provided a program shell that has four functions:No.
    YOU+ will be doing that.
    This is not a schoolwork cheat site.
    You need to do your own work.
    Post locked.

  • Need help diagnosing kernel panic error-10.7.5 2006 Mac Pro

    The kernel panic went away when I removed my external firewire and usb drives. Thank you very much.
    Sat Jan 25 17:47:28 2014
    panic(cpu 2 caller 0x2ceabf): Kernel trap at 0x01c7338c, type 0=divide error, registers:
    CR0: 0x8001003b, CR2: 0x72abbb00, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x00000001, EBX: 0x00000000, ECX: 0x27dc1000, EDX: 0x00000000
    CR2: 0x72abbb00, EBP: 0x94963cc8, ESI: 0x00000000, EDI: 0x00000000
    EFL: 0x00010246, EIP: 0x01c7338c, CS:  0x00000008, DS:  0x00000010
    Error code: 0x00000000
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x94963ae8 : 0x2203de (0x6b08cc 0x94963b08 0x229fb0 0x0)
    0x94963b18 : 0x2ceabf (0x6bd9e0 0x1c7338c 0x0 0x6bd8cd)
    0x94963bc8 : 0x2e5564 (0x94963bf0 0x94963bd8 0x94963be8 0x60a3a6)
    0x94963be8 : 0x1c7338c (0xe 0x10048 0x27190070 0x740010)
    0x94963cc8 : 0x1c6bf71 (0x1000 0x0 0x0 0x0)
    0x94963d38 : 0x1c6e666 (0x27dc1000 0x26ca03b0 0x8cc3f000 0x2ba)
    0x94963d88 : 0x1c669da (0x28592280 0x27dc1000 0x8cc3f000 0x2ba)
    0x94963dc8 : 0xa1127d (0x27dc1000 0x27dc1000 0x8cc3f000 0x2ba)
    0x94963e08 : 0x1c62659 (0x27dc1000 0x27dc1000 0x8cc3f000 0x2ba)
    0x94963e38 : 0x1c62ea3 (0x27dc1000 0x1c7364c 0x1c7363a 0x0)
    0x94963e58 : 0x1c635f9 (0x27dc1000 0x0 0x94963e78 0x27dc1000)
    0x94963e78 : 0x1c6510f (0x27dc0b80 0x27dc1000 0x284edac0 0x0)
    0x94963ea8 : 0x1c62ebd (0x27dc0b80 0x28524800 0x1c7363a 0x28524800)
    0x94963ec8 : 0x64bacd (0x28524800 0x284da600 0x94963ef8 0x609fea)
    0x94963f18 : 0x64b836 (0x284da600 0x28524800 0x26c9cfc0 0x60a492)
    0x94963f68 : 0x64c62d (0x284da600 0x26c9fd80 0x0 0xffffffff)
    0x94963f98 : 0x64e454 (0x284da600 0x0 0x94963fb8 0x1)
    0x94963fc8 : 0x2c7d0c (0x26ea8110 0x0 0x10 0x261820d0)
          Kernel Extensions in backtrace:
             com.apple.iokit.IOStorageFamily(1.7.2)[9164AEE7-BA92-45A2-BA9C-638B980193F1]@0x 9ff000->0xa22fff
             com.apple.driver.AppleRAID(4.0.6)[2DB38C0A-C02F-4C5E-8038-7D4969A99726]@0x1c600 00->0x1c84fff
                dependency: com.apple.iokit.IOStorageFamily(1.7.2)[9164AEE7-BA92-45A2-BA9C-638B980193F1]@0x 9ff000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:26:45 PDT 2012; root:xnu-1699.32.7~1/RELEASE_I386
    Kernel UUID: 859B45FB-14BB-35ED-B823-08393C63E13B
    System model name: MacPro1,1 (Mac-F4208DC8)
    System uptime in nanoseconds: 20244832865
    last loaded kext at 19676394677: org.virtualbox.kext.VBoxNetAdp    4.2.1 (addr 0x9cc4d000, size 28672)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp    4.2.1
    org.virtualbox.kext.VBoxNetFlt    4.2.1
    org.virtualbox.kext.VBoxUSB    4.2.1
    org.virtualbox.kext.VBoxDrv    4.2.1
    com.splashtop.driver.SRXFrameBufferConnector    1.6
    com.splashtop.driver.SRXDisplayCard    1.6
    com.Cycling74.driver.Soundflower    1.6.6
    com.Newer-tech.kext.MAXPower_SAS_6G_RAID    1.3.0
    com.apple.driver.AppleFireWireStorage    3.0.6
    com.apple.driver.initioFWBridge    3.0.6
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit    3.0.6
    com.apple.driver.LSI_FW_500    3.0.6
    com.apple.driver.Oxford_Semi    3.0.6
    com.apple.driver.StorageLynx    3.0.6
    com.apple.driver.AppleRAID    4.0.6
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMCCSControl    1.0.33
    com.apple.driver.AppleHDAHardwareConfigDriver    2.2.5a5
    com.apple.kext.ATIFramebuffer    7.3.2
    com.apple.driver.AppleHDA    2.2.5a5
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleTyMCEDriver    1.0.2d2
    com.apple.ATIRadeonX2000    7.3.2
    com.apple.driver.AppleUSBDisplays    323.3
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.3
    com.apple.driver.AppleMCEDriver    1.1.9
    com.apple.driver.ApplePolicyControl    3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d8
    com.apple.driver.AppleLPC    1.6.0
    com.apple.driver.CSRUSBBluetoothHCIController    4.0.8f17
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.1.0
    com.apple.driver.CSRHIDTransitionDriver    4.0.8f17
    com.apple.iokit.SCSITaskUserClient    3.2.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.driver.AppleFWOHCI    4.9.0
    com.apple.driver.AppleIntel8254XEthernet    2.1.3b1
    com.apple.driver.AppleAHCIPort    2.3.1
    com.apple.driver.AppleIntelPIIXATA    2.5.1
    com.apple.iokit.AppleYukon2    3.2.2b1
    com.apple.driver.AppleUSBHub    5.1.0
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleUSBEHCI    5.1.0
    com.apple.driver.AppleUSBUHCI    5.1.0
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    195.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.4
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    195.0.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport    2.1.0
    com.apple.iokit.IOFireWireSBP2    4.2.0
    com.apple.kext.triggers    1.0
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.driver.DspFuncLib    2.2.5a5
    com.apple.kext.ATI2600Controller    7.3.2
    com.apple.kext.ATISupport    7.3.2
    com.apple.iokit.IOFireWireIP    2.2.5
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOAudioFamily    1.8.6fc18
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.2.5a5
    com.apple.iokit.IOHDAFamily    2.2.5a5
    com.apple.driver.AppleGraphicsControl    3.1.33
    com.apple.iokit.IONDRVSupport    2.3.4
    com.apple.iokit.IOGraphicsFamily    2.3.4
    com.apple.driver.AppleSMC    3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d8
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.IOPlatformPluginFamily    5.1.1d6
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.2.1
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.8f17
    com.apple.iokit.IOBluetoothFamily    4.0.8f17
    com.apple.iokit.IOUSBMassStorageClass    3.0.3
    com.apple.driver.AppleFileSystemDriver    13
    com.apple.iokit.IOUSBHIDDriver    5.0.0
    com.apple.driver.AppleUSBComposite    5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOATAPIProtocolTransport    3.0.0
    com.apple.iokit.IOFireWireFamily    4.4.8
    com.apple.iokit.IOSCSIParallelFamily    2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.1
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOATAFamily    2.5.1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOUSBUserClient    5.0.0
    com.apple.iokit.IOUSBFamily    5.1.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.11
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    331.7
    com.apple.iokit.IOStorageFamily    1.7.2
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.7
    com.apple.iokit.IOACPIFamily    1.4

    org.virtualbox.kext.VBoxNetAdp    4.2.1
    org.virtualbox.kext.VBoxNetFlt    4.2.1
    org.virtualbox.kext.VBoxUSB    4.2.1
    org.virtualbox.kext.VBoxDrv    4.2.1
    com.splashtop.driver.SRXFrameBufferConnector    1.6
    com.splashtop.driver.SRXDisplayCard    1.6
    com.Cycling74.driver.Soundflower    1.6.6
    com.Newer-tech.kext.MAXPower_SAS_6G_RAID    1.3.0
    Any or all of those kernel extensions could be the cause.
    Remove or update them.

  • Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait

    Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait...
    I tried downloading updates like it said to but it still will not display the document.  How do I print the PDF file ASAP

    Can you give us a LOT more info?
    What email client? What version of Reader (I can only assume you even have Reader at this point)?
    Please wait? I'm sure it says more than that, right?
    Have you tried simply saving the PDF (it IS a PDF correct?) to your desktop and opening it from there?
    Did you get this form from the IRS or did it come from somewhere else? If the IRS again, what version of Reader?
    Help us help you.

  • I need help my ipod touch 4g wont show up on my computer and it is stuck in recovery mode

    i need help with my ipod touch 4g its stuck on recovery mode and it wont show up on my computer its been 4 months and its still like that what can i doo to fix that email me at [email protected] or post on here

    - Try here to get iTunes to see the iPod:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X
    - Yu can also try another computer to help determine if you have a computer or iPod problem
    - Try manually placing the iPod in recovery mode. For that see:
    iPhone and iPod touch: Unable to update or restore
    - Try DFU mode:
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • I need help my iphone 5c has been on charge for 5 hours and still has not turned on past the charging symbol, what can i do? (baring in mind i got this phone 2 days ago brand new.)

    i need help my iphone 5c has been on charge for 5 hours and still has not turned on past the charging symbol, what can i do? (baring in mind i got this phone 2 days ago brand new.)

    Do you see a lightning bolt near the battery , Battery is charging (supposedly(  IF  not return to where  you purchased it  (also make sure that the charger is on)  if still not charging with lighting bolt bring it back

  • Please a need help, I need my serial njumber, they said is in the coner but not is 0 there.

    I need help, I don't have serial number, so I have a lots of truable to get any the adobe

    please I need help, I tray to call up so many times
    Date: Sun, 27 Apr 2014 02:00:21 -0700
    From: [email protected]
    To: [email protected]
    Subject: please a need help, I need my serial njumber, they said is in the coner but not is 0 there.
        Re: please a need help, I need my serial njumber, they said is in the coner but not is 0 there.
        created by Rajshree in Adobe Creative Cloud - View the full discussion
    Please refer to http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    If you have Creative Cloud then it does not need not serial, you have to just log in to www.creative.adobe.com & download & install from there.
    Regards
    Rajshree
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6334115#6334115
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6334115#6334115
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6334115#6334115. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Adobe Creative Cloud at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Hello.  I need help.  I use Photoshop Elements 10 on my MAC but it no longer reads discs.  Can I download it from the internet with my original package serial number?

    Hello.  I need help.  I use Photoshop Elements 10 on my MAC but it no longer reads discs.  Can I download it from the internet with my original package serial number?  thanks

    Yes, from here:
    Download Photoshop Elements products | 13, 12, 11, 10

  • HT4199 I need help connecting to my WIFI.  I purchased a new router and am having trouble connecting.

    I need help connecting to my WiFi.  I purchased a new router and am having trouble connecting.

    your gonna want to contact your internet service provider for the best info on setting that router up.  but for connecting to wifi on the iphone, ipad, and ipod
    go to
    settings > wifi
    then choose your connection and enter the password

  • HT203200 I need help on purchasing a game I forgot my security question answers. and it's been awhile since I downloaded anything.. how do I find out the answers or change them without knowing the old answers??

    I need help on purchasing a game I forgot my security question answers. and it's been awhile since I downloaded anything.. how do I find out the answers or change them without knowing the old answers??

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • Need Urgent help, I have made partition hard drive in my mac book and using OS mac

    Need Urgent help, I have made partition hard drive in my mac book and using OS mac & Window8 seperately... for couple of days it works great for both window & OS mac But nowadays, my pc gets restart automatically while using window & even I cant access to my Mac OS...........  I got some error in window (error80070003) ...>>>>> Now how can I format whole drive & recover my Mac book OS.without boot disk.

    I can't find that model. If you open System Profiler in the Utilities folder look for the Model Identifier over in the right hand display. What do you find for the model ID? If your computer supports Internet Recovery here's what to do:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer. If Mavericks is not installed, then you can reinstall it by re-downloading the Mavericks installer.
    You will need to use Boot Camp Assistant in order to create a new Windows partition, then reinstall Windows.

  • Need help to know how to take my music off my laptop and put it on a extern

    need help to know how to take my music off my laptop and put it on a external drive and let itunes see it.

    You might find these articles useful:
    iLounge - Managing your iTunes Library on an External Hard Drive
    iTunes for Mac - Moving your iTunes Music Folder
    iTunes for Windows - Moving your iTunes Music Folder

  • TS2771 I need help with my camera it's shows a black screen. And I have restarted it many times

    I need help with my camera it's shows a black screen. And I have restarted it many times

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem. Y are not alones. Sometimes the camera fails.
    Apple Retail Store - Genius Bar                                      

Maybe you are looking for

  • G/L account for payment terms

    Hi, Is it possible to maintain 2 G/L accounts under 1 chart of account for cash discount? For example, G/L account 333333 for payment term Z333 and G/L account 222222 for payment term Z222. Will appreciate immediate feedback. Thanks.

  • Missing page numbers in cross references?

    In existing ID documents, I insert a cross-reference, and there is no page number given, even when page number is defined in the cross references tab. I can open a brand new document, and make a cross reference to one of the existing docs, and that w

  • Issue with Idoc when creating invoice taking wrong payment term

    Hi All, My Requirement is invoices created through B2B interface should hold the payment term of purchasing party instead of invoicing party 400021 is Invoicing party having payment term 2000 i.e. 20 days 414478 is the Purchasing party having the pay

  • MacBook Pro 15" 2.5 not booting up

    A friend has a 2.5 GHZ 15" MacBook Pro and it's not booting, it appears the Apple logo and then the spinning wheel. What can I tell him to do since he's not in the same city I live and that machine doesn't come with a dvd installer. Thanks in advance

  • ERMS-Incident Creation via E-Mail

    Hi Experts, The requirement at present in my work is, When email comes in to the CRM, an Incident should get created automatically and acknowledgement should goto the sender by apending with the Incident no and details. Could any one explain how to c