Apple software developers please read

Many people have converted their personal spreadsheets to numbers to take them on the go. You need to give an option to password protect the numbers program. If someone steals or if I misplace my iPad, I do not want others to have access to my spreadsheets!
Please insert an option to password protect numbers!

gb apple tv2 wrote:
Please insert an option to password protect numbers!
The right place to post that here:
http://www.apple.com/feedback/numbers_ipad.html

Similar Messages

  • I wonder if the apple software developers can come up with a password input before you switch your phone to airplane mode?

    I wonder if the apple software developers can come up with a password input before you switch your phone to airplane mode?
    Could this be a solution to making your phone less prone to be stolen and easier to find in such case?
    Just asking.

    Tell Apple...
    http://www.apple.com/feedback/

  • Apple Windows iTunes Developers:  Please Read

    Seriously, as a professional software engineer, can I BEG you to read http://msdn.microsoft.com/en-us/library/s3w9x78e(VS.80).aspx. Its really not a difficult function, ALL, and I MEAN ALL of your I/O belongs in a THREAD! You can use http://msdn.microsoft.com/en-us/library/9tdesxec(VS.80).aspx to update your progress dialogs. Its THAT simple. Yes, it is. Read it again, and again, and again, heck heres, a highly oversimplified example!!! Yes, feel free to use any of that...There is NO GOOD REASON as a WINDOWS APP to grab the focus EVERY 10 SECONDS! Thats just a hack to prevent windows from saying this program is not responding, and any developer sees right through it. Quit with the lazy programming, and put your I/O in a thread where it belongs (or I suppose ASynchronous I/O would be acceptable), and stop interrupting me every 10 seconds while my iPhone updates! Seriously!!! Knock Knock? Who's there? Interrupting Jeeves. Interrupting Jee....INTERRUPTING JEEVES!!!!!! yeah, iTunes is kinda like that, over and over and over again. Even better to note, the windows API for threads mostly maps pretty easily to POSIX threads, so you could do something VERY similar to the thread portion of that code, and have it work on both platforms. I've written thin POSIX layers for windows with some inline functions, and a lot of #defines. Or, you could just use a cross platform system like QT. Its LGPL now, it works on Mac OSX, Linux, and Windows, same code compiles on all three. You could easily bring iTunes to linux and open up a whole new market! That might be the smart thing to do....probably why I do stuff like this every single day...
    Seriously though, and I mean seriously, PUT YOUR I/O IN A THREAD!!!!!!!!
    ----Begin oversimplified code example-------
    #include <stdafx.h>
    #include "iPhoneUpdateProgressDialog.h"
    #define WM_IPHONEUPDATEMESSAGE WM_USER+1
    #define IPHONEMESSAGE_UPDATING=0
    #define IPHONEMESSAGE_RESTORING=1
    #define IPHONEMESSAGEWHATEVER_TYPES_YOU_WISH_TOSEND=2..n
    class iPhoneUpdater
    public:
    static UINT AFX_CDECL UpdateThreadCreator(LPVOID lpParameter);
    protected:
    void InternalUpdateThread();
    BOOL SendSomeMoreData();
    void UpdateiPhone();
    //I like seperate blocks for my data...just a style thing...
    protected:
    //I don't like private data...I always come across some arrogant OOP
    //programmers private data and think, I NEED to modify that in my
    //derived class...why make something trivial private?
    CiPhoneUpdateProgressDialog* m_pProgressDialog;
    CWinThread* m_pThread;
    //This will run in the new thread context, but serves just to get us back into
    //the class context, so we have access to our private and protected members
    //again. Its not tough to keep straight...
    UINT AFX_CDECL iPhoneUpdater::UpdateThreadCreator(LPVOID lpParameter)
    iPhoneUpdater* self=(iPhoneUpdater*)lpParameter;
    self->InternalUpdateThread();
    return 42; //why 42? Its the answer to the meaning of life the universe and
    //everything of course! We could
    iPhoneUpdater::InternalUpdateThread()
    //Yup, still in the new thread context, dont directly access gui elements
    //from here...Use PostMessage instead...
    BOOL bRet=SendSomeMoreData();
    while(bRet)
    bRet=SendSomeMoreData();
    iPhoneUpdater::SendSomeMoreData()
    //Yup, still in the new thread context, dont directly access gui elements
    //from here...Use PostMessage instead...
    unsigned int PercentComplete=0;
    //Do some apple proprietary crap here which updates PercentComplete
    //Yup, that simple to update the GUI Dialog across thread boundries. I do
    //this *ALL THE TIME*. Not a big deal at all!!! No need to grab focus
    //away from other apps every 10 seconds so windows doesn't think iTunes
    //isn't responding, and block people from doing what they might otherwise
    //do...you can thank me by implementing it...
    mpProgressDialog->PostMessage(WMIPHONEUPDATEMESSAGE,
    (WPARAM)IPHONEMESSAGE_UPDATING,
    (LPARAM)PercentComplete);
    void iPhoneUpdater::UpdateiPhone()
    //At this point we are in the GUI thread...however, UpdateThreadCreator
    //will run in the new thread context, AfxBeginThread will return
    //immedatly...
    m_pThread=AfxBeginThread(UpdateThreadCreator, (LPVOID)this);
    //Simple right?
    }

    Suggestions to Apple will be best submitted through the iTunes feedback page. Your comments will be most likely to get to the proper people within Apple that way. Everyone here is by and large just a fellow user.
    Regards.

  • Apple/Safari People Please Read -- Interface Language Gripe

    The Apple/Safari people need to read this.
    First, thank you for making Safari available for Windows. It's very nice, but could be better. Please address the following:
    My native language is English. I live in Japan and use Windows XP Japanese version. My computers and I are bilingual. I choose which language to use for whatever function. I was pleasantly surprised with Safari 3.0.4, and hoped to see it develop into something better. It installed nicely in English. Safari 3.1 thinks it knows what language I want, but it's wrong. I want the English interface. Deleting the ja.lproj folders did not work -- it reset itself to Japanese. Please let us install the language version we want, regardless of the OS. I unfortunately won't be using Safari anymore until this is fixed.
    While I'm at it: I noticed that 3.0.4 always automatically "sniffed out" (from the OS) any Japanese home site for big multi-language sites: Google, Yahoo!, etc. If we click a link to the English site, or type in the URL, we don't need software figuring out which language site we want to go to. We multi-lingual/expat-types know what pages we want and how to go there. Be like Firefox and don't decide for us. Please ignore the OS language. Please!
    Also, when creating my Apple ID, I was given my choice of language -- Japanese. Because my address is here Japanese was the only language choice.
    Once again, thanks; but please realize that we all don't fit in the cookie cutter group, and give us the freedom to choose our languages.

    I totally agree.
    I usually speak four languages, and choose depending the country I am in at the moment.
    I want my Safari 3.1 to speak Italian now, I know it can as I can locate the it.lproj folders into the source folder. Still I can't choose, Safari does it for me and chooses English...
    Very annoying.
    I see this as a major overlook.
    /P

  • **BUG (workaround) Sluggish PRE (Palm software gurus - please read)

    Not sure if the Palm Developers ever get on here and take a look at issues, but there is s STRANGE workaround found for a Pre that becomes sluggish.
    Every so often the Pre will start slowing down and acting really jittery when trying to open/run applications.  BUT if you go to your call history and Clear it out... the phone returns to working faster.  It's really sad that it doesn't take many calls in the history to make the Phone application start lagging heavily, but to have the rest of the phone's applications speed up once the history is cleared is nothing but crazy.
    I truly hope Palm addresses this whacked out bug soon because I'm sooo tired of having my phone slow down (it isn't that fast to begin with).   This is by far the BEST phone I've ever owned, with WebOS being sheer genius.  But please address the issue of call history affecting the speed of all applications.
    Thanks!!

    Hi 
    I am really sorry for the inconvenience caused to you .  Please send me a private message with all your details
    I will ensure that your issue is addressed  and fixed as per your expectations
    Hope This Helps
    Cheers!!!
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with Kudos!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!  This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • IPhone developers, please read...

    If your question is specific to the iPhone, please clearly indicate that in the subject of your posting. The iPhone SDK is apparently quite different that the Mac API. A couple of times I have answered some questions incorrectly because I didn't know someone was working with the iPhone SDK. I have also seen the reverse, where someone answered a Mac question with an iPhone response that might not be appropriate.
    Most of the time, I can tell right away that a question is about the iPhone and I can ignore it. I have nothing against the iPhone and I may play with it in the future. But for now, I'm clueless about it and I don't want to provide useless and incorrect answers.
    Thanks

    Additionally,
    To post your code unaltered by the formatting you need to bracket your code like this:
    { code }
    your code here;
    { code }
    without the spaces near the brackets to get the desired effect.
    foo = [self bar:foo];
    Having your code correctly represented will help you immensely when asking people for help with debugging.
    Also the correct place to report bugs and or make feature requests is: https://bugreport.apple.com
    That is the only official feedback site that is guaranteed to get the issues in front of the people who actually work on the things you're reporting about. Even if you get a "Duplicate Report" message for every bug you file volume of reports about an issue can help move it to the top of the queue.
    Apple does pay attention and track issues reported here - especially for beta releases - so good, clear, concise bug reports entered here helps everyone. However, if you are new to Cocoa please make sure that the problem actually lies with the thing you're reporting and not with your understanding of the thing you're reporting. Keeping the signal to noise ratio good will again help everyone involved.
    Thanks for your attention,
    =Tod
    PS In lieu of a sticky maybe we can bump this thread to keep it visible?

  • ATTN:::Nightmare with Titanium Software Onyx Please read

    I was doing some cleaning using Onyx and executed one of the auto scripts and sinsce then Logic Pro will not open - it goes as far as "Searching for Audio Unit Plug-Ins" and just freezes.
    Here is what i have tried.....
    Trashing Audio Unit and Logic Pro caches & preferences - Result - No Change
    Holding CTRL and selecting no when asked to load Core Audio - Result - Logic opens but no Audio Unit Manager and any plug in marked has cross through it.
    Opening Logic from a song file - Result - Song opens but all plug ins used have a line through them.
    Removing Plug-ins from component folder - No Change
    I remember that during one use of Onyx I selected delete Audi Unit Cache and on another reset launch services
    has anyone else had this issue? I have searched the forums butcannot find this problem. PLEASE BE CAREFUL WITH ONYX as I would not want this happening to anyone else.
    any advice very very welcome.
    Ivan

    Solution:: trash the cahce folder in both computer/library/cache and user/library/cache
    do not tick the box for onyx to delete the audio unit cahce

  • View Link Bug!  - JDEV Developers please read.

    This has to be a bug. When I am done with my project for the day I check in the files into PVCS. After check in the files are deleted off my local drive. When I recheck out my project and do a rebuild on the project, I get several View link XML files that say that they are not correct. However when I pull them up in the editor and relink them, there is NO CHANGE to the XML file that stores the DEF. Below is a sample of one of the files. If I go into this view link with the visual editor and reselect the linking nodes, all is fine in JDEV.
    Is this a bug that is being worked on for the next version?
    SAMPLE
    <?xml version='1.0' encoding='windows-1252' ?>
    <!DOCTYPE ViewLink SYSTEM "jbo_03_01.dtd">
    <ViewLink Name="RequestCauseLookupVL">
    <DesignTime>
    <Attr Name="_isCodegen" Value="true"/>
    <Attr Name="_version" Value="10.1.3.36.73"/>
    </DesignTime>
    <ViewLinkDefEnd Name="RequestVO" Cardinality="1"
    Owner="dataAccess.Request.RequestView" Source="true">
    <AttrArray Name="Attributes">
    <Item Value="dataAccess.Request.RequestView.CauseCd"/>
    </AttrArray>
    <DesignTime>
    <Attr Name="_finderName" Value="RequestVO"/>
    <Attr Name="_accessor" Value="true"/>
    <Attr Name="_minCardinality" Value="1"/>
    <Attr Name="_isUpdateable" Value="true"/>
    <Attr Name="_entityAccessor" Value="true"/>
    </DesignTime>
    </ViewLinkDefEnd>
    <ViewLinkDefEnd Name="ReqCause_LOV" Cardinality="1"
    Owner="dataAccess.lov.ReqCause_LOV">
    <AttrArray Name="Attributes">
    <Item Value="dataAccess.lov.ReqCause_LOV.LookupId"/>
    </AttrArray>
    <DesignTime>
    <Attr Name="_finderName" Value="ReqCause_LOV"/>
    <Attr Name="_accessor" Value="true"/>
    <Attr Name="_isUpdateable" Value="true"/>
    <Attr Name="_entityAccessor" Value="true"/>
    </DesignTime>
    </ViewLinkDefEnd>
    </ViewLink>

    Hi Steve,
    JDev appears to be updating the viewlink files. I have not edited any of them and they all have the timestamp of when i closed JDev last Friday:
    -rw-rw-rw-   1 user     group        1236 Sep  1 16:45 ApprovalDetailsFkLink.xml
    -rw-rw-rw-   1 user     group        1224 Sep  1 16:45 InvestigatorsFkLink.xml
    -rw-rw-rw-   1 user     group        1260 Sep  1 16:45 MulticentreProjectsFkLink.xml
    -rw-rw-rw-   1 user     group        1258 Sep  1 16:45 PrjWorklistItemsFkLink.xml
    -rw-rw-rw-   1 user     group        1200 Sep  1 16:45 FieldBasedFKLink.xml
    -rw-rw-rw-   1 user     group        1195 Sep  1 16:45 GmAnimalsFKLink.xml
    -rw-rw-rw-   1 user     group        1225 Sep  1 16:45 HarmfulFKLink.xml
    -rw-rw-rw-   1 user     group        1032 Sep  1 16:45 ObservationFKLink.xml
    -rw-rw-rw-   1 user     group        1226 Sep  1 16:45 OtherInvestigatorsFKLink.xml
    -rw-rw-rw-   1 user     group        1196 Sep  1 16:45 OtherPartiesFKLink.xml
    -rw-rw-rw-   1 user     group        1028 Sep  1 16:45 PermitsFKLink.xml
    -rw-rw-rw-   1 user     group        1206 Sep  1 16:45 ProjectPartiesFKLink.xml
    -rw-rw-rw-   1 user     group        1042 Sep  1 16:45 RespInvestigatorsFkLink.xml
    -rw-rw-rw-   1 user     group        1012 Sep  1 16:45 SurgeryFKLink.xml
    -rw-rw-rw-   1 user     group        1190 Sep  1 16:45 TeachingFKLink.xmlthe CVS looks like this (August 24 was when i deleted them all from CVS and re-added them):
    -r--r--r--    1 banstey  dba          1347 Aug 24 09:51 ProjectPartiesFKLink.xml,v
    -r--r--r--    1 banstey  dba          1172 Aug 24 09:51 PermitsFKLink.xml,v
    -r--r--r--    1 banstey  dba          1337 Aug 24 09:51 OtherPartiesFKLink.xml,v
    -r--r--r--    1 banstey  dba          1367 Aug 24 09:51 OtherInvestigatorsFKLink.xml,v
    -r--r--r--    1 banstey  dba          1176 Aug 24 09:51 ObservationFKLink.xml,v
    -r--r--r--    1 banstey  dba          1399 Aug 24 09:51 PrjWorklistItemsFkLink.xml,v
    -r--r--r--    1 banstey  dba          1401 Aug 24 09:51 MulticentreProjectsFkLink.xml,v
    -r--r--r--    1 banstey  dba          1365 Aug 24 09:51 InvestigatorsFkLink.xml,v
    -r--r--r--    1 banstey  dba          1377 Aug 24 09:51 ApprovalDetailsFkLink.xml,v
    -r--r--r--    1 banstey  dba          1325 Aug 24 09:51 AnimalFKLink.xml,v
    -r--r--r--    1 banstey  dba          1331 Aug 24 09:51 TeachingFKLink.xml,v
    -r--r--r--    1 banstey  dba          1186 Aug 24 09:51 RespInvestigatorsFkLink.xml,v
    -r--r--r--    1 banstey  dba          1341 Aug 30 11:37 AnimalCareFKLink.xml,v
    -r--r--r--    1 banstey  dba          1341 Aug 30 11:38 FieldBasedFKLink.xml,vTimestamps of my associations are all over the place, which is consistent with the creation process.
    Will do an unchanged commit and post the results.
    regards,
    Brenden

  • Is ther an Apple software update server solution for a Microsoft environment?

    My organization has more than 3000 Apple devices. Im trying to centralize mac sotware updates without adding a mac box. We are a Windows Server 2012 R2 environment.  Thanks for all the help.

    No, but there is a Linux one:
    http://signalboxes.net/mac2linux/reposado-apple-software-update-server/

  • Repeat One!... developers of apple iPod and iTunes read this!

    It’s not an issue I think anyone can help me with but I hope the developers of apple iPod and iTunes read this.
    I am a full supporter and user of both iTunes and iPod…. But some things have always bugged me. :P
    Repeat one
    Can you please, for everyone’s sake, fix the repeat one function? Yes, when the ipod gets to the end of the song I want it to repeat the song ones more. But when I select next (>>) I’m sick of the song and wound like the next one. But instead it just starts over on the same track.
    Today I have to click menu, scroll down and select play on the next song to move forward… meaning I actually have to take the iPod out of my pocket and see what I’m doing.
    iTunes music library.
    Another thing which would have been practical in these holiday times would be a separate music library function for iTunes. In other words be able to select, load and save different library for different usages.
    Why you say?....
    1.I don’t need my holyday Christmas songs clogging up my library in the summer.
    2.When I do sound work for animations I like to have my sound FX and background music outside of my music list.
    3.Some people are, (believe it or not), ashamed of some of their music and would like to store theme where no one can se them. Say I invite the boys over for some iron maiden and they end up finding my backstreet boys album. (yikes)
    4.Say you have some very privet videos or sound books you don’t want your kids to here or see.
    5.When I need background music for some tabletop role-playing I wand them in a separate list as well.
    6.ETC
    And before you say it… NO… play lists, and do not include in shuffle isn’t the solution…. neither is users. Have you even seen how terrible Microsoft user system works? (Yes I know get a MAC, but you can’t always play that card.)
    This function really shouldn’t be difficult to make since you have the “iTunes Library.itl” file already.
    This is just my opinion so fare, but if anyone agrees or disagrees; Pleas post a reply.
    It’s all in good fun… As I said, I love my iPod and iTunes except for these issues. (Well I could talk about volume but… naaa, enough badgering for one night :P)
    Best of days
    Tee

    No Apple software engineers (the people who can implement these requests) contribute to these forums.
    Use either one (or both) of these links.
    iPod Feedback.
    iTunes Feedback.
    "This is just my opinion so fare, but if anyone agrees or disagrees; Pleas post a reply.
    No please don't as that will acomplish nothing. The feedback links are the way to go.

  • When trying to install itunes on my PC, I get the message (unable to remove the older version of Bonjour as well as the message unable to remove the older version of Apple software update). Please advise how to proceed.

    Please help with this problem. When trying to install itunes on my HP520 PC, I get the error message (unable to remove the older version of Bonjour as well as the message unable to remove the older version of Apple software update).

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get aCode 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Apple Software Updateentries and click "Remove", as per the following screenshot:
    Next, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Does it go through properly this time?

  • HT1926 I cannot connect my iphone to itunes. When I go through the troubleshooting, it tells me to uninstall and re-install itunes. BUT I do not have Apple Software Update or Quicktime to uninstall. It tells me that Apple Services failed to start!! Please

    I go through all the motions in troubleshooting and uninstall Itunes, but I have not got Quicktime and Apple Software Update to uninstall. I then re-install Itunes but I get an error saying that 'Service Apple Mobile failed to start. Verify you have sufficient privileges to start'. Which I have.  Please help!!

    I have the same problem, did you find a solution?

  • Trying to download latest iTunes, but I keep getting "The older version of Apple Software Update cannot be removed.  Contact your technical support group."  Please help.

    Please help.  I am trying to download the latest version of iTunes so I can synch my new iPhone.  I keep getting "The older version of Apple Software Update cannot be removed.  Contact your technical support group."  Please help as I have absolutely no idea.  Thanks.

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • My ipod was disabled and i tried to restore it, now i am downloading an apple software update which is taking a **** lot of time and ipod is still disabled.. will it be ok after the download ends? help please..!!

    my ipod was disabled and i tried to restore it, now i am downloading an apple software update which is taking a **** lot of time and ipod is still disabled.. will it be ok after the download ends? help please..!!

    We need to know more about your system, please download EtreCheck and run the report and please post it on your next reply. Then we can see how your system is configured, what apps are on it and look for anything obvious. We will look forward to seeing your report.

  • I can not uninstall or repair my Apple Software Update.  Can someone please help?

    I am having problem installiny the latest Itunes.  I have tryed repairing my apple software update,  i have also tryed unistalling and reinstalling itunes.  i keep getting a message that a fatal error has occured.  Can someone pleez help?

    I have tryed repairing my apple software update,
    Can you walk us through what happens when you try to repair ASU? (If you get an error message, let us know what it says. Precise text, please.)

Maybe you are looking for

  • Problem occuring while uploading the template therough BAPI

    Hi, I'm uploading inspection plans template through BAPI. While uploading its giving a error message like invalid file type. I'm using Excel sheet. I tried through Text format also. Same error message i'm getting. Can anybody help me. Regards, Narend

  • Printer not printing black ink Hp Deskjet D4360 / Carriage jammed not moving on Hp Officejet 4622

    my cartridge is full and i did the blot test ink showed up but still not printing this is my HP Deskjet D4360  and my HP Offciejet 4622 keeps saying carrage is jammed and not moving  and i tryed everything Help me please lalasmiles30 3

  • Microsoft Word- printing a books?

    I can't seem to figure out to get my Microsoft word to print a book. On a Windows PC, there is the option to print a document in booklet form, where the pages are doubled and you can print entire books this way. i see a lot of questions about Apertur

  • Appletalk printers?

    how do you connect a printer with a serial connector (prior to USB on mac) or appletalk to a newer mac? I noticed that my first printer still has support on snow leopard, but not my USB printer, so I really wondered how to do it...? thanks

  • Blind Spot since 7.0.2?

    Since I've updated my iPhone 4 from 7.0 to 7.0.2 I have massive problems with the display/touch. There is a blind spot in the lower middle around the r-t-z-f-g-h- Keys and above! I can, sometimes, hit the key when i come from the e sliding to r or fr