No flickr share sheet when more than 99 photos are selected

flickr share sheet does not appear when more than 99 photos are selected. So does Facebook, Airdrop and others except only "add to iPhoto". They all show up when >100 photos are selected but for more they don't
2010 MacBook Pro 15", Yosemite

*<100 not >100

Similar Messages

  • Wcf Data Service fails when more than 8properties  in the 'select=' portion

    Hi:
    I am using WCF Data Service and Oracle
    EF Provider is ODAC11.2 Release 4
    Wcf Data Service fails when more than 8 properties are specified in the 'select=' portion of the URI
    here is my code
    var q = from c in this.ctx.SALESORDER_ITEM
    select new
    c.SORDERDETAILID,
    c.IID,c.DMFLAG,c.OWNERID,c.SKUID,c.SKU_ID,c.TRADENO,c.SOURCEID,c.SORDERID
    excetion:
    InvalidOperationException: An error occurred for this query during batch execution. See the inner exception for details
    The inner exception is null, but the DataServiceClientException states: Value cannot be null Parameter name: value
    the exception is thrown in base.OnStartProcessingRequest(args) method (overridden).
    Here is the call stack as well:
    at System.Data.Services.WebUtil.CheckArgumentNull[T](T value, String parameterName)
    at System.Data.Services.Internal.ProjectedWrapper.set_PropertyNameList(String value)
    at lambda_method(Closure , Shaper )
    at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
    at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
    at System.Data.Services.Internal.ProjectedWrapper.EnumeratorWrapper.MoveNext()
    at System.Data.Services.DataService`1.SerializeResponseBody(RequestDescription description, IDataService dataService)
    at System.Data.Services.DataService`1.HandleNonBatchRequest(RequestDescription description)
    at System.Data.Services.DataService`1.HandleRequest()
    Is there a max number of properties in $select statement
    I think may be it is oracle provider's problem ,but i don't konw how to debug it Can anyone help me
    Any help is greatly appreciated

    I believe the null/empty string issue is unrelated to the 8 column issue, at least for ODP.NET. For example, let's take the original query in the OBE:
    http://.../yoursvcfile.svc/EMPLOYEES?$select=EMPLOYEE_ID,FIRST_NAME,LAST_NAME,SALARY,DEPARTMENT_ID,DEPARTMENT,EMAIL,PHONE_NUMBER,MANAGER_ID
    Let's make all the columns selected not nullable. You can do this with the Oracle Dev Tools. Specifically, PHONE_NUMBER and FIRST_NAME are the only nullable fields. I make them non-nullable and re-run the query and the same error occurs. Thus, these values should never be made null. Moreover, in all 107 rows, none of these row values consist of empty strings anyway.
    Looking into the problem further, WCF DS is calling methods in the System.Data.Services.Internal namespace.
    http://msdn.microsoft.com/en-us/library/system.data.services.internal.aspx
    Specifically, we see your issue when the ProjectedWrapperMany method is called. You will notice that there is ProjectedWrapper0, ProjectedWrapper1...ProjectedWrapper8 methods also present in the same namespace. As soon as the number of columns exceeds 8, ProjectedWrapperMany is called and we see the error. We're going to ask MS to help analyze the issue since this is an .NET-internal method being called.

  • Info broadcaster - falls over when more than 2 queries are in a workbook

    Hi everyone,
    We use IB reports extensively with over 2,000 IBs being sent out weekly.
    I have a query I want so send out via IB and I can create an IB setting on the query without issue.  However when I insert more than one version of the query in a workbook, and try to create an IB setting on the workbook, IB falls over once I select Create new Setting.
    Its a fairly chunky query, we have no issues running the query in the Analyser and we have a number of workbooks with 20+ sheets and the query on each sheet, the workbook is fine.
    Its just when we create an IB setting we have issues.
    Anyone encountered this in your own businesses?
    Thanks
    Gill

    Hi Gill,
    We can't say that the Broadcasting is successful,if you are abe to precalculate through backend.This just for a testing of preclaculation server and not for broadcasting.
    If you are able to broadcast through web, then only we can say it is succeeded.
    Rgds,
    Murali

  • Report File Substeps only listed when more than 2 entries are present

    Hi All,
    a short question regarding report file generation. Our report file has the problem that the substep report texts are only printed when the substep has more than 2 entries inside. Once the third entry (even it is some dummy entry, but it must write something to the report file) is present the sub report texts can be found inside the report.
    Michael

    Hi,
    Can you post an small example showing your problem?
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Serial write takes unexpectedly long when more than 7 bytes are written

    Hi,
    My vi is attached. 
    As you see, it's very simple.
    - output buffer fifo is set to 128 bytes, which is generously higher than my needs.
    - my baudrate is 2.5 mpbs.
    - I write string of 9 bytes such as 012345678, and the execution time of the vi is around 40 us. 
      I thought it's because of the blocking structure of the synchronous write, and I decided to switch to asynchronous
      write, since I need to go above 20 kHz.
    - when I switch to asynchronous write, it even gets worse, and I get ~58 us. it seems like asynchronous doesn't work at all.
    so far, I explained my problem. I also did some simple experiments to debug the problem.
    - when my string is shorter than 8 bytes, everything is beautiful, asynchronous write takes nearly 15 us.
      when I enter an 8 bytes or longer string, it jumps up to 58 us again.
    what am I doing wrong? I'm stuck here.
    Gorkem Secer.
    Attachments:
    serialWrite_niForum_pic.png ‏19 KB

    The driver might for a lot of reasons not want to or even can't fill up the 8 byte hardware FIFO buffer entirely. This could be for instance since it has to work around some bugs in certain hardware. It might not be necessary for the specific hardware revision in your system but that driver has to work for many different hardware systems.
    The magnitude of timing control you try to achieve is simply beyond a software system if you require reliable and hard timings. It may be possible to achieve on a simpler but still powerful embedded system with custom made software drivers and RT OS but not on a more general purpose RT OS even if the hardware is pretty powerful. But such more custom made solutions would be more than a few magnitudes more expensive to develop.
    You can keep barking up this tree but it is unlikely that NI can do much about it without redesigning parts of the RT system, which is pretty much out of question as they simply license it from Ardence/IntervalZero and only adapt it where it is strictly necessary to work with their hardware. Most likely their license doesn't even allow them to customize it at will in any other way than is strictly necessary to get it to work on their own hardware.
    Your options are as far as I can see, to either rethink the timing requirements or adapt the software in such a way that the bigger delay won't be a problem or to go with a hardware solution based on an FPGA board or similar.
    As to the difference of asynchronous write and synchronous that is mostly about what VISA API is called underneath. The LabVIEW function remains blocking for as long as is necessary to pass the data to the OS driver. In synchonous mode the LABVIEW VI calls the synchronous VISA API once and that simply waits until VISA returns from the function. For the asynchronous case LabVIEW calls the asynchonous VISA function and then keeps looping inside its own cooperative multithreading layer until VISA indicates that the asynchonous function has been performed. This is mostly for historical reasons when LabVIEW didn't have OS supported multithreading and all the multithreading happened in the cooperative LabVIEW code scheduler. Nowadays asynchonous VISA mode has almost no benefits anymore but genearlly will cause significantly more CPU load.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to handle Event when more that 2 rows are selected in a WD Table

    Hello WD developers,
    I need your assistance.
    My case is as following:
    I have a WD table populated with data.
    I also have several buttons in the toolbar table.
    One of those buttons should be enabled only in case that one row (and only one)
    is selected in the table otherwise it should be disable.
    The problem is that an even is triggered only when the first row is selected
    and when the second (third....) are selected no event occur.
    Do you have any idea How can I solve this issue.
    Thnaks in advance for your help.
    Regards
    Harry

    Hi,
    In the Onlead selection of table make it visible and invisble of your buttons as per your selection.
    The table have single selection and multi seletion options are availble when you defing the table you can find this options in the properties of the table.
    In onlead selection your button to be mapped with attribute WDVisble.
    And based on your selection you can visible and invisible.
    wdContext.currentContextElement.set<attribute>(WDVisble.Visble);
    and
    wdContext.currentContextElement.set<attribute>(WDVisble.NONE);
    This might helps you.
    Do you need more post your issues.
    Thanks,
    Lohi

  • When more than two tabs are open (no matter the content), FireFox (3.6 and 4.0) slows down and the CPU usage value on the Task Manager shoots up to 100%.

    The Memory usage also shoots up to about 475k MB. This has happened over two computers, the first being a stock Dell Inspiron 1620 with Windows XP and this one being a stock HP G72 with Windows 7. I used a data transfer cable to transfer all settings from the first computer to this computer. The problem persisted through 2 updates (3.5>3.6>4.0). The only FF add-ons I have downloaded are NoScript and AdBlocker; I also have several unused toolbars downloaded from various other applications (Yahoo, Norton, and AVG) and frequently use the Google toolbar, which in an unrelated matter stopped saving my searches or suggesting searches while typing at the 4.0 upgrade. If you need any more information, I'd be happy to post it.

    Try a new Profile in Firefox 4 and see how it is. <br />
    http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows

  • Why does Safari become unresponsive when more than 20 windows are open

    Does 3.0.3 fix this?
    It is extremely annoying to wait for the beachball for minutes on end after a certain number of windows( 15 to 25) are open. You can't open a new one , you can't close old ones, you can't scroll, you can't use the back arrow, you can't bookmark.
    I have tried iFreeMem to clear memeory, Empty cache, Clear History, keeping desktop clear of icons, nothing works.
    Mi compadres in the Photoshop Forum believe it is a file swap issue and the disk is being accessed repeatedly, but I don't think so. Fire Fox does the same thing but allows more windows to be open.
    I don't have any unresponsive or slow issues with anything else. Safari has always done this since at least 10.4

    It's not that I'm unfamiliar with tabbed browsing, I use it three times a day in Firefox for work purposes. Firefox has a less awkward tabbing scheme, for one thing.
    I't just that I never thought there would be a problem following links and leaving the previous windows open.
    Moving 25 gigs of files off my hard disk showed a temporary improvement in the number of windows I could have open in both FF and Safari, but it seems to have reverted to about 20 in S and 40 in FF. This , I thought, indicated that it was indeed a swap file slowdown, but now I don't think so. The next time I start linking, I'll use Open in Tab and see what happens. Not tonight, too tired.

  • Firefox 4 freezes when more than 3 tabs are open, it is using 1Gb of memory

    Win7 x64, Intel i5, 4Gb RAM, ATI Radeon 5700 series, all drivers up to date.
    I downloaded Firefox 4 today. I had 3 tabs open (two forums and 1 Google) I clicked on a Google article and Firefox froze. I opened Task Manager and closed it down. This happened 4 times. I started a new session, opened the 2 forums and put the same search into Google - it happened again.
    I uninstalled FFX4 and reverted to IE for my research. I then re-installed FFX3.6.16 and normality was restored.

    Try a new Profile in Firefox 4 and see how it is. <br />
    http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows

  • How can i place more than one photo on the print sheet

    im trying to place more than on photo on a sheet of photo paper, how do I do this

    There are basically two ways of using multiple iPods on a computer and these involve:
    a) Sharing a single iTunes library and user account.
    b) Creating multiple user accounts and having separate libraries.
    Sharing a Library
    If you want to share the one library, you can set either or all of the iPods so that they only get updated with only certain playlists (you can update from more than one if you wish):
    Loading songs onto iPod automatically - Windows
    Choosing the update option "Sync Music - Selected playlists" allows you to create a playlist specifically for the iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used some other time if you choose. You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes
    However since you seem to have a problem with that method you can choose to update any or all of the iPods manually and just drag whatever content you want to them: Managing content manually on iPod
    Separate User Accounts
    Another option is to create a separate User account for each person on your PC or Mac. Different accounts by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. The iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists
    If you are unfamiliar with setting up Windows user accounts you can read more here: Using Windows XP User Accounts

  • I have a 16GB san disc that when more than half full and trying to download to my Mac gives a "communication error" message.  How can I seamlessly upgrade the computers software to handle SDHC cards of this size?

    I have a 16GB San Disc that when more than half full and trying to transfer the images to the iPhoto library I get the message "communication error".  How can I update my computers software to be SDHC compatable?  I can buy a card reader but thought an update to the software would fix this problem.
    Thank you for any solutions or advice.

    KRDHarris-
    I am not familiar with Flickr, but found their support page at <Flickr Support>. You may get better help there than here.  I get the impression that the App is somewhat buggy.
    The iTunes preview page indicates the App is for iPad as well as the iPhone.  <Flickr App Preview>
    Fred

  • Excel 2013 (pro plus) extermely slow with sheets with more than 100 checkboxes

    I have a customer with Excel 2013 (pro plus).
    They use sheets with more than 100 checkboxes in it.
    The sheet is extremly slow to display. When a user starts scrolling down, the checkboxes appear very slowly, one by one.
    It happens with all users, on both x86 and 64bits Windows 8 PC's and Office clients (32b & 64b).
    Anyone any idea?

    Hi R.Nieraeth,
    Could you please let us know what exactly these checkbox was used for ? Any formulas depend on these checkbox? Or any VBA code in this excel file? If so, you may need to check your formulas or the VBA code.
    In addition,does this issue happen only on excel 2013? You can try to disable hardware graphics acceleration: Click
    File, and then click Options. In the Advanced group, click to select the
    Disable hardware graphics acceleration check box. Click ok.
    Also please check if the following thread is helpful:
    http://social.technet.microsoft.com/Forums/en-US/a9a257fa-ce8b-4399-860c-563022b8714f/checkbox-bug-in-excel-2010-slow-response?forum=excel

  • Multiple select queries used in Excel BI report ,fetching data from Sharepoint DB(SP2010_Prod_ProjectServer) causing blockage on DB ,when more than one workbook(same copy of Excel BI Report) refreshed using Refresh All option.

    I am using mutiple select queries to fetch data from Project Server 2010 DB(its sharepoint DB) and these queries fetch data in Excel BI report by establishing connection with DB using instance name and all. I have enhance all these select queries and data
    is being fetched in secs. but when more than one copy of same Excel BI report is refreshed using 'Refresh All' option, then these select queries cause blockage on DB.
    Please let me know mitigation for this blockage issue.
    Should I use begin transaction and commit transaction statements/ shared lock statements.
    please reply

    Hi,
    run same query at the same time?

  • How do I select more than one photo for a contact sheet

    I am trying to print more than one photo per contact sheet (to save photo paper!) Iphoto help says to select the photos you want on the contact sheet and also to select how many photos you want on the "options" button on the contact sheet style selection. I cannot find either option in Iphoto.
    Thanks in advance,

    Before you select "Print," hold down the shift key and click on each photo that you want on the contact sheet.
    Then select "Print" with Style "Contact Sheet." The resulting window allows you to select the quantity of contact sheets that you want to print.

  • How do i put more than 1 photo on an 8x10 sheet of photo paper so i can print 3 or 4 at a time?

    how do i put more than 1 photo on an 8x10 sheet so i dont waste photo paper???

    select the photos and go to file ==> print (iPhoto '11) - select the printer, paper size and photo print size (be sure they will physically fit) and click customize - under seettings seect multiple photo pre page (preview will show the results) and click print - select any printer specific options and click print to print
    LN

Maybe you are looking for

  • Issue when switching rooms in spark but does not exist in mx namespace?

    I have a Flex SDK 4.0 application that I have declared with <s:Application.  In this application I have 2 rooms, that have two different ConnectSession components associated with each as well as seperate Pod's with seperate shareID's for each. (nothi

  • How can I burn a DVD of an iMovie 13 project using iDVD 7.1.2 version.

    I have a late model iMac which came with iDVD.  I use iMovie to make photo and movie projects and share them to  iDVD to burn DVDs.  I use these often and I love them, specially iDVD. When Mavericks came out I updated and of course it changed iMovie.

  • GarageBand and Garritan Libraries (GPO, GJBB)?

    Hi all, I recently purchased Garritan Personal Orchestra and Garritan Jazz and Big Band along with Finale 2006, and am attempting to integrate them with GarageBand. The help section that covers this topic gave me pretty vague instructions, and I was

  • Raising a notification from 3rd party software

    Hi We have a client looking at raising notifications within the asset management system of SAP via a sql/.net software application. The 3rd party software has a defect register which could be used to open the SAP notification. We would like to popula

  • Air desktop application: how to make a menu item bold?

    Hi, I'm using Flash CS6 to develop an AIR desktop application for OSX. I've created my menu using NativeMenu and such, but I can't find a way to make the first menu item bold, like a true OSX app. So far the little I've found on this always referred