Is there a limit on the size of Exchange mailbox?

One of my user has 8Gb of data stored on the Exchange server mailbox. (Yes, on the server, not local pst)
Since ipad can store up to 1,000 recent messages, is there is limit on the size of 1,000 emails to be stored locally on the iPad, assuming the user has a 64Gb New iPad?

no

Similar Messages

  • DeserializeJSON - is there a limit on the size of the JSON data that can be converted?

    I have some valid JSON data that's being converted successfully by DeserializeJSON... until it gets to a certain size, or that's certainly what appears to be happening.  The breaking point seems to be somewhere in the neighborhood of 35,000 characters... about 35KB.  When the conversion fails, it fails with a "JSON parsing failure: Unexpected end of JSON string" message.  And when the conversion fails, the JSON data is deemed to be valid per tools like this one:  http://www.freeformatter.com/json-validator.html.
    So, is there a limit on the size of the JSON data that can be converted by DeserializeJSON?
    Thanks!

    Thanks Carl.
    The JSON is being submitted in its entirety, confirmed by Fiddler.  And it's actually being successfully saved to a SQL Server nvarchar(MAX) field too.  I can validate that saved JSON.
    I'm actually grabbing the JSON to convert directly from the SQL Server, and your comments / thoughts led me down the path of resolution.
    Turns out that the JSON was being truncated prior to getting to the DeserializeJSON command, but it was the cfquery pull that was doing the truncating.  The fix was to enable "long text retrieval (CLOB)" for this datasource in CF Admin.  I'd never run into that before or even knew that this setting existed.
    Thanks again for your comments!

  • Is there a limit on the size of the input for the Solve Linear Equations block?

    Hello,
    I'm trying to figure out why the Solve Linear Equations block will properly function with some sets of data and why it won't with others. What my program is doing is taking a signal and comparing it with a batch of sine and cosine waves to try and pick out patterns in the data. I have different sample sizes and it seems to work when I throw 3900 points at it. However, I have another set with 4550 points and it gives me incorrect amplitudes for my sinusoids.  Is there some limit to the size of the matrices that I can give this block? Or is there some other workaround that still allows me to keep all of my data?
    Thanks,
    David Joseph

    Well, the best way to show what I expect is to see the entire program. It's pretty evident that when looking at the graphs, something isn't right. What is supposed to happen is that the runout amplitudes are found, and then those sinusoids are subtracted from the initial data, leaving tooth to tooth data and noise. When I use the larger arrays, it seems as though not all of the data gets through (count the peaks on the product gear runout graph vs. initial) and the amplitudes are much to small, such that nothing is really taken out and the tooth to tooth data looks like the initial data.
    Also, we will also be using an FFT, but it will be limited to only determining the frequencies we should check. I've fought with the fft blocks quite a bit and I just prefer to not use them. Plus, the guy I'm writing this for wants exact answers and does not want to pad or resample the data or use windows.
    The exact number of data points isn't important (ie. 4550 vs 4551) since I use the array size block to index the for loop.
    As for typical values, they can change a lot based on materials. But, the original 3900 data point sets and the 4550 data point sets used practically identical gears. So, use the original 3900 sets I've included as references (check the RO array block numbers to compare).
    I've included 3 3900 samples, 3 4550 samples, and 3 4550 samples that have been truncated to 3900 or so as constants on the block diagram.
    Also, the check for additional runouts (like 3 per rev, 4 per rev, etc..) is optional, but if you choose to use it, use positive integers only.
    I don't know how much of this program will make sense and I have wires running everywhere.. so good luck. Keep in mind I'm only a student and I hadn't touched Labview until about 2 or 3 months ago.
    Thanks,
    David Joseph
    Attachments:
    Full example.vi ‏139 KB

  • Is there a limit on the size of SDHC card that can be read with the iPad camera connectioin kit?

    Is there a limit on the size of SDHC card that can be read with the iPad camera connection kit?

    I've successfully connected 32 gig SDHC and CF cards so if there is an upper limit, it's at least 32 gig.
    I know SDXC will not work.
    With the cards that don't work, have they been formatted correctly? the camera connection kit will only read cards holding images. (Well, it'll only see the images) And those images have to have a file name of exactly 8 characters (DSC_2342 for example) and they  have to be in a folder named DCIM.
    Anything else it wont' read.
    I put a photo on there called 'Christmas' and the connection kit won't see it. I put a photo on there in the DCIM folder named XMAS2342 it'll see that.
    So it's possible that those cards weren't read because they weren't speaking the right language.

  • Is there a limit to the size of string we can paste in a text area ?

    Hi,
    I have a dialog box and in it a Text Area. When I copy from another page a large amount of data and try to paste it in the text area - it doesn't work.
    I can't paste in it more data but I can type in it manually.
    Is there a limit to the size of string we can paste in a text area ??
    Thanks in advance:)
    maya

    There is no Limit to the string size. Since Swing follows MVC architecture, the data to be pasted is stored in model and the view shows the text to the user. If the text size is large, the screen appears to freeze for the some time while the data is stored in model and painted on the screen.

  • Is there a limit for the size of video in iCloud?, is there a limit for the size of video in iCloud?

    I recently updgraded to the iPhone 5S from the iPhone 5. Prior to using the the 5S i backed up the contents to my 50GB iCloud storage.
    Unfortunately I have found that some of my videos were not downloaded to my new phone.
    Is there a limit on size that icloud will accept? I have I lost my videos?
    Cheers
    redman69

    The number must be stored in some internal structure
    like an array. And there's a limit on the size of an
    array, because the maximum index you can use is
    Integer.MAX_INT. So it follows that there must be a
    maximum BigInteger value too.Why can't it be split into 2 arrays when it overflows the first? I don't know the actual implementation, but it could be of relatively unlimited size.

  • Is there a limit to the size of a formatted xlsx spreadsheet created by ColdFusion?

    I'm using cfscript to create a (fairly) large xlsx spreadsheet.  As I was developing the script and the spreadsheet grew in size, I started getting the following error when attempting to open the spreadsheet:
    I narrowed down the problem to my use of the functions used to format cells (specifically, SpreadSheetFormatCell and SpreadSheetFormatCellRange).  I found that by commenting out some of those function calls, the error would disappear.
    After much trial and error, I've now come to believe that the issue isn't incorrect usage of the formatting functions, but rather some sort of internal limit I'm running into.  I threw together a simple test case to show this.  The following code (named "bigSheetTest.cfm" on my system) can be used to show the problem (at least on my machine):
    <cfscript>
    maxrows = 725;
    formatBoldCenter = StructNew();
    formatBoldCenter.bold = "true";
    formatBoldCenter.alignment = "center";
    formatBoldUnderlineCenter = StructNew();
    formatBoldUnderlineCenter.bold = "true";
    formatBoldUnderlineCenter.bottomborder = "medium";
    formatBoldUnderlineCenter.alignment = "center";
    formatNumber = StructNew();
    formatNumber.dataformat = "##,####0.00";
    formatMoney = StructNew();
    formatMoney.dataformat = "$##,####0.00";
    xls = SpreadSheetNew("Big Sheet", true);
    row = 1;
    bps = 30;
    for(bp=1;bp LE bps;bp++) {
              col = 3*bp - 2;
              SpreadSheetMergeCells(xls, row, row, col, col+2);
              SpreadSheetSetCellValue(xls, "Reporting Period #bp#", row, col);
              SpreadSheetSetCellValue(xls, "Current RG", row+1, col);
              SpreadSheetSetCellValue(xls, "Hours", row+2, col);
              SpreadSheetSetCellValue(xls, "Current OT", row+1, col+1);
              SpreadSheetSetCellValue(xls, "Hours", row+2, col+1);
              SpreadSheetSetCellValue(xls, "Current", row+1, col+2);
              SpreadSheetSetCellValue(xls, "Cost", row+2, col+2);
    lastCol = bps * 3;
    row++;
    SpreadSheetFormatCellRange(xls, formatBoldCenter, row, 1, row, lastCol);
    row++;
    SpreadSheetFormatCellRange(xls, formatBoldUnderlineCenter, row, 1, row, lastCol);
    row++;
    for(i=1;i LE maxrows;i++) { // 724 ok, 725 results in Excel error "Excel found unreadable content in 'bigSheetTest.xlsx'.  Do you want to recover the contents of this workbook?  If you trust the source of this workbook, click Yes."
              for(bp=1;bp LE bps;bp++) {
                        col = 3*bp - 2;
                        SpreadSheetSetCellValue(xls, i*col/(i+3), row, col);
                        SpreadSheetSetCellValue(xls, i*col/(i+4), row, col + 1);
                        SpreadSheetSetCellValue(xls, i*col/(i+5), row, col + 2);
                        SpreadSheetFormatCellRange(xls, formatNumber, row, col, row, col + 1);
                        SpreadSheetFormatCell(xls, formatMoney, row, col + 2);
              row++;
    SpreadSheetWrite(xls, "C:\bigSheetTest.xlsx", true);
    </cfscript>
    Notice the "maxrows" variable at the top of the code.  When set to 724 (on my machine) the resulting spreadsheet may be opened without error.  However, if I change that variable to 725, Excel complains with the error "Excel found unreadable content in 'bigSheetTest.xlsx'.  Do you want to recover the contents of this workbook?" when I try top open the spreadsheet.  Any ideas on what causes this issue and how to avoid it?
    If you are not able to recreate this problem with maxrows set to 725, try increasing the value until you get the problem.
    Here are the specifics on my environment:
    Windows 7 Enterprise (64 bit) with 8 Gig of RAM, Intel Core i7-3520M CPU @ 2.90GHz
    Microsoft Office Professional Plus 2010
    Microsoft Excel Version 14.0.7106.5001 (32-bit)
    System Information
    Server Details
    Server Product
    ColdFusion
    Version
    ColdFusion 10,285437
    Edition
    Developer  
    Operating System
    Windows 7  
    OS Version
    6.1  
    Update Level
    /C:/ColdFusion10/cfusion/lib/updates/chf10000011.jar  
    Adobe Driver Version
    4.1 (Build 0001)  
    JVM Details
    Java Version
    1.7.0_15  
    Java Vendor
    Oracle Corporation  
    Java Vendor URL
    http://java.oracle.com/  
    Java Home
    C:\ColdFusion10\jre  
    Java File Encoding
    Cp1252  
    Java Default Locale
    en_US  
    File Separator
    Path Separator
    Line Separator
    Chr(13)  
    User Name
    F1610-7X7HKX1-L$  
    User Home
    C:\  
    User Dir
    C:\ColdFusion10\cfusion\bin  
    Java VM Specification Version
    1.7  
    Java VM Specification Vendor
    Oracle Corporation  
    Java VM Specification Name
    Java Virtual Machine Specification  
    Java VM Version
    23.7-b01  
    Java VM Vendor
    Oracle Corporation  
    Java VM Name
    Java HotSpot(TM) 64-Bit Server VM  
    Java Specification Version
    1.7  
    Java Specification Vendor
    Oracle Corporation  
    Java Specification Name
    Java Platform API Specification  
    Java Class Version
    51.0  
    CF Server Java Class Path
    ;C:/ColdFusion10/cfusion/lib/updates/chf10000011.jar;  C:/ColdFusion10/cfusion/lib/ant-launcher.jar;  C:/ColdFusion10/cfusion/lib/ant.jar;  C:/ColdFusion10/cfusion/lib/antlr-2.7.6.jar;  C:/ColdFusion10/cfusion/lib/apache-solr-core.jar;  C:/ColdFusion10/cfusion/lib/apache-solr-solrj.jar;  C:/ColdFusion10/cfusion/lib/asm-all-3.1.jar;  C:/ColdFusion10/cfusion/lib/asn1.jar;  C:/ColdFusion10/cfusion/lib/axis.jar;  C:/ColdFusion10/cfusion/lib/backport-util-concurrent.jar;  C:/ColdFusion10/cfusion/lib/bcel-5.1-jnbridge.jar;  C:/ColdFusion10/cfusion/lib/bcel.jar;  C:/ColdFusion10/cfusion/lib/bcmail-jdk14-139.jar;  C:/ColdFusion10/cfusion/lib/bcprov-jdk14-139.jar;  C:/ColdFusion10/cfusion/lib/cdo.jar;  C:/ColdFusion10/cfusion/lib/cdohost.jar;  C:/ColdFusion10/cfusion/lib/certj.jar;  C:/ColdFusion10/cfusion/lib/cf-acrobat.jar;  C:/ColdFusion10/cfusion/lib/cf-assembler.jar;  C:/ColdFusion10/cfusion/lib/cf-logging.jar;  C:/ColdFusion10/cfusion/lib/cf4was.jar;  C:/ColdFusion10/cfusion/lib/cf4was_ae.jar;  C:/ColdFusion10/cfusion/lib/cfusion-req.jar;  C:/ColdFusion10/cfusion/lib/cfusion.jar;  C:/ColdFusion10/cfusion/lib/chart.jar;  C:/ColdFusion10/cfusion/lib/clibwrapper_jiio.jar;  C:/ColdFusion10/cfusion/lib/commons-beanutils-1.8.0.jar;  C:/ColdFusion10/cfusion/lib/commons-codec-1.3.jar;  C:/ColdFusion10/cfusion/lib/commons-collections-3.2.1.jar;  C:/ColdFusion10/cfusion/lib/commons-compress-1.0.jar;  C:/ColdFusion10/cfusion/lib/commons-digester-2.0.jar;  C:/ColdFusion10/cfusion/lib/commons-discovery-0.4.jar;  C:/ColdFusion10/cfusion/lib/commons-httpclient-3.1.jar;  C:/ColdFusion10/cfusion/lib/commons-lang-2.4.jar;  C:/ColdFusion10/cfusion/lib/commons-logging-1.1.1.jar;  C:/ColdFusion10/cfusion/lib/commons-logging-api-1.1.1.jar;  C:/ColdFusion10/cfusion/lib/commons-net-3.0.1.jar;  C:/ColdFusion10/cfusion/lib/commons-vfs2-2.0.jar;  C:/ColdFusion10/cfusion/lib/crystal.jar;  C:/ColdFusion10/cfusion/lib/derby.jar;  C:/ColdFusion10/cfusion/lib/derbyclient.jar;  C:/ColdFusion10/cfusion/lib/derbynet.jar;  C:/ColdFusion10/cfusion/lib/derbyrun.jar;  C:/ColdFusion10/cfusion/lib/derbytools.jar;  C:/ColdFusion10/cfusion/lib/dom4j-1.6.1.jar;  C:/ColdFusion10/cfusion/lib/dpHibernate.jar;  C:/ColdFusion10/cfusion/lib/ehcache-core-2.5.1.jar;  C:/ColdFusion10/cfusion/lib/ehcache-web-2.0.4.jar;  C:/ColdFusion10/cfusion/lib/esapi-2.0.1.jar;  C:/ColdFusion10/cfusion/lib/EWSAPI-1.1.5.jar;  C:/ColdFusion10/cfusion/lib/FCSj.jar;  C:/ColdFusion10/cfusion/lib/flashgateway.jar;  C:/ColdFusion10/cfusion/lib/flex-messaging-common.jar;  C:/ColdFusion10/cfusion/lib/flex-messaging-core.jar;  C:/ColdFusion10/cfusion/lib/flex-messaging-opt.jar;  C:/ColdFusion10/cfusion/lib/flex-messaging-proxy.jar;  C:/ColdFusion10/cfusion/lib/flex-messaging-remoting.jar;  C:/ColdFusion10/cfusion/lib/flex-rds-server.jar;  C:/ColdFusion10/cfusion/lib/geronimo-stax-api_1.0_spec-1.0.1.jar;  C:/ColdFusion10/cfusion/lib/hibernate3.jar;  C:/ColdFusion10/cfusion/lib/httpclient-4.1.1.jar;  C:/ColdFusion10/cfusion/lib/httpclient-cache-4.1.1.jar;  C:/ColdFusion10/cfusion/lib/httpclient.jar;  C:/ColdFusion10/cfusion/lib/httpcore_4.1.2.jar;  C:/ColdFusion10/cfusion/lib/httpmime-4.1.1.jar;  C:/ColdFusion10/cfusion/lib/ib6addonpatch.jar;  C:/ColdFusion10/cfusion/lib/ib6core.jar;  C:/ColdFusion10/cfusion/lib/ib6http.jar;  C:/ColdFusion10/cfusion/lib/ib6swing.jar;  C:/ColdFusion10/cfusion/lib/ib6util.jar;  C:/ColdFusion10/cfusion/lib/im.jar;  C:/ColdFusion10/cfusion/lib/iText.jar;  C:/ColdFusion10/cfusion/lib/iTextAsian.jar;  C:/ColdFusion10/cfusion/lib/izmado.jar;  C:/ColdFusion10/cfusion/lib/jai_codec.jar;  C:/ColdFusion10/cfusion/lib/jai_core.jar;  C:/ColdFusion10/cfusion/lib/jai_imageio.jar;  C:/ColdFusion10/cfusion/lib/jakarta-oro-2.0.6.jar;  C:/ColdFusion10/cfusion/lib/jakarta-slide-webdavlib-2.1.jar;  C:/ColdFusion10/cfusion/lib/java-xmlbuilder-0.4.jar;  C:/ColdFusion10/cfusion/lib/javasysmon-0.3.3.jar;  C:/ColdFusion10/cfusion/lib/jax-qname.jar;  C:/ColdFusion10/cfusion/lib/jaxb-api.jar;  C:/ColdFusion10/cfusion/lib/jaxb-impl.jar;  C:/ColdFusion10/cfusion/lib/jaxb-libs.jar;  C:/ColdFusion10/cfusion/lib/jaxb-xjc.jar;  C:/ColdFusion10/cfusion/lib/jaxrpc.jar;  C:/ColdFusion10/cfusion/lib/jcifs-1.3.15.jar;  C:/ColdFusion10/cfusion/lib/jdom.jar;  C:/ColdFusion10/cfusion/lib/jeb.jar;  C:/ColdFusion10/cfusion/lib/jersey-core.jar;  C:/ColdFusion10/cfusion/lib/jersey-server.jar;  C:/ColdFusion10/cfusion/lib/jersey-servlet.jar;  C:/ColdFusion10/cfusion/lib/jets3t-0.8.1.jar;  C:/ColdFusion10/cfusion/lib/jetty-continuation-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-http-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-io-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-security-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-server-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-servlet-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-servlets-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-util-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jetty-xml-7.0.0.v20091005.jar;  C:/ColdFusion10/cfusion/lib/jintegra.jar;  C:/ColdFusion10/cfusion/lib/jnbcore.jar;  C:/ColdFusion10/cfusion/lib/jpedal.jar;  C:/ColdFusion10/cfusion/lib/js.jar;  C:/ColdFusion10/cfusion/lib/jsch-0.1.44m.jar;  C:/ColdFusion10/cfusion/lib/jsr107cache.jar;  C:/ColdFusion10/cfusion/lib/jsr311-api-1.1.1.jar;  C:/ColdFusion10/cfusion/lib/jta.jar;  C:/ColdFusion10/cfusion/lib/jutf7-0.9.0.jar;  C:/ColdFusion10/cfusion/lib/ldap.jar;  C:/ColdFusion10/cfusion/lib/ldapbp.jar;  C:/ColdFusion10/cfusion/lib/log4j-1.2.15.jar;  C:/ColdFusion10/cfusion/lib/lucene-analyzers-3.4.0.jar;  C:/ColdFusion10/cfusion/lib/lucene-core-3.4.0.jar;  C:/ColdFusion10/cfusion/lib/lucene-highlighter-3.4.0.jar;  C:/ColdFusion10/cfusion/lib/lucene-memory-3.4.0.jar;  C:/ColdFusion10/cfusion/lib/lucenedemo.jar;  C:/ColdFusion10/cfusion/lib/macromedia_drivers.jar;  C:/ColdFusion10/cfusion/lib/mail.jar;  C:/ColdFusion10/cfusion/lib/metadata-extractor-2.4.0-beta-1.jar;  C:/ColdFusion10/cfusion/lib/mlibwrapper_jai.jar;  C:/ColdFusion10/cfusion/lib/msapps.jar;  C:/ColdFusion10/cfusion/lib/mysql-connector-java-commercial-5.1.17-bin.jar;  C:/ColdFusion10/cfusion/lib/namespace.jar;  C:/ColdFusion10/cfusion/lib/nekohtml.jar;  C:/ColdFusion10/cfusion/lib/netty-3.2.5.Final.jar;  C:/ColdFusion10/cfusion/lib/ooxml-schemas.jar;  C:/ColdFusion10/cfusion/lib/pdfencryption.jar;  C:/ColdFusion10/cfusion/lib/poi-contrib.jar;  C:/ColdFusion10/cfusion/lib/poi-ooxml-schemas.jar;  C:/ColdFusion10/cfusion/lib/poi-ooxml.jar;  C:/ColdFusion10/cfusion/lib/poi-scratchpad.jar;  C:/ColdFusion10/cfusion/lib/poi.jar;  C:/ColdFusion10/cfusion/lib/portlet_20.jar;  C:/ColdFusion10/cfusion/lib/postgresql-8.3-604.jdbc3.jar;  C:/ColdFusion10/cfusion/lib/quartz.jar;  C:/ColdFusion10/cfusion/lib/relaxngDatatype.jar;  C:/ColdFusion10/cfusion/lib/ri_generic.jar;  C:/ColdFusion10/cfusion/lib/rome-cf.jar;  C:/ColdFusion10/cfusion/lib/saaj.jar;  C:/ColdFusion10/cfusion/lib/saxon9he.jar;  C:/ColdFusion10/cfusion/lib/serializer.jar;  C:/ColdFusion10/cfusion/lib/slf4j-api-1.5.6.jar;  C:/ColdFusion10/cfusion/lib/slf4j-log4j12-1.5.6.jar;  C:/ColdFusion10/cfusion/lib/smack.jar;  C:/ColdFusion10/cfusion/lib/smpp.jar;  C:/ColdFusion10/cfusion/lib/STComm.jar;  C:/ColdFusion10/cfusion/lib/tagsoup-1.2.jar;  C:/ColdFusion10/cfusion/lib/tika-core-0.6.jar;  C:/ColdFusion10/cfusion/lib/tika-parsers-0.6.jar;  C:/ColdFusion10/cfusion/lib/tools.jar;  C:/ColdFusion10/cfusion/lib/tt-bytecode.jar;  C:/ColdFusion10/cfusion/lib/wc50.jar;  C:/ColdFusion10/cfusion/lib/webchartsJava2D.jar;  C:/ColdFusion10/cfusion/lib/wsdl4j-1.6.2.jar;  C:/ColdFusion10/cfusion/lib/wsrp4j-commons-0.5-SNAPSHOT.jar;  C:/ColdFusion10/cfusion/lib/wsrp4j-producer.jar;  C:/ColdFusion10/cfusion/lib/xalan.jar;  C:/ColdFusion10/cfusion/lib/xercesImpl.jar;  C:/ColdFusion10/cfusion/lib/xml-apis.jar;  C:/ColdFusion10/cfusion/lib/xmlbeans-2.3.0.jar;  C:/ColdFusion10/cfusion/lib/xmpcore.jar;  C:/ColdFusion10/cfusion/lib/xsdlib.jar;  C:/ColdFusion10/cfusion/lib/;  C:/ColdFusion10/cfusion/lib/axis2/axiom-api-1.2.13.jar;  C:/ColdFusion10/cfusion/lib/axis2/axiom-dom-1.2.13.jar;  C:/ColdFusion10/cfusion/lib/axis2/axiom-impl-1.2.13.jar;  C:/ColdFusion10/cfusion/lib/axis2/axis2-adb-1.7.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/axis2-adb-codegen-1.7.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/axis2-codegen-1.7.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/axis2-jaxws-1.7.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/axis2-kernel-1.7.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/axis2-transport-http-1.7.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/axis2-transport-local-1.7.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/commons-fileupload-1.2.jar;  C:/ColdFusion10/cfusion/lib/axis2/commons-io-1.4.jar;  C:/ColdFusion10/cfusion/lib/axis2/geronimo-ws-metadata_2.0_spec-1.1.2.jar;  C:/ColdFusion10/cfusion/lib/axis2/httpcore-4.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/neethi-3.0.2.jar;  C:/ColdFusion10/cfusion/lib/axis2/woden-api-1.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/woden-impl-commons-1.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/woden-impl-dom-1.0.jar;  C:/ColdFusion10/cfusion/lib/axis2/wsdl4j-1.6.2.jar;  C:/ColdFusion10/cfusion/lib/axis2/wstx-asl-3.2.9.jar;  C:/ColdFusion10/cfusion/lib/axis2/XmlSchema-1.4.8.jar;  C:/ColdFusion10/cfusion/lib/axis2/;  C:/ColdFusion10/cfusion/gateway/lib/examples.jar;  C:/ColdFusion10/cfusion/gateway/lib/;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/flex/jars/cfgatewayadapter.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/flex/jars/concurrent.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/flex/jars/;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/batik-awt-util.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/batik-css.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/batik-ext.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/batik-transcoder.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/batik-util.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/commons-discovery.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/commons-logging.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/concurrent.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/flex.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/jakarta-oro-2.0.7.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/jcert.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/jnet.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/jsse.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/oscache.jar;  C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfform/jars/;  
    Java Class Path
    C:\\ColdFusion10\\cfusion\lib\oosdk\lib;
    C:\\ColdFusion10\\cfusion\lib\oosdk\classes;
    C:\ColdFusion10\cfusion\bin\..\runtime\bin\tomcat-juli.jar;
    C:\ColdFusion10\cfusion\bin\cf-bootstrap.jar  
    Java Ext Dirs
    C:\ColdFusion10\jre\lib\ext;C:\Windows\Sun\Java\lib\ext  

    Well, I checked my code and I'm at a loss.  My code uses SpreadSheetFormatCellRange to format the values in columns 1 and 2, 4 and 5, etc. using the "formatNumber" format structure:
    SpreadSheetFormatCellRange(xls, formatNumber, row, col, row, col + 1);
    I'd expect (at worst) that a single style would be defined and then applied to columns 1 and 2, or (at best) a single style would be defined for all cells that use the "formatNumber" format.  However, check out the XML for row 4 of my output spreadsheet:
        <row r="4">
          <c r="A4" t="n" s="181">
            <v>0.25</v>
          </c>
          <c r="B4" t="n" s="182">
            <v>0.2</v>
          </c>
          <c r="C4" t="n" s="183">
            <v>0.166666666667</v>
          </c>
          <c r="D4" t="n" s="184">
            <v>1.0</v>
          </c>
          <c r="E4" t="n" s="185">
            <v>0.8</v>
          </c>
          <c r="F4" t="n" s="186">
            <v>0.666666666667</v>
          </c>
          <c r="G4" t="n" s="187">
            <v>1.75</v>
          </c>
          <c r="H4" t="n" s="188">
            <v>1.4</v>
          </c>
          <c r="I4" t="n" s="189">
            <v>1.16666666667</v>
          </c>
          <c r="J4" t="n" s="190">
            <v>2.5</v>
          </c>
          <c r="K4" t="n" s="191">
            <v>2.0</v>
          </c>
          <c r="L4" t="n" s="192">
            <v>1.66666666667</v>
          </c>
          <c r="M4" t="n" s="193">
            <v>3.25</v>
          </c>
          <c r="N4" t="n" s="194">
            <v>2.6</v>
          </c>
          <c r="O4" t="n" s="195">
            <v>2.16666666667</v>
          </c>
          <c r="P4" t="n" s="196">
            <v>4.0</v>
          </c>
          <c r="Q4" t="n" s="197">
            <v>3.2</v>
          </c>
          <c r="R4" t="n" s="198">
            <v>2.66666666667</v>
          </c>
          <c r="S4" t="n" s="199">
            <v>4.75</v>
          </c>
          <c r="T4" t="n" s="200">
            <v>3.8</v>
          </c>
          <c r="U4" t="n" s="201">
            <v>3.16666666667</v>
          </c>
          <c r="V4" t="n" s="202">
            <v>5.5</v>
          </c>
          <c r="W4" t="n" s="203">
            <v>4.4</v>
          </c>
          <c r="X4" t="n" s="204">
            <v>3.66666666667</v>
          </c>
          <c r="Y4" t="n" s="205">
            <v>6.25</v>
          </c>
          <c r="Z4" t="n" s="206">
            <v>5.0</v>
          </c>
          <c r="AA4" t="n" s="207">
            <v>4.16666666667</v>
          </c>
          <c r="AB4" t="n" s="208">
            <v>7.0</v>
          </c>
          <c r="AC4" t="n" s="209">
            <v>5.6</v>
          </c>
          <c r="AD4" t="n" s="210">
            <v>4.66666666667</v>
          </c>
          <c r="AE4" t="n" s="211">
            <v>7.75</v>
          </c>
          <c r="AF4" t="n" s="212">
            <v>6.2</v>
          </c>
          <c r="AG4" t="n" s="213">
            <v>5.16666666667</v>
          </c>
          <c r="AH4" t="n" s="214">
            <v>8.5</v>
          </c>
          <c r="AI4" t="n" s="215">
            <v>6.8</v>
          </c>
          <c r="AJ4" t="n" s="216">
            <v>5.66666666667</v>
          </c>
          <c r="AK4" t="n" s="217">
            <v>9.25</v>
          </c>
          <c r="AL4" t="n" s="218">
            <v>7.4</v>
          </c>
          <c r="AM4" t="n" s="219">
            <v>6.16666666667</v>
          </c>
          <c r="AN4" t="n" s="220">
            <v>10.0</v>
          </c>
          <c r="AO4" t="n" s="221">
            <v>8.0</v>
          </c>
          <c r="AP4" t="n" s="222">
            <v>6.66666666667</v>
          </c>
          <c r="AQ4" t="n" s="223">
            <v>10.75</v>
          </c>
          <c r="AR4" t="n" s="224">
            <v>8.6</v>
          </c>
          <c r="AS4" t="n" s="225">
            <v>7.16666666667</v>
          </c>
          <c r="AT4" t="n" s="226">
            <v>11.5</v>
          </c>
          <c r="AU4" t="n" s="227">
            <v>9.2</v>
          </c>
          <c r="AV4" t="n" s="228">
            <v>7.66666666667</v>
          </c>
          <c r="AW4" t="n" s="229">
            <v>12.25</v>
          </c>
          <c r="AX4" t="n" s="230">
            <v>9.8</v>
          </c>
          <c r="AY4" t="n" s="231">
            <v>8.16666666667</v>
          </c>
          <c r="AZ4" t="n" s="232">
            <v>13.0</v>
          </c>
          <c r="BA4" t="n" s="233">
            <v>10.4</v>
          </c>
          <c r="BB4" t="n" s="234">
            <v>8.66666666667</v>
          </c>
          <c r="BC4" t="n" s="235">
            <v>13.75</v>
          </c>
          <c r="BD4" t="n" s="236">
            <v>11.0</v>
          </c>
          <c r="BE4" t="n" s="237">
            <v>9.16666666667</v>
          </c>
          <c r="BF4" t="n" s="238">
            <v>14.5</v>
          </c>
          <c r="BG4" t="n" s="239">
            <v>11.6</v>
          </c>
          <c r="BH4" t="n" s="240">
            <v>9.66666666667</v>
          </c>
          <c r="BI4" t="n" s="241">
            <v>15.25</v>
          </c>
          <c r="BJ4" t="n" s="242">
            <v>12.2</v>
          </c>
          <c r="BK4" t="n" s="243">
            <v>10.1666666667</v>
          </c>
          <c r="BL4" t="n" s="244">
            <v>16.0</v>
          </c>
          <c r="BM4" t="n" s="245">
            <v>12.8</v>
          </c>
          <c r="BN4" t="n" s="246">
            <v>10.6666666667</v>
          </c>
          <c r="BO4" t="n" s="247">
            <v>16.75</v>
          </c>
          <c r="BP4" t="n" s="248">
            <v>13.4</v>
          </c>
          <c r="BQ4" t="n" s="249">
            <v>11.1666666667</v>
          </c>
          <c r="BR4" t="n" s="250">
            <v>17.5</v>
          </c>
          <c r="BS4" t="n" s="251">
            <v>14.0</v>
          </c>
          <c r="BT4" t="n" s="252">
            <v>11.6666666667</v>
          </c>
          <c r="BU4" t="n" s="253">
            <v>18.25</v>
          </c>
          <c r="BV4" t="n" s="254">
            <v>14.6</v>
          </c>
          <c r="BW4" t="n" s="255">
            <v>12.1666666667</v>
          </c>
          <c r="BX4" t="n" s="256">
            <v>19.0</v>
          </c>
          <c r="BY4" t="n" s="257">
            <v>15.2</v>
          </c>
          <c r="BZ4" t="n" s="258">
            <v>12.6666666667</v>
          </c>
          <c r="CA4" t="n" s="259">
            <v>19.75</v>
          </c>
          <c r="CB4" t="n" s="260">
            <v>15.8</v>
          </c>
          <c r="CC4" t="n" s="261">
            <v>13.1666666667</v>
          </c>
          <c r="CD4" t="n" s="262">
            <v>20.5</v>
          </c>
          <c r="CE4" t="n" s="263">
            <v>16.4</v>
          </c>
          <c r="CF4" t="n" s="264">
            <v>13.6666666667</v>
          </c>
          <c r="CG4" t="n" s="265">
            <v>21.25</v>
          </c>
          <c r="CH4" t="n" s="266">
            <v>17.0</v>
          </c>
          <c r="CI4" t="n" s="267">
            <v>14.1666666667</v>
          </c>
          <c r="CJ4" t="n" s="268">
            <v>22.0</v>
          </c>
          <c r="CK4" t="n" s="269">
            <v>17.6</v>
          </c>
          <c r="CL4" t="n" s="270">
            <v>14.6666666667</v>
          </c>
        </row>
    As you can see, separate styles are being created and assigned to EVERY CELL in my sheet, even those cells formatted using SpreadSheetFormatCellRange.  I'm fairly confident now that I'm hitting the Excel limit for the number of styles.  How can I define a style up front and then apply it?  I really only have four styles, but the code is generating over 64,000!

  • HT1689 Why is there a limit on the size of apps I can download in the App Store using 3G/4G?

    I understand that this is helpful for those that have limited data each month, but for me, and I'm sure everyone else who has unlimited data, this is just a nuisance and rather frustrating. I'm in the Air Force and where I am right now I have zero access to personal wifi. I am unable to update or download many apps. The download limit should at least be optional. Android has that figured out, why can't Apple? I love my iPhone, but I am extremely annoyed with this.

    The limit is there because Apple and the carriers have decided it should be. Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Is there a limit on the size of an array?

    I have two arrays: array1 and array2.
    I have a function that is iterating through array1. If an item in the array matches a particular condition, then that item is pushed onto array2. I can successfully push up to 19 items onto array2. However, if I attempt to push any additional item on top of the 19 items already in the array, then that push fails. Can I not have more than 19 items in an array? Is there any way to increase the size of the array?

    If you are seeing only 20 array elements in the Data Browser it does not mean that the array is limited to 20 elements*. You are perhaps seeing a display restriction in the data browser. Have you checked the actual number of elements in your final array by testing its length property?
    You can change the number of elements displayed in the Data Browser in the ExtendScript Toolkit Preferences on the Debugging page.
    *Note that there are 20 items shown as the first one has an idex of 0.
    Ian

  • Is there any limit on the size of log_archive_dest ?

    Hi all,
    Could anyone tell me if there is a size limit for log_archive_dest?
    Thanks,
    Calvin

    user9275719 wrote:
    Hi all,
    Could anyone tell me if there is a size limit for log_archive_dest?
    Thanks,
    CalvinThe LOG_ARCHIVE_DEST_n initialization parameter defines up to ten (where n = 1, 2, 3, ... 10) destinations, each of which must specify either the LOCATION or the SERVICE attribute to specify where to archive the redo data. All other attributes are optional. Note that whether you are specifying the LOCATION attribute or the SERVICE attribute, it must be the first attribute supplied in the list of attributes.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams100.htm

  • Is there a limit to the size of attachments sent by Apple Mail 6.2

    Sometime when I send an attachment with my emails it goes to by draft mailbox instead of being sent out.  What's the deal with this? Is there a size limit that Apple imposes on me.com or cloud.com account?

    There is generally a limit set by ALL ISPs or email account providers on attachments.  By default (for most anyway) it's 5MB, but some have been known to have more and some can even have unlimited, but the receiver of your email may have a lesser one in which case it won't send through anyway and bounce back to you with a 5.x.x error indicating attachment size blocks.  Because of this, most ISPs in the world have tried to standardize on what's currently considered as a "manageable file attachment size".
    Also, according to iCloud info, their limit is 20MB for the entire email (message body and attachment).

  • Is there a limit to the size and/or resolution of an image that iPhone can display?

    I navigated to a url of a PNG with a file size of about 3MB and resolution of 5050×2383px. When I was viewing it in Safari, I was able to zoom in all the way just fine. However, after saving the image and viewing it through either iPhone's native Photos app or an app called Photo Viewer Lite, I realized the the image was displaying at about half its original size. I was unable to zoom in all the way. I plugged the device into my PC to see if the image was saved unmodified and it was.
    Could you please clarify this.
    Thank you.

    Thank you for getting back to me on this...  my slides are set for 1024 x 768 does making it that size reduce the mega pixels of the image?  The slide show I have going now is 3.88 GB is this to big for Keynote... things are really running slow here...
    thank you
    Mark

  • Is there a limit to the size of the Domain file?

    I am unable to save my iweb site. I get the message, "Couldn\U2019t file" /Volumes/Time Capsule/Domain.sites2. I copied the domain file from the user file to the Time Capsule as a back up. There is plenty of space on the Time Capsule and my HD

    There is plenty of space on the Time Capsule and my HD
    It could be a permissions issue on the Time Capsule. Since you have sufficient space on your HD it would be safer to run it from the default location for domain files - your User/Library/Application Support/iWeb folder.
    OT

  • Is there a limit on the size of a disk I can attach to my Time Capsule?

    I can attach a 1/2 TB disk which can be seen on my shared devices in Finder over the network, but when I attach a 2TB drive, Time Capsule will not see it at all.  I have tried through both a (powered) hub and directly connected to the USB port on the TC.

    I think I answered my own question!!  I attached a 3TB disk formatted MAC OS Extended and it worked fine.  The other disk was Windows NT formatted.

  • Is there a limit to the size of the video file?

    I am videotaping my son's soccer team and would like to put the video on the web. When I try to publish the video it goes part way and then stalls. I have tried to post it on my HD but it still doesn't work. Thanks!

    iWeb doesn't care about videos. It happily displays it on a page.
    If your video stalls, check the video.
    Make sure you prepare it for the web.
    Here's my explanation : Export/Save QT movie for web
    So focus on the video. Not the webpage.

Maybe you are looking for

  • How to install DNG_Camera_Raw_5_1

    How do I install DNG_Camera_Raw_5_1. Looking to update Camera Raw to recognize Sony a900 RAW files.

  • MDX Query: Equivalent of SQL's "IN" clause

    Hi, In SQL, we have an option of viewing data of multiple members by specifying IN as follows: SELECT column1 from TABLE WHERE column2 in ('value1','value2'); Is there any equivalent of that in MDX? Let's say my outline is like this: --Products (Stan

  • Ichat-disconnected

    HI, my ichat account was working fine until today. I clicked on the application and it took 5 minutes to load. Then, I got a message that "The connection could not be completed because it timed out. Try again." I tried to restart my computer multiple

  • Jsp:plugin minimalist

    Hello I have a context "demo" with a class, "demoApplet", in a package AppletDemo and I am unclear/unable to configure the jsp:plugin. I can do the following, which doesnt work, grin. <jsp:plugin type="applet" code="demoApplet.class" codebase="http:/

  • Anchor points a missing photoshop cs4

    My anchor  points in Photoshop CS4 is gone and I do not see what I draw I can only  see the path in my path window. what can be  wrong? system  is window 7 64x and cs4