Can you have code run in a terminal and applet?

For example in my program in Main we enter the data for menu and amount of the exchange but the result is displayed in an applet.
works great in the terminal window.
but when using an applet it will not work.
import java.awt.*;
import java.applet.*;
import javax.swing.* ;
import TerminalIO.*;
public class MetricConversionMain    {
         final static String CRLF = "\n" ;     
         static String msgOut ;                   
     public static void main ( String[] args )     {
        int valid  = 0;
        int choose = 0;
        double numUnits = 0.0; 
        double convertedUnits = 0.0;
                              // title, class, author and version info  to
     KeyboardReader entries = new KeyboardReader(); //object for keyboard entry
     while (valid != 1) {
            // menu for conversion selection 1 thru 4          
     System.out.println("\n\t\t1 \tFor inches to centimeters");
      System.out.println("\t\t2 \tFor quarts to liters");
      System.out.println("\t\t3 \tFor pounds to kilograms");
      System.out.println("\t\t4 \tFor miles to Kilometer");
          choose = // GW corrected my code to the present prior I was choose = choose.readInt etc etc
        entries.readInt("\n\t\tPlease choose one of the following menu items to convert: ");
      if (choose == 1 || choose == 2 || choose == 3 || choose ==4 ) {
           valid = 1 ;
      else {
           System.out.println("Invalid Selection.") ;
      switch (choose) {
          case 1 : System.out.println("Converting inches to centimeters... ") ; break ;
          case 2 : System.out.println("Converting quarts to liters... ") ; break ;
          case 3 : System.out.println("Converting pounds to kilograms... ") ; break ;
          case 4 : System.out.println("Converting miles to kilometers... ") ; break ;
     } // Error checking, reiterates the user's current choice prior to next question
     System.out.println();
     KeyboardReader useEntry = new KeyboardReader(); //object for keyboard entry
          numUnits =
        useEntry.readDouble("\n\t\tNow please enter the amount you wish to convert: ");
          System.out.println ("\t\tThe conversion comes to  " + numUnits);
     //KeyEntry equal = new KeyEntry();   
     //equal.setNumUnits
    //(useEntry.readDouble("\n\t\tNow please enter the amount you wish to convert: "));
     //System.out.println("\t\tThe conversion comes to  " + getnumUnits());
     switch (choose) {
          case 1 : Inch fromInch = new Inch(numUnits); break ;}
     case 2 : Quart fromQuart = new Quart(numUnits) ; break ;
          /*     case 3 : Pound fromPound = new Pound( numUnits) ; break ;
          case 4 : Mile fromMile = new Mile(numUnits) ; break ;
     } // Switch statement that performs the correct conversion based on the user's input*/
               // Instantiate US Standard Objects
     /*     Inch fromInch = new Inch(1) ;
          Foot fromFoot = new Foot(1) ;
          Yard fromYard = new Yard(1) ;
          Mile fromMile = new Mile(1) ;
          Ounce fromOunce = new Ounce(1) ;
          Quart fromQuart = new Quart(1) ;
          Gallon fromGallon = new Gallon(1) ;
          Pound fromPound = new Pound(1) ;
          // Instantiate Metric Objects          
          Centimeter fromCentimeter = new Centimeter(1) ;
          Meter fromMeter = new Meter(1) ;
          Kilometer fromKilometer = new Kilometer(1) ;
          Gram fromGram = new Gram(1) ;
          Liter fromLiter = new Liter(1) ;
          Kilogram fromKilogram = new Kilogram(1) ;
          LitGal fromLitGal = new LitGal(1) ; */
     }     //  main
}     //     class MetricConversionMainsupper classpublic class SuperConverter        {
     *     This class is the super class for a series of
     *     subclasses that perform conversion from metric to
     *     imperial or vice versa.
     protected double numUnits ;
     protected double convertedUnits ;
     protected double factor ;
     // Constructor
     public SuperConverter ( double argNumUnits, double argFactor )  {     
     numUnits = argNumUnits ;
     factor = argFactor ;
     convertedUnits = numUnits * factor ; //convert() ;
     }     // Constructor
     protected double getnumUnits()     {
          return numUnits ;
     protected void setnumUnits     ( double argNumUnits )     {
          numUnits = argNumUnits ;
     protected double convert  () {
          this.convertedUnits = numUnits * factor ;     
          return convertedUnits ;     
     public double getconvertedUnits()     {
          this.convertedUnits = convert() ;
          return convertedUnits ;
}     //  end SuperConverter Classsubclass that works[public class Inch extends SuperConverter {
     public Inch      (double argNumUnits)
          super ( argNumUnits, 0.914 ) ;
          System.out.print   ("     ") ;
     if (argNumUnits > 1)
               System.out.println(argNumUnits + " inches = " + convertedUnits + " centimeters") ;
          else
               System.out.println(argNumUnits + " inch = " + convertedUnits + " centimeters") ;
/code]
The code I want to use  with the applet is import java.awt.*;
import java.applet.*;
import javax.swing.* ;
public class Inch extends SuperConverter {
     final static String CRLF = "\n" ;     
     static String msgOut ;          
     public Inch      (double argNumUnits)
          super ( argNumUnits, 2.54 ) ;
          System.out.print ("     ") ;
          if (argNumUnits > 1)
          {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;
          msgOut += "     US Standard to Metric" + CRLF ;
     msgOut += "     -------------------------------------------------" + " " + CRLF ;
               msgOut = argNumUnits + " inches = " + convertedUnits + " centimeters" ;
          else
          {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;
          msgOut += "     US Standard to Metric" + CRLF ;
     msgOut += "     -------------------------------------------------" + " " + CRLF ;
               msgOut += argNumUnits + " inch = " + convertedUnits + " centimeters" + CRLF + CRLF + CRLF ;
          }     JOptionPane.showMessageDialog ( null, msgOut ) ;          
}

The issue I have is the applet/window appears behind the terminal window. below is the code that is use for the window. I want to have the window appear infront of the terminal window.import java.awt.*;
import java.applet.*;
import javax.swing.* ;
public class Pound extends SuperConverter {
    final static String CRLF = "\n" ;     
         static String msgOut ;     
     public Pound      (double argNumUnits)
          super ( argNumUnits, 0.454 ) ;     
          System.out.print   ("     ") ;     
          if (argNumUnits > 1)
          {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;             
              msgOut +=  "     Metric to US Standard" + CRLF ;
              msgOut +=  "     -------------------------------------------------" + "         " + CRLF ;
               msgOut += argNumUnits + " pounds = " + convertedUnits + " kilograms" + CRLF + CRLF + CRLF ;
          else
          {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;
              msgOut +=  "     Metric to US Standard" + CRLF ;
              msgOut +=  "     -------------------------------------------------" + "         " + CRLF ;
               msgOut += argNumUnits + " pound = " + convertedUnits + " kilograms" + CRLF + CRLF + CRLF ;
          }   JOptionPane.showMessageDialog ( null, msgOut ) ;
}

Similar Messages

  • How many lines can you have on a nation wide talk and text plan?

    How many lines can you have on a nation wide talk and text plan?

    A max of five lines is allowed on the Nationwide Talk & Text family plan.

  • Can you have different passwords for mail account and ICloud?

    Can you have different passwords for mail account and ICloud?

    Yes - you want to go under Notifications, Mail.   Set each acct the way you want.

  • Can you have a look at this video and give advice please?

    Hi Guys,
    Can you have a look at this video-
    http://www.youtube.com/watch?v=UA0x3bQUW-g
    I shot it for a friend at a hotel. Can you let me know if if works ok / stutters etc. on your computer.
    I edited hdv pal / ppro cs3 then adobe media encoder to H 264 1280 x 720 25fps bitrate min 2 max 4. keyframes 25.
    It looks pretty bad i think at the normal youtube. It looks a lot better when you hit the 'watch in hd' but begins to stutter.
    Do you have any advice?
    Many thanks
    scott

    First, thank you for doing a very nice piece. I'm a tad bit tired of the "in-your-face" skateboarding pieces. The young lady is also "easy on the eyes."
    Second, I looked at the piece in both resolutions, and also after all buffering had completed. The only things that I saw were one Transition at about the 1/4 point that seemed to have about a 1-frame "glitch," or something. Two of the Titles also did not seem to fade-up/move-in at the same pace, or with the same smoothness as the others. Even looking at movement, like the flag (again near the 1/4 mark - sorry that I did not write down the exact TimeCode), I did not notice any stuttering. I'd better get this out of the way right now, I'm viewing on my laptop's 17" 1680x1050 nVidia GeForce 8800M GTX-512MB display, with full hardware acceleration.
    Not sure what you, and Dan, are seeing. I'm usually a pretty critical observer, though might be missing something important. If you can give me a TimeCode and where, in the frame, you're both seeing the problems, I'll be glad to give it another go.
    Good luck,
    Hunt
    PS I like the mood that both the visuals and music convey. My wife also made note of the URL, for our next trip to the UK in October.

  • Random Kernel attacks ... can you have a look at the log and maybe help me out?

    Hello,
    i have an old macbookpro since 2006 and i am getting random kernel attacks during booting up. Here is a copy of the log that i dont understand at all. Can someone have a look at it so that if a peripheral is responsible i could remove it etc? Thank you very much in advance...
    Interval Since Last Panic Report:  1014086 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    715B81C9-84E0-46BE-BAA4-7B9F69D717E2
    Thu Mar 13 19:41:46 2014
    panic(cpu 1 caller 0x30c210): "vnode_rele_ext: vp 0xadda940 usecount -ve : -1.  v_tag = 16, v_type = 1, v_flag = 84800."@/SourceCache/xnu/xnu-1699.32.7/bsd/vfs/vfs_subr.c:1711
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x48a43908 : 0x2203de (0x6b08cc 0x48a43928 0x229fb0 0x0)
    0x48a43938 : 0x30c210 (0x6c33e0 0xadda940 0xffffffff 0x10)
    0x48a43968 : 0x30e109 (0xadda940 0x0 0x0 0x0)
    0x48a43988 : 0x48a5237b (0xadda940 0x1 0x29794f74 0x15f)
    0x48a439a8 : 0x48a531a8 (0x8b15000 0x6d51330 0x20 0x48a54aa8)
    0x48a43b98 : 0x48a5426e (0xadda940 0x7e48b54 0x6002f04 0x2)
    0x48a43bb8 : 0x54d297 (0x6002f04 0x0 0x2 0x7e48b54)
    0x48a43be8 : 0x30863e (0x6110a04 0x6002f04 0x2 0x7e48b54)
    0x48a43c28 : 0x322aa8 (0xadda940 0x48a43e50 0x8001 0x7e48b54)
    0x48a43c88 : 0x31aea0 (0x48a43d20 0x48a43ce8 0x48a43e80 0x7e48b54)
    0x48a43cf8 : 0x31b4ad (0x7e48b54 0x48a43d20 0x8000 0x48a43e80)
    0x48a43f78 : 0x5f3c2a (0x6441918 0x867bad4 0x7e48a98 0x0)
    0x48a43fc8 : 0x2e60a7 (0x867bad0 0x0 0x10 0x867bad0)
          Kernel Extensions in backtrace:
             com.sophos.kext.sav(8.0.14)[9C551297-42E6-4D0D-8221-F4456D0099D5]@0x48a51000->0 x48a56fff
    BSD process name corresponding to current thread: notifyd
    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: MacBookPro2,2 (Mac-F42187C8)
    System uptime in nanoseconds: 908326037068
    last loaded kext at 291712925725: com.lacie.driver.LaCie_RemoteComms          1.0.1 (addr 0xd15000, size 12288)
    last unloaded kext at 355433688452: com.lacie.driver.LaCie_RemoteComms          1.0.1 (addr 0xd15000, size 12288)
    loaded kexts:
    com.sophos.kext.sav          8.0.14
    com.intego.kext.AppBarrierKPI          2.2
    com.splashtop.driver.SRXFrameBufferConnector          1.6
    com.intego.kext.NetBarrierKPI          10.5.4
    com.splashtop.driver.SRXDisplayCard          1.6
    com.Cycling74.driver.Soundflower          1.6.6
    com.markspace.driver.Android.RNDIS          1.2
    com.plantronics.driver.PlantronicsDriverShield          4.3
    com.Logitech.Control Center.HID Driver          3.9.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.0.1
    com.oxsemi.driver.OxsemiDeviceType00          1.28.13
    com.seagate.driver.PowSecDriverCore          5.0.1
    net.osx86.kexts.GenericUSBXHCI          1.2.7
    com.rim.driver.BlackBerryUSBDriverInt          0.0.67
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AudioAUUC          1.59
    com.apple.kext.ATIFramebuffer          7.3.2
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.driver.AirPort.Atheros21          431.14.10
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    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.AppleBacklight          170.2.2
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.ATIRadeonX1000          7.0.4
    com.apple.driver.CSRUSBBluetoothHCIController          4.0.8f17
    com.apple.driver.AppleUSBTrackpad          227.6
    com.apple.driver.AppleIRController          312
    com.apple.driver.AppleUSBTCKeyEventDriver          227.6
    com.apple.driver.AppleUSBTCKeyboard          227.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.iokit.AppleYukon2          3.2.2b1
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleUSBUHCI          5.1.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.5
    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.driver.DspFuncLib          2.2.5a5
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IO80211Family          420.3
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.kext.ATI1600Controller          7.3.2
    com.apple.kext.ATISupport          7.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.driver.IOBluetoothHIDDriver          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.2.0
    com.apple.iokit.IOATABlockStorage          3.0.1
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOFireWireFamily          4.4.8
    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.driver.AppleKeyStore          28.18
    com.apple.iokit.IOUSBMassStorageClass          3.0.3
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.1
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro2,2, BootROM MBP22.00A5.B07, 2 processors, Intel Core 2 Duo, 2.33 GHz, 3 GB, SMC 1.12f5
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 667 MHz, 0x7F98000000000000, 0x202020202020202020202020202020202020
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz, 0x7F7F7F0B00000000, 0x4E5431475436345538484230424E2D334320
    AirPort: spairport_wireless_card_type_airport_extreme, Atheros 5416: 2.1.14.9
    Bluetooth: Version 4.0.8f17, 2 service, 11 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: sppci_expresscard_name, ExpressCard
    Serial ATA Device: KINGSTON SV300S37A240G, 240.06 GB
    Parallel ATA Device: WDC WD7500BPKT-00PK4T0, 750.16 GB
    USB Device: Built-in iSight, apple_vendor_id, 0x8501, 0xfd400000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd300000 / 2
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc50c, 0xfd340000 / 3
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc51a, 0xfd330000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x021b, 0x1d200000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8240, 0x5d200000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8205, 0x7d100000 / 2
    FireWire Device: FA GoFlex Desk, Seagate, 800mbit_speed

    Remove the Sophos product by following the instructions on this page. If you have a different version, the procedure may be different.
    Remove the Intego product by following the instructions on this page. Again, if you have a different version of the product, the procedure may be different.
    Back up all data before making any changes.

  • Can you have a running adobe reader navigate to named destination

    I open a reader file using adobe reader via command line and use the nameddest parameter to have it navigate to the section within the document which works fine however is there a way once its running to have it navigate to another named destination?
    Thanks!

    Not if the file is already open.
    On Thu, Jan 15, 2015 at 2:00 PM, jc99778991 <[email protected]>

  • Can you have 2 Ipods on same computer and each have a different library

    I am running two Ipods on one computer. I have it set for manually chaning the songs not automatic. My question is do we have to share a library? Is it possible for us to each have our own library and if so how do you do that.

    Welcome to Apple Discussions!
    Using Multiple iPods With One Computer
    btabz

  • Can you have one song on a ipad and put it on another ipod without having to use to a computer?

    Just wondering...

    If you are in the US and the song was purchased from iTunes then you should be able to (re-)download it on your other devices : http://support.apple.com/kb/HT2519 . Otherwise no, you need to go via iTunes on your computer

  • How many Management agents can you have running simultaneously on a host?

    Hi all,
    I've scoured the Oracle documentation and not been able to find a definitive answer to this question, how many Oracle management agents can you have on a single managed host target? Can you for example run an 11g agent and a 12c agent simultaneously (whilst migrating to 12c without upgrading the present OEM instance) If so can you run two 12c agents, each pointing to a different OMS? I’ve seen examples of an agent for each database instance on a host managed target, so a host with three Oracle database instances has three Oracle Management agents all pointing to the same OMS with each agent is monitoring just one of the database instances. There must be resource considerations here for memory, cpu and network traffic etc? I’ve always understood it to be one Oracle Management Agent per managed host
    Thanks

    I don't think there's any data on impact or performance since it's not a recommended configuration. If you have host/configuration monitoring enabled on both agents, they will be running the same queries/scripts against the host/inventory, etc. so they will likely have contention at some point. If you monitor the same databases, you will definitely see contention and increased overhead as there will be multiple agents running the same queries. You might also see problems w/ any of the server generated alerts (tablespace, etc) if you change thresholds as the agents send that to the database, and then the database will be out of sync with the other agents.
    What exactly is the goal for having multiple agents? Is it short term or long term?

  • Can you have a mailbox named Admin AND a postfix alias named Admin that goes to one or more other actual mailboxes?

    My question is re: Mail service in Mac OS X Snow Leopard Server 10.6. Can you have an actual mailbox named Admin AND a postfix alias named Admin that goes to one or more other actual mailboxes?  Or is only one or ther other?  I have customer who currently has a bunch of mailboxes (info, admin, etc.) and those that need access to it do so via Mail client, etc.  Now they are asking about aliases so they dont have to all access same mailbox, requiring setup, etc.  Do I have to delete actual mailboxes in order to create Postfix aliases (admin, info, etc) or can they coexist?
    Thanx in advance,
    Eric

    Thanx Camelot. 
    Leads to me more questions, if you would be so kind.  The client uses Virtual Hosts on Mac OS X Server and the aliases they desire are all @virtual_domain.com.  So, do I create aliases via /etc/postfix/virtual or via /etc/postfix/aliases.  As I said before, they desire aliases that go to at least 2 if not more actual local server accounts/mailboxes, but aliases are @virtual_domain.com.
    For example: admin is local account on server @ main_domain.com.  Now they want alias admin@virtual_domain.com that goes to local accounts Bob, Susan, etc.
    Thanx again!

  • Can you have more than one account on the ipad?

    I'm looking into using the ipad in our manufacturing facility, with more than one user on a single ipad.
    Can you have multiple user accounts on it, and if not how would you set up email with multiple accounts where one user can't access another's account?
    Any info would be appreciated.
    Thanks.

    Welcome to Apple Support Communities.
    If each employee uses a web-based email system such as Gmail, Hotmail, Yahoo, and others, and makes a point of NOT automatically saving ID and password, each user would use the Safari browser to access email, privately and confidentially. That also allows viewing email folders created in the webmail account that are not visible in the Mail app using a pop mail server.

  • Can you have 2 apple tv's running concurrently on the same network

    can you have 2 apple tv's running concurrently on the same network

    Welcome to the Apple Community mafugman.
    Yes, we often have more.

  • Can you have more than one movie per page?

    Hi, I am creating a web site and have some movie content on some of the pages. Can you have more than one quicktime file on each page? Reason I ask is that on one page I have put 3 movie files but only one shows up when I run the site online. I am not using .mac. The website is on grapeape dot co dot uk and if you look at the examples page you should see what I mean. I get one video that works and 2 large "Q"'s where the other videos were. Odd because it works locally. Any ideas? Many thanks.
    Ben

    Just noticed something. If you leave it until the first movie caches or preloads - the second one appears. Is there a way round this at all? Thanks. Ben

  • Can you have 2 itunes accounts on the same computer?

    can you have 2 itunes account on the same computer?

    Yes, go to your Windows Control Panel and create another user,log into it, run iTunes and it's ready to rock and roll.
    Transfer your content over via USB Key, Dropbox or external drive.
    Heck the best thing would be to File > Backup library to disk with a bunch of DVD-R's, therefore you get a backup in the process!
    Good Luck

  • How many motions tweens can you have on a timeline?

    I'm a college student in Seattle.  We just had our mid-terms in Flash CS5.  One of the really simple questions was "How many motion tweens can you have on a timeline."  Yup.  The answer is one...... or is it?  I had a long discussion with my tutor (who is the greatest tutor in the world) and he wanted to think about it. I said to him that I thought that one motion tween was wrong because you can click on an object in the timeline, make it a motion tween, and double click it and make several motion tweens.  So, essentially, you can have more than one motion tween on a timeline.  Is anyone able to advise me because this is all about grades!

    You can have quite a few motion tweens on a timeline.  You can even have them happening simultaneously (I don't know of a specific limit), as long as they are all on their own layers.  Though the more you add simultaneously the more they can weigh down the speed of things running.
    If you need to prove this to someone, the easiest way is to create it and demonstrate it.  But you may want to check the exact wording of the question... it would not be beyond an examiner to throw a trick question in.

Maybe you are looking for

  • Hardware or trackpad software glitch?

    I've been going crazy after upgrading my Macbook to one of the new aluminum ones where it seems to "ignore" my clicks. I've found several other posts in this forum about it - and am trying to figure out if this is that same issue, or a hardware probl

  • No Longer have "Sent" mailbox?

    Hi, I used to have a box on the left side of mail under inbox, drafts, trash that said "sent mail." It's no longer there. I have one called outbox. What's up please? How can I get back the Sent. Thanks.

  • Full Depreciation

    Hi Gurus, We have an asset with 2 years useful life and last depreciation date was scheduled on April 2012.  However, the department head wanted to fully depreciate the remaining book value this december.  The system still divides the remaining value

  • Add columns in the existing Customer table in a Subject Area

    Hi All, Well I need to add two columns from Sales table(new table i created which has customer Id) and join it to the Customer Table which has the Customer Id and several columns. The Customer table was already in the RPD which has all the customer i

  • Ess webdynpro java iview personalization problem

    Hi, we have a problem with the personalization dialog of the ESS-WebDynpro JAVA Applications (f.e. CATS, WhoISWho, Adress...) which the end user gets with Ctrl-Right mouseclick. Our portal and HCM Backend use language "DE" (Germany). The personalizat