I think this is right ?

Does this code:
public class BadAttributeExceptionClass extends Exception
     public BadAttributeExceptionClass()
          super("An exception has occured while trying to set an attribute value.");
     public BadAttributeExceptionClass(String message)
          super(message);
     public BadAttributeExceptionClass(String badAttribute,int value)
          super("The user has tried to enter an invalid value for the attribute "+badAttribute+
                    " . The value "+value+" is out of range.");
     public BadAttributeExceptionClass(String badAttribute,double value)
          super("The user has tried to enter an invalid value for the attribute "+badAttribute+
                    " . The value "+value+" is out of range.");
     public BadAttributeExceptionClass(String badAttribute,String value)
          super("The user has tried to enter an invalid value for the attribute "+badAttribute+
                    " . The value "+value+" is out of range.");
satisfy this requirement:
BadAttributeValueException Class
You will be creating several constructors for this class.
Default Constructor
This constructor will pass a string to its superclass that states that an error has occurred while trying to set an attribute value. This will be used as the generic message when no additional information is passed to this class.
One String Argument Constructor
This constructor will just take whatever string is passed to it as an argument and send it on to its super class. This allows the user of this class to customize their error message anyway that they want
Overloaded Two Argument Constructors
You will create the following 2-argument constructors:
Arg 1     Arg 2      Description
String     int     Used when integer attributes are attempting to be initialized
String     double     Used when double attributes are attempting to be initialized
String     String     Used when string attributes are attempting to be initialized
The first argument is the name of the attribute and the second argument is the bad value that wasn?t accepted in the mutator for this attribute.
These constructors will be used to pass the name of the attribute and the bad value. Three different constructors are needed since your attributes have different data types. This will provide as much feedback as possible to the users of the multiple constructors.
You need to create a string that tells the user that:
?     An error has occurred
?     The name of the attribute
?     The value that was incorrect.
You will then pass this string to the super class constructor.
Thx for any help !!

Could be wrong but it sounds like you need the message plus both the attribute and value for the last three constructors. If so:
public class BadAttributeExceptionClass extends Exception
    private static final String MESSAGE = "An exception has occured while trying to set an attribute value. The user has tried to enter an invalid value for the attribute ";
     public BadAttributeExceptionClass()
          super(MESSAGE);
     public BadAttributeExceptionClass(String message)
          super(message);
    public BadAttributeExceptionClass(String badAttribute,int value)
          this(badAttribute, value);
     public BadAttributeExceptionClass(String badAttribute,double value)
          this(badAttribute, value);
     public BadAttributeExceptionClass(String badAttribute,String value)
          super(MESSAGE+badAttribute+". The value "+value+" is out of range.");
}Message was edited by:
abillconsl

Similar Messages

  • I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this.am i right?

    I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this?  Am i right?  Is there any body out there right now that could help me?  I'm thinking about going from 8.1.3 to I guess yosemite?  Or is that for Mac computers?  I don't understand the language entirely on the help page.   Anyone's straight forward and easy stepped advice would be much appreciated.  I'm so frustrated and I need a job so badly!  Drowning in debt.  Any help appreciated!
    Thanks,
    A

    You're a Windows user, correct? If so, read here:
    http://support.apple.com/kb/DL1455

  • Implicit Fact Column - am I thinking about this the right way?

    My exploration of the Implicit Fact Column is below. Let me know if you think this is the intended usage.
    When the BI Server sees a request where one Dimension is being constrained by another, it has to pick a fact table that contains references to these two dimensions. The "Implicit Fact Column", which is set in the Presentation Layer of the RPD is used to guide the BI Server towards one or more Fact tables that can be used to satisfy the request. In the absence of the Implicit Fact Column, I noticed that the BI Server was choosing random fact tables so I went exploring how this feature worked. I set the Implicit Fact column in my Presentation layer and then went looking to see how the queries were generated.
    For my example, my two dimensions are Program and Channel. I want to see the list of Channels available for a Program. Without the Implicit Fact Column, the queries are of the form:
    select distinct T289.CHANNEL_NAME as c1,
    T36001.PROGRAM_NAME as c2
    from
    DIM_PROGRAMS T36001,
    DIM_CHANNELS T289,
    SomeRandomFactTable T41210
    where ( T289.DIM_CHANNEL_KEY = T41210.DIM_CHANNEL_KEY and T36001.DIM_PROGRAM_KEY = T41210.DIM_PROGRAM_KEY )
    order by c1, c2
    The nice part about this is that there is only one set of Program / Channel combinations returned. The downside is that the Fact table that is chosen to resolve the combinations can be any Fact table under the purview of the BI Server. It doesn't even have to be in the same subject area where the Program and Channel were chosen. When I set the Implicit Fact Column, the queries are of the form:
    select distinct T289.CHANNEL_NAME as c1,
    T36001.PROGRAM_NAME as c2,
    T35832.DIM_SITE_KEY /* this is the implicit fact column */
    from
    DIM_PROGRAMS T36001,
    DIM_CHANNELS T289,
    AFactTableMappedToFactColumn T35832
    where ( T289.DIM_CHANNEL_KEY = T35832.DIM_CHANNEL_KEY and T35832.DIM_PROGRAM_KEY = T36001.DIM_PROGRAM_KEY )
    order by c1, c2
    I was happy that I could predict what Fact table was being used, but now the results are wrong as I get a duplicate set of records for every DIM_SITE_KEY / Channel / Program combination. I decided to play a little Algebra trick. Knowing that the DIM_SITE_KEY was a numeric value, I defined the Implicit fact column as DIM_SITE_KEY / DIM_SITE_KEY which will always result in a value of 1. Now I get queries that look like:
    select distinct T289.CHANNEL_NAME as c1,
    T36001.PROGRAM_NAME as c2,
    T35832.DIM_SITE_KEY / nullif( T35832.DIM_SITE_KEY, 0) as c3
    from
    DIM_PROGRAMS T36001,
    DIM_CHANNELS T289,
    AFactTableMappedToFactColumn T35832
    where ( T289.DIM_CHANNEL_KEY = T35832.DIM_CHANNEL_KEY and T35832.DIM_PROGRAM_KEY = T36001.DIM_PROGRAM_KEY )
    order by c1, c2
    Since DIM_SITE_KEY / DIM_SITE_KEY is always equal to 1, I only get one set of Program / Channel combinations. I get the added bonus of knowing which set of Fact tables are going to be used to satisfy the request.

    Perfect Analysis, But one important note is when using implicit fact table, Always select measure( Which has some aggregation) as a implicit fact column. So that will allows the query will eliminate duplicate rows by doing a group by operation.
    Other note is make sure performance is good. When we don't have a good model for fact tables, when the tables contains large set of data, make sure performance is good by doing indexes or caching to load the prompts.
    - Madan

  • How do I change my user name in syn? I typed in the wrong email address. And I cancelled syn thinking this may work but no luck.

    How do I change my user name in syn? I typed in the wrong email address. And I cancelled syn thinking this may work but no luck.

    You have to clear saved password for this page:
    # Open you login page (where you have to enter username and password).
    # Right click on page and select '''Page Info''' form context menu.
    # On last tab ('''Security''') there is '''View saved passwords''' button, click it and delete all saved passwords for this page.
    # Also clear all related cookies (just in case) there is button for this next to first one.

  • How do i get this put right?

    I hope this post is in the correct area of the forum as I technically do not have a problem with speed...............but i do
    Confusing i know    I shall try explain.
    I was with another ISP on ADSL max until 2 days ago but I noticed that BT were upgrading my local exchange to 21CN so as I was out of contract with my old ISP i decided to move to BT so that I could get better speeds from the 21CN network that was going into my local exchange. My phone line and Broadband were moved to BT on the 10th December, on that day i went into the sam knows website and checked my exchange to find that the 21CN was now enabled in my exchange...............great i thought, perfect timing............not quite it seems as when i look at my router stats I am on G.992.1 Modulation which to the best of my knowledge is the "up to 8Mb" service.
    Could someone with a little more knowledge than me please look at my line stats and confirm what I am thinking please. I appreciate my homehub is only 2 days into its 10 day learning period but from what i can see it is learning the wrong network. If what i think is correct how would i have this put right as I did not leave one up to 8Mb service just to go straight to another. 21CN was my only reason for moving to BT and seems like I am not getting it.....my exchange code is ESKGH so you can check for yourself
    ADSL Line Status
    Connection Information
    Line state:
    Connected
    Connection time:
    2 days, 02:54:57
    Downstream:
    7.938 Mbps
    Upstream:
    448 Kbps
    ADSL Settings
    VPI/VCI:
    0/38
    Type:
    PPPoA
    Modulation:
    G.992.1 Annex A
    Latency type:
    Fast
    Noise margin (Down/Up):
    12.2 dB / 30.0 dB
    Line attenuation (Down/Up):
    5.5 dB / 2.0 dB
    Output power (Down/Up):
    12.0 dBm / 12.1 dBm
    FEC Events (Down/Up):
    0 / 267
    CRC Events (Down/Up):
    62265 / 111
    Loss of Framing (Local/Remote):
    0 / 0
    Loss of Signal (Local/Remote):
    0 / 0
    Loss of Power (Local/Remote):
    0 / 0
    HEC Events (Down/Up):
    56415 / 66
    Error Seconds (Local/Remote):
    52568 / 468

    thanks seems it is enabled, so do you know what i would have to do?
    THE BROADBAND AVAILABILITY CHECKER
    Your exchange is ADSL enabled, and our initial test on your line indicates that your line should be able to have an ADSL broadband service that provides a fixed line speed up to 2Mbps.
    Our test also indicates that your line currently supports an estimated ADSL Max broadband line speed of 8Mbps; typically the line speed would range between 7Mbps and 8Mbps.
    Our test also indicates that your line should be able to have an ADSL2+ broadband service that provides a fixed line speed up to 2Mbps.
    Our test also indicates that your line currently supports an estimated ADSL2+ broadband line speed of 17Mbps; typically the line speed would range between 10Mbps and 19.5Mbps. Our test also indicates that your line could support an estimated ADSL 2+ Annex-M broadband upstream line speed of 1.5Mbps and downstream line speed of 17Mbps; typically the downstream speed would range between 10Mbps and 19.5Mbps.
    The actual stable line speed supportable will be determined during the first 10 days of use. This speed may change over time, to ensure line stability is maintained.
    If you decide to place an order, a further test will be performed to confirm if your line is suitable for the service you wish to purchase.
    Thank you for your interest.
    Please note that postcode and address check results are indicative only. Most accurate results can be obtained from a telephone number check.
    Note: If you already have a Broadband service enabled on this line and you want to switch service providers, you will need to contact both your current provider and your new provider to get your service changed over new and existing service provider to have this service transferred.
    Also provision of some services may not be allowed due to product withdrawal, please contact your service provider for further details.

  • Why am I getting ExchangeWebServices Inbox Error: Error, ErrorServerBusy. The server cannot service this request right now. Try again later

    I recently switched my application that uses EWS from an on-premise Exchange Server to Exchage Online through Office356.
    The process worked just fine for several days, then I started getting the following errors;
    Error accessing [USERNAME] email account.; ExchangeWebServices Inbox Error: Error, ErrorServerBusy, The server cannot service this request right now. Try again later. --> 
    This has been happening for the past 14 hours now. 
    I contacted my Office365 support team and they acted like they had never heard of the Exchange Web Services API, so no help there.
    I can access the mailbox using the O365 web portal and I can access the mailbox account using the Outlook 2013 desktop client. The issue seems specific to EWS
    My program is a Windows service, written in VB.Net. It connects to EWS, goes to the user account inbox, iterates through the inbox extracting attachments from messages, then moves the messages to a saved folder below the inbox.
    I created the wrapper for EWS that I can reference in my project code using the following, run from an elevated VS2012 command prompt;
    wsdl.exe /namespace:ExchangeWebServices /out:EWS.cs https://outlook.office365.com/ews/services.wsdl /username:[email protected] /password:p@ssw0rd
    csc /out:EWS_E2K13_release /target:library EWS.cs
    I bind to EWS in my class, using the following code;
    Imports System.Net
    Imports ExchangeWebServices
    Public Class Exchange2013WebServiceClass
        Private ExchangeBinding As New ExchangeServiceBinding
        Public Sub New(ByVal userEmail As String, ByVal userPassword As String, ByVal URL As String)
            ExchangeBinding.Credentials = New NetworkCredential(userEmail, userPassword)
            ExchangeBinding.Url = URL
        End Sub
    The error that is logged gets triggered when my code makes a call to the following method;
        Public Function GetInboxMessageIDs() As ArrayOfRealItemsType
            Dim returnInboxMessageIds As ArrayOfRealItemsType = Nothing
            Dim errMsg As String = String.Empty
            'Create the request and specify the travesal type.
            Dim FindItemRequest As FindItemType
            FindItemRequest = New FindItemType
            FindItemRequest.Traversal = ItemQueryTraversalType.Shallow
            'Define which item properties are returned in the response.
            Dim ItemProperties As ItemResponseShapeType
            ItemProperties = New ItemResponseShapeType
            ItemProperties.BaseShape = DefaultShapeNamesType.IdOnly
            'Add properties shape to the request.
            FindItemRequest.ItemShape = ItemProperties
            'Identify which folders to search to find items.
            Dim FolderIDArray(0) As DistinguishedFolderIdType
            FolderIDArray(0) = New DistinguishedFolderIdType
            FolderIDArray(0).Id = DistinguishedFolderIdNameType.inbox
            'Add folders to the request.
            FindItemRequest.ParentFolderIds = FolderIDArray
            Try
                'Send the request and get the response.
                Dim FindItemResponse As FindItemResponseType
                FindItemResponse = ExchangeBinding.FindItem(FindItemRequest)
                'Get the response messages.
                Dim ResponseMessage As ResponseMessageType()
                ResponseMessage = FindItemResponse.ResponseMessages.Items
                Dim FindItemResponseMessage As FindItemResponseMessageType
                If ResponseMessage(0).ResponseClass = ResponseClassType.Success Then
                    FindItemResponseMessage = ResponseMessage(0)
                    returnInboxMessageIds = FindItemResponseMessage.RootFolder.Item
                Else
                    '' Server error
                    Dim responseClassStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseClassType), ResponseMessage(0).ResponseClass).ToString
                    Dim responseCodeStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseCodeType), ResponseMessage(0).ResponseCode).ToString
                    Dim messageTextStr As String = ResponseMessage(0).MessageText.ToString
                    Dim thisErrMsg As String = String.Format("ExchangeWebServices Inbox Error: {0}, {1}, {2}", responseClassStr, responseCodeStr, messageTextStr)
                    errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & thisErrMsg
                End If
            Catch ex As Exception
                'errMsg = String.Join("; ", errMsg, ex.Message)
                errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & ex.Message
            End Try
            If Not errMsg.Equals(String.Empty) Then
                returnInboxMessageIds = Nothing
                Throw New System.Exception(errMsg)
            End If
            Return returnInboxMessageIds
        End Function  
    Since the code worked just fine for several days and then suddenly stopped working with a server busy error, I have to think that this is some type of limit or throttling by EWS on the account. I process several thousand emails per day, in chunks of 300
    at a time. 
    But I have no idea how to check for any limits exceeded. I am nowhere close to my O365 mailbox size limit. Right now, there are over 4,000 messages in my inbox, and growing. 
    Thanks in advance for any ideas you can offer.
    Dave

    All the API's EWS, MAPI, ActiveSync,Remote powershell are throttled on Office365 (based around what 1 particular user could resonably do). If you have had a read of this already i would recommend
    http://msdn.microsoft.com/en-us/library/office/jj945066(v=exchg.150).aspx
     You can't adjust or even find your current throttle usage so you have to try to design your code around living inside the default limits. If your using One Service Account to access multiple Mailboxes (or if that account is because used across multiple
    applications) that can cause problems. In this case using EWS Impersonation is good solution as described in
    http://blogs.msdn.com/b/exchangedev/archive/2012/04/19/more-throttling-changes-for-exchange-online.aspx (this basically means the Target Mailbox is charged instead of the Service Account).
     Looking at the code one thing I notice missing is your don't appear to be paging the results of FindItems, also have versioned your requests to Exchagne2013. eg ". When the value of the
    RequestServerVersion element indicates Exchange 2010 or an earlier version of Exchange, the server sends a failure response with error code
    ErrorServerBusy. If the value of the RequestServerVersion
    element indicates a version of Exchange starting with Exchange 2010 SP1
    or Exchange Online, and the client is using paging, EWS may return a
    partial result set instead of an error"
    To Page FindItems Correctly you should use the IndexedPageViewType class and page the Items at no more the 1000 at a time eg something like
    IndexedPageViewType indexedPageView = new IndexedPageViewType();
    indexedPageView.BasePoint = IndexBasePointType.Beginning;
    indexedPageView.Offset = 0;
    indexedPageView.MaxEntriesReturned = 1000;
    indexedPageView.MaxEntriesReturnedSpecified = true;
    FindItemType findItemrequest = new FindItemType();
    findItemrequest.Item = indexedPageView;
    findItemrequest.ItemShape = new ItemResponseShapeType();
    findItemrequest.ItemShape.BaseShape = DefaultShapeNamesType.IdOnly;
    BasePathToElementType[] beAdditionproperties = new BasePathToElementType[3];
    PathToUnindexedFieldType SubjectField = new PathToUnindexedFieldType();
    SubjectField.FieldURI = UnindexedFieldURIType.itemSubject;
    beAdditionproperties[0] = SubjectField;
    PathToUnindexedFieldType RcvdTime = new PathToUnindexedFieldType();
    RcvdTime.FieldURI = UnindexedFieldURIType.itemDateTimeReceived;
    beAdditionproperties[1] = RcvdTime;
    PathToUnindexedFieldType ReadStatus = new PathToUnindexedFieldType();
    ReadStatus.FieldURI = UnindexedFieldURIType.messageIsRead;
    beAdditionproperties[2] = ReadStatus;
    findItemrequest.ItemShape.AdditionalProperties = beAdditionproperties;
    DistinguishedFolderIdType[] faFolderIDArray = new DistinguishedFolderIdType[1];
    faFolderIDArray[0] = new DistinguishedFolderIdType();
    faFolderIDArray[0].Mailbox = new EmailAddressType();
    faFolderIDArray[0].Mailbox.EmailAddress = "[email protected]";
    faFolderIDArray[0].Id = DistinguishedFolderIdNameType.inbox;
    bool moreAvailible = false;
    findItemrequest.ParentFolderIds = faFolderIDArray;
    int loopCount = 0;
    do
    FindItemResponseType frFindItemResponse = esb.FindItem(findItemrequest);
    if (frFindItemResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Success)
    foreach (FindItemResponseMessageType firmtMessage in frFindItemResponse.ResponseMessages.Items)
    Console.WriteLine("Number of Items retreived : " + ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length);
    if (firmtMessage.RootFolder.IncludesLastItemInRange == false)
    moreAvailible = true;
    else
    moreAvailible = false;
    ((IndexedPageViewType)findItemrequest.Item).Offset += ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length;
    Console.WriteLine("Offset : " + ((IndexedPageViewType)findItemrequest.Item).Offset);
    if (firmtMessage.RootFolder.TotalItemsInView > 0)
    foreach (ItemType miMailboxItem in ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items)
    Console.WriteLine(miMailboxItem.Subject);
    else
    throw new Exception("error " + frFindItemResponse.ResponseMessages.Items[0].MessageText);
    } while (moreAvailible);
    The support people should be able to help you as long as you can get past the first level. The EWS Managed API has a RequestId header that gets submitted with requests
    http://blogs.msdn.com/b/exchangedev/archive/2012/06/18/exchange-web-services-managed-api-1-2-1-now-released.aspx . In theory they should be able to take this and then from the Logs tell more information about why your request failed etc.
    Cheers
    Glen

  • Is this the right program for me?

    I need a program that'll work very well with all of my audio equipment for recording. I need something that is easy to use, but still has nice results. I plan on uploading my recordings as MP3s to a musician myspace. Is this the right thing to purchase?

    Jake, one man's perspective. Your mileage may vary:
    I came to Logic via Garageband, and some experience with ProTools from around five or six years ago. After the usual setup headaches that, quite honestly, were more due to my inexperience than any inherent Logic lameness, I am up and running and quite happy with it.
    I think I benefit from the fact that I pick up new technologies/gadgets/what have you very quickly. In addition, this being the first pro-level recording application I've worked with, I'm pretty much a blank slate -- I can't say "Man, logic f-in ***** compared to Cubase/ProTools/etc." Maybe it does; maybe it doesn't. I just have no real frame of reference, so it's all new and cool to me.
    Also, I suspect my needs are fairly simple relative to the pros on this board. I do guitars/bass/ mando/vox audio, keys and drums (Addictive Drums, yeah!) software instruments, usually about 12-16 tracks. (Musically my stuff is a combo of Django Reinhardt and Black Sabbath, all those minor 6ths doncha know; I also orchestrate stuff written by a friend of mine who's a post-grunge dude from Seattle.)
    I'm totally excited with the sonic possibilities Logic has offered. I love tinkering around with the different plugins/instruments etc to achieve just the right little ear tickle *******. I'm now listening to music in a different way -- and having these little "Oh, that's how Jimmy Page did it! I can do that!" moments which is a pretty awesome experience. Being able to listen to old music in new ways is always a good thing.
    And seriously, for the price I am not sure you can beat it -- the basic studio environment, plus software instruments, plus loops. For a (fairly accomplished) parkin'-lot picker and DIY'er who's doing the Myspace thing, it's everything I want.
    But as to Logic's industrial strength, and applicability to professional environments, I gotta defer to the pros on the board.

  • Patriot RAM, is this the right one?

    Hey, I'm picking up a MacBook this weekend and I want to upgrade the RAM to 2G, and after reading the forums I decided to go with the Patriot RAM. Is this the right one?
    http://shop2.outpost.com/product/4789099?site=sr:SEARCH:MAINRSLTPG
    Just wanted to make sure before I bought it. Thanks!

    The RAM modules you linked look correct. I purchased Gigaram Memory with those specs from NewEgg.com and it works great. I don't think you'll have any problem with those Patriot chips. Good luck!
    PowerMac G4 Quicksilver 867mhz, MacBook 2GHz (white)   Mac OS X (10.4.6)  

  • Does This Seem Right?

    I'm really dissapointed in my MBP's battery life. I had the PB G4 but due to those lines I returned it. The only problem is that my PB spoiled me for battery life.. I was able to get up to 5 hours.
    I'm barely getting 3 on this thing and I have full calibrated it. I have absoluely nothing running except safari, screen is way below middle level lighting etc.
    This is my info.....does it seem ok or should I be calling Apple? I've only had it for about 2 days but this is disapointing.
    Battery Installed: Yes
    First low level warning: No
    Full Charge Capacity (mAh): 5413
    Remaining Capacity (mAh): 1921
    Amperage (mA): -2170
    Voltage (mV): 11032
    Cycle Count: 3

    Yes, it is interesting. I tested it again tonight and I still get just a bit more than 5 hours on a full battery. Maybe I am doing something different? When I conditioned the battery I charged it up fully and left it charging for 24 hours. Then, I simply unplugged the charger and ran it off the battery until it went to sleep. Then, I "rested" the battery/computer for 8 hours and charged it again for 24. That is when I ran my test. I got a bit over 5 hours - I think it was 5 hrs and 18 minutes. Tonight, from a full charge, I ran it down again and got just a bit more than 5 hrs. - something like 5hr10min.
    Also, I am really not doing much wit the computer while I ran these two tests - I only updated my iPOD (downloaded the Daily Show) and am surfing the web right now. That is it. Most of the stuff I do never gets the drives moving much, so it is all display drivers and not much else except for the tiny trickle charge used to top off my 60 GIG iPOD. Also, maybe the battery will degrade and get worse....rapidly, but I doubt it. I've owned almost nothing but laptops for the past 15 years and this is the best I have seen for battery life.
    I like my MBP better evey time I use it...and *detest* those awful cheapo "chicklet" function keys. How can Apple make such a GREAT computer - and I think this is THE BEST notebook ever made - and put those crappy cheap, non-aligned function keys on it? I hope someone from Apple reads these forums and listens. The MBP will down as one of the finest computers of all time if they fix a few minor flaws. And I've decided to do some software development on it and I don't waste my time anything that doesn't look like it's going to be worthwhile.

  • TS1292 reItunes card says "not activated correctly"... went back to stopurchased, they say it might take 24 hours. Does this sound right? where

    I'm trying to REDEEM an itunes gift card.
    I get a "card not activated correctly" message.
    I go back to the store where purchased, I'm told card was activated, and to just wait 24 hours because Apple's networks are probably busy.
    Does this sound right??

    A brief and probably non-helpful answer: I know of no way to eliminate your large amount of duplicates other than by repetitive, tedious manual effort.
    *There has got to be a simpler way.*
    I hope you're right, but I don't think there is a simpler way.
    BACKUP:  It also appears that the only way I can back up the catalog is to shut down LR.  Really?!
    Yes, really

  • HT201342 How do I change the 'Full Name' on my iCloud Mail (and on my Apple ID as I think this is where it gets the name)? Thanks

    How do I change the 'Full Name' on my iCloud Mail (and on my Apple ID as I think this is where it is getting my Full Name? Thanks

    To change it on and iOS device, go to Settings>Mail,Contacts,Calendars...tap your iCloud email account, tap you iCloud account at the top, tap Mail at the bottom, then enter the name you want to use in the Name field at the top.
    To change the From name on your Mac Mail, go to icloud.com, sign into your account, open Mail, click the gear shaped icon on the top right and choose Preferences, go to the Accounts tab and enter the name you want to use in the Full Name field and click Done.  Then quit Mail on your Mac and re-open it.  Your new From name should now appear in the drop-down list when you compose a new email.

  • Hi there, I have just bought an ipad4 but it will not connect to my internet. I have tried every suggestion going to no avail. My netgear DG834g router is fairly old , do you think this is the problem? I am at a loss now and very frustrated!

    Hi there, I have just bought my first ipad4 and have spent all weekend trying to connect to the internet. I have tried all Apple suggestions to no avail
    . My Netgear DG834g router is a few years old now. Do you think this may be the problem? Do they have compatibility issues after a while? My ipad upgrade is IOs 6. I am at a loss what else to do and needless to say extremely frustrated!
    Thanks.

    First check that your router has its latest firmware.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
    Since you are a new iPad user .....
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download an iPad User Guide to the iPad from the iTunes store.
     Cheers, Tom

  • I get think this is so great

    The late spring summer we interviewed for the second time Jimmy Moore on our program yes because he had that wonderful but cholesterol clarity that came out and you guys had just been at a conference together p.m. and in lots of people had written if an ass to me about his nutritional ketosis so I would encourage folks to go back in if you haven't seen that episode go back and look for the app is a virgin anymore with on just about five or six episodes back or 10 or so a bit that link also but you know in talking to me as I get think this is so great that this is working for you he had you know you lost a lot of weight on and kinds way back when but then his weight creep back up and then he turned in and fine-tuned his numbers for high-fat low-crab endowed down his pretty right back and I said that's all great Jimmy for you a guy threw me a woman in hermit to late forties and I'm now I want to know them idiots working for like me and he was just wonderful enough to connect me with you we had a wonderful conversation and I’ve just been so excited to get to I N can you tell us a little bit about yourself and in about that journey before I just keep babbling about how great it I sure on well I'm a psychiatrist by training and I sort fell into the nutrition WorldCom by accident on a maybe six years ago orzo allied developed a lotto unusual symptoms.
    For more information, visit this site >>>>>>> http://alphashredcritique.com/

    Your idea sounds like it will work. Printer connected to one end and the AE and Computer connected to the other sounds just fine.
    Post back with your results.

  • Pls take note that my IPad 3 used to find my printer HP wireless D110. The only thing that I did was to update to IOS 7.  Do you think this is the reason why my iPad cannot find my wireless printer?

    Pls take note that my IPad 3 used to find my printer HP wireless D110. The only thing that I did was to update to IOS 7.  Do you think this is the reason why my iPad cannot find my wireless printer?

    1. Turn the router, iPad and printer off
    2. Turn on the router and then wait 30 seconds
    3. Turn on printer and then wait 30 seconds
    4. Turn on your iPad and test print.

  • Mid 2010 MacBook pro took a keyboard spill.  It still works but display is sooo dark - like no backlight.  I think this is an LED screen.  Does anyone know the fix for this?

    Hi all...  My mid 2010 MacBook Pro took a keyboard spill.  It still works but the display is very very dark.  A faint image can only be seen at an angle in very bright light.  I think this model has an LED screen.  Can anyone please tell me what the fix for this is?  Thank you sooooo much! 
    < Email Edited By Host >

    Spill Cleaning
    Some liquid has just spilled into your Mac. What should you do?
    Do
    Immediately shut down the computer and unplug the power cord.
    Remove the computer's battery (if you can)
    Disconnect any peripherals (printers, iPods, scanners, cameras, etc.)
    Lay the computer upside down on paper towels to get as much liquid as possible to drip out.
    Note what was spilled on your Mac.
    Bring the computer into an Apple store or AASP as soon as possible.
    Don't
    Don't try to turn it back on. Liquids can help electrical current move about the components of your Mac in destructive ways.
    Don't shake the computer (this will only spread the liquid around).
    Don't use a hair dryer on it (even at a low setting a hair dryer will damage sensitive components).

Maybe you are looking for

  • How to create a custom plugin in Oracle Access Manager to create a cookie

    How to create a custom plugin in Oracle Access Manager to create a cookie or Header Variable.. Vipin

  • Passing structures bet top level functions and DLL's

    I need to access information stored in a structure(manipulated within a DLL) from the calling function. I defined the structure in the DLL include file and #include "dll_include.h" in the source code. The dll function manulipates the contents of the

  • IPod touch locks itself.

    I just updated my iPod touch 4th Gen. Ever since the lock button seems to lock my iPod automattically and then if I leave it long enough without touching it the slider will show up to turn it off. What can I do?

  • Component to VGA Cables? Any Luck?

    Hi all, buried in an earlier post someone mentioned they had made a component to VGA cable work with his ATV. Since I am one of the many with all my component inputs used up, but 2 VGA inputs open, I found such a cable, but it did not work. This DOES

  • FAVICON.ico in BSP with link  rel   =  "shortcut icon"....

    Hi, I built into my BSP a favicon.   <link  rel   =  "shortcut icon"          href  =  "favicon.ico"          type  =  "image/ico"> Sometimes it is indicated and sometimes not Do you know why? That is my Coding: <%@page            language          =