Array dimensions when converting from a cluster

Hello,
I am a beginner Labview programmer. Right now I am working on a VI
that converts a portion of cluster data to an array of tables. The
cluster is loop tunneled into a for loop then unbundled. I then build
it into a 2D array. When I hand the data back out of the for loop the
array dimensions are the same size. i.e. If the 2D arrays were 2x7 and
2x6 going in then going out I have both as 2x7's. This happens right
at the exiting loop tunnel (I suppose when it initializes the 3D
array). This places zeros in the last row of my 2x6 array. Can anyone
suggest a fix. Thanks a bunch.
Peter.

Hi, Peter:
I think you want to have an array of different row sizes. I think it's impossible in LabView. At least using only arrays and without clusters.
And as all rows have the same number of elements, undefined elements get default value. In case of numerics, zeros.
You could create an array of cluster elements, and each element be an array 2D. Then each element can be an array of different sizes.
But that's just what you had at start.
Aitortxo.
Aitortxo.

Similar Messages

  • Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?

    Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?
    Depending on the system version, and Office Word version:
    - a pure URL link starting with http or even www sometimes works in PDF, either produced by Aperçu or Adobe, sometimes does not work;
    - other kind of links where the text under display is not a URL, never work!
    I like everything with Apple computers and software, except PDF generation. Output files are usually bigger in size, and no better quality, than under Windows. Furthermore, it is weird that something as common as hyperlinks does not work correctly!
    I related this question with Mac OS X Snow Leopard, but the problem is still there with Mac OS Lion.
    This problem seems to have been around for years, without any proper solution from Apple and/or Adobe! To me, this is very embarrassing!

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • How do I maintain column formatting when converting from PDF to Excel?

    How do I maintain column formatting when converting from PDF to Excel? All info is no longer on the lines or in the columns they started out being in? Any help would be appreciated.

    Sara,
    Perhaps I am expecting too much from Adobe ExportPDF. The reason I subscribed to this service, for which I pay a yearly fee, was that I need a way to  convert scanned and digital documents to Word &/or Excel. I read the link you included but to be candid the more I tried to understand what was written the more confused I got. The process should not be this difficult. Currently I am using a NEAT scanner to create PDF documents of whatever I scan. After I changed the OCR setting on Adobe ExportPDF the output was much better but not to the point it was usable as it was. Information that appears to be lines and columns are sometimes not recognizing two columns and just putting them together in one. Obviously not usable. The other thing it does is bunch numbers that appear in a column that are just a bunch of numbers that I have no way of fixing. 
    Please let me speak to someone who can help me. Right now I not getting anything of value in my paid subscription.

  • When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?

    When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?

    When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?
    That would depend on your work flow. MOV is the generic QuickTime file container and is not related to any particular data compression format. If you perform a simple "Save" or "Save As..." action that merely copies the data in the WAV file to an MOV file, then the data remains unchanged and maintains its original quality. If, on the other hand, your transcode/re-compress the original data to a different compression format, then there is always the potential for some loss in quality. Depending on the codec and/or settings, the potential loss could be inaudible to severe.

  • Default PR Type when convert from Planned Order

    Hi all,
    How can I default my PR Type when convert from Planned Order after MRP run. This can done via MRP Group control but how to go about controlling via Planned Order profile?
    Which planned object type and planned order profile to be used? assuming that i need my planned to be output at LA type and convert to NB1 PR type instead of the default NB PR type?
    Thanks.
    Regards,
    Andrew

    Hi,
    The system determines the document type from the stettings u are making in "planned order Profile" in Customising for MRP. There u define the order type, the procurement key and the special procurement key and also the account assignment category. So based on the procurement key and the special procurement key maintained in the Marterial master, the document type is selected.
    Production > Materials Requirement Planning > Procurement Proposals > Planned Order > Define order profile
    Choose the planned order type - NB1 Within this you specify the P req doc type to be used.
    Through MRP group and the different PR document type for MRP generated PR is possible only if you assign the document type to MRP group in the MRP configuration.
    Please try and come back.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Aug 28, 2008 10:54 AM

  • Moving Scriptlet Code to backing bean when converting from JSP - Facelets

    Hello!
    We are converting our application from jsf1.2 to 2.0 and all jsps are being converted to XHTML. Some are trivial while others had very complex scriptlets.
    I would like to know what are some of the recommended ways of moving Scriptlet Code to backing bean when converting from JSP -> Facelets.
    I have thought about listeners, actionListeners, putting code getXXXX() of the backing bean and then calling #{bean.XXXX} but not sure whats the best way.
    I do appreciate the response!
    Eg of a jsp page:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="/WEB-INF/xxx-jsf.tld" prefix="l" %>
    <%@ taglib uri="/WEB-INF/yyy-pp.tld" prefix="p" %>
    <%@ page import="com.ttyy.search.beans.jsf.AdvancedSearchFormManagedBean" %>
    <%@ page import="com.kkee.util.*"%>
    <%
        AdvancedSearchFormManagedBean advancedSearchFormManagedBean = (AdvancedSearchFormManagedBean) request.getSession().getAttribute("AdvancedSearchFormManagedBean");
        if (advancedSearchFormManagedBean == null) {
           advancedSearchFormManagedBean = new AdvancedSearchFormManagedBean();
           request.getSession().setAttribute("AdvancedSearchFormManagedBean", advancedSearchFormManagedBean);
        advancedSearchFormManagedBean.initializeForAdvancedSearchOptions();
        advancedSearchFormManagedBean.setQuickSearch();
         request.setAttribute("portletHeader", "Hello " + advancedSearchFormManagedBean.getPerson().getFirstname() + ", check out the latest programs in your practice areas and jurisdictions");
    %>
    <h:form id="MYCenterForm">
         <p:portletRenderer portletSetName="test of portlet"
              portletContainer="#{PortletContainerManagedBean}"
              id="MYCenter"
              portletScope = "TEST_SCOPE"
              suppressIfNoData="true"
              portletSkinName="SOME_SKIN">
              <f:facet name="persistenceToolkit">
                   <h:commandLink id="persistenceToolkitLink"
                        actionListener="#{PortletContainerManagedBean.persistPortletSetStateListener}">
                        <h:outputText value="Save State Of Portlet Set" id="persistenceToolkitLinkText"/>
                   </h:commandLink>
              </f:facet>
         </p:pagePortletSetRenderer>
    </h:form>
    <%
         String flag = PropertyItems.getInstance().getPropertyItem("response.time.flag");
         if("1".equals(flag)){
              ResponseTime rt = (ResponseTime) session.getAttribute("responseTime");
            if(rt!=null){
                rt.setDesc("my cle loaded");
                long now = System.currentTimeMillis();
                long start = rt.getStart() + rt.getTotal();
                rt.setInterval(now-start);
                rt.setTotal(rt.getTotal()+rt.getInterval());
                LogUtil.log(rt.toString(), LogUtil.DEBUG_LEVEL);
                session.setAttribute("responseTime", rt);
    %>

    That helps.
    This could be another topic question but itst kind of related to what i am doing right now. while converting JSP to facelet (in jsf2) I came across another issue.
    <h:commandLink id="Save" rendered="#{RegistrationBean.isNOTInOrigionalRegistrationMode}" action="#{RegistrationBean.updateProfile2Submit}" styleClass="#{portalSkinManagedBean.contentPortletSkin.strongTextStyle}">
              <l:htmlSkinnedImage id="SaveImage" style="border:0;" url="save.gif" alt="Save Information"/>
    </h:commandLink>When I click on the generated link, I get this. And this is happening for all the h:commandLink in the application.
    http://localhost:9080/registration/updateProfile2.jsf[request.getQueryString()=null][request.getRequestedSessionId()=F1CCE237DD81D301F1C4DBA6910FFD8A][request.isRequestedSessionIdFromCookie()=true][request.isRequestedSessionIdFromURL()=false][request.isRequestedSessionIdValid()=true]Parameters:[rolePracticeAreasForm:title=rolePracticeAreasForm:primaryPracticeArea=10002javax.faces.ViewState=-2943345291093118815:-4400303399130292206rolePracticeAreasForm:practiceAreasMod2=10148.1rolePracticeAreasForm:practiceAreasMod1=10002.1rolePracticeAreasForm:Save=rolePracticeAreasForm:SaverolePracticeAreasForm=rolePracticeAreasFormrolePracticeAreasForm:otherField=rolePracticeAreasForm:fromMyAccount=1]||
    javax.servlet.ServletException: Index: 0, Size: 0
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:325)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.legaledcenter.util.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:250)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.jscape.framework.galileo.support.upload.UploadFilter.doFilter(UploadFilter.java:71)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at javax.faces.component.AttachedObjectListHolder.restoreState(AttachedObjectListHolder.java:161)
         at javax.faces.component.UIComponentBase.restoreState(UIComponentBase.java:1427)
         at com.sun.faces.application.view.StateHolderSaver.restore(StateHolderSaver.java:121)
         at com.sun.faces.application.view.StateManagementStrategyImpl$4.invokeContextCallback(StateManagementStrategyImpl.java:289)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1253)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at com.sun.faces.application.view.StateManagementStrategyImpl.restoreView(StateManagementStrategyImpl.java:284)
         at com.sun.faces.application.StateManagerImpl.restoreView(StateManagerImpl.java:177)
         at com.sun.faces.application.view.ViewHandlingStrategy.restoreView(ViewHandlingStrategy.java:119)
         at com.sun.faces.application.view.FaceletViewHandlingStrategy.restoreView(FaceletViewHandlingStrategy.java:434)
         at com.sun.faces.application.view.MultiViewHandler.restoreView(MultiViewHandler.java:143)
         at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:199)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:110)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         ... 22 more
    ********** Message End *************Thanks

  • Overflow when converting from "1.64174e+11"

    Hi ,
    I am working on PS module and facing the above mentioned error.Whenever I am attching any material haveing value more than Rs 100000 the system gives "Overflow when converting from "1.64174e+11""
    The detailed error description is given below,
    Runtime Errors         CONVT_OVERFLOW
    Except.                CX_SY_CONVERSION_OVERFLOW
    Date and Time          24.11.2008 11:19:23
    Short dump has not been completely stored (too big)
    Short text
         Overflow when converting from "1.64174e+11"
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPFV45P" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
          caught in
         procedure "KALKULATIONSWERT_UEBERNEHMEN" "(FORM)", nor was it propagated by a
          RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         When attempting to convert the value "1.64174e+11", an overflow occurred.
    Missing RAISING Clause in Interface
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     8
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Trigger Location of Exception
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     140
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Source Code Extract
    Line  SourceCde
      110       MTCOM-MATNR = VBAP-MATNR.
      111       MTCOM-BWTAR = VBAP-BWTAR.
      112       CALL FUNCTION 'MATERIAL_READ'
      113            EXPORTING
      114                 SCHLUESSEL    = MTCOM
      115            IMPORTING
      116                 MATDATEN      = MBEW
      117            EXCEPTIONS
      118                 ERROR_MESSAGE = 04
      119                 OTHERS        = 04.
      120       MOVE SY-SUBRC TO SAV_SUBRC.
      121     ENDIF.
      122
      123     IF T685A-KRECH = 'C'.
      124       IF SAV_SUBRC = 0 AND MBEW-PEINH NE 0.
      125         KOMV-KPEIN = MBEW-PEINH.
      126       ELSE.
      127         KOMV-KPEIN = 1.
      128       ENDIF.
      129 * Falls keine ET da, Zielmenge nehmen (Gut-/Lastschrift, Kontrakt ...)
      130       DATA: DA_MENGE LIKE VBAP-KWMENG.
      131       IF TVAP-ETERL EQ SPACE AND VBAP-KWMENG = 0.
      132         DA_MENGE               = VBAP-ZMENG.
      133       ELSE.
      134         DA_MENGE               = VBAP-KWMENG.
      135       ENDIF.
      136       IF DA_MENGE > 0.
      137         DA_WERT         =  DA_WERT  * KOMV-KPEIN * 1000
      138                          / DA_MENGE * VBAP-UMVKN / VBAP-UMVKZ.
      139       ENDIF.
    >>>>>       KOMV-KBETR      = DA_WERT.
      141     ELSEIF T685A-KRECH = 'B'.
      142       KOMV-KBETR      = DA_WERT.
      143     ELSE.
      144       KOMV-KWERT      = DA_WERT.
      145     ENDIF.
      146
      147     KOMV-WAERS         = DA_KALKO-FWAER.
      148     RV45A-KOEIN        = DA_KALKO-FWAER.
      149     KOMV-KMEIN         = VBAP-MEINS.
      150     PERFORM KOMV_PRUEFEN USING SPACE
      151                          CHANGING SY-SUBRC.
      152 * Nur für den ersten Lauf prüfen, ob Status gesetzt werden muß
      153     IF SAV_INDEX = 1.
      154       DA_SUBRC = SY-SUBRC.
      155     ENDIF.
    156     IF SY-SUBRC = 0.
    157       PERFORM KOMV_BEARBEITEN.
    158     ENDIF.
    159   ENDDO.
    Pl suggest.
    Rgds

    Hi,
    Try to declare your variable using Packed Number:
    DATA: va_num TYPE P DECIMALS 3.
    Hope this helps.
    Patrick

  • Overflow when converting from "3.60001e+11"

    Hi Guys,
    I'm Working with my PO using MIRO, I don't know why the error occurs. I've used the SAP Version 620 but end up with an error, then used Version 710 and successfuly created the transaction, but I'm stacked with version 620. I'm not allowed to transact it using the Version 710 that's why im looking for a patch or upgrade within 620 that i can use so that it can be solve.
    I'm in need of your help guys. I know there someone out there that can help me.
    THE ERROR
    Runtime Errors         CONVT_OVERFLOW                                              
    Exception              CX_SY_CONVERSION_OVERFLOW                                   
           Occurred on     03/28/2011 at 01:00:47                                                                               
    Overflow when converting from "3.60001e+11"                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLEINS" had to be terminated because one of the        
    statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    Error analysis                                                                               
    An exception occurred. This exception is dealt with in more detail below     
    . The exception, which is assigned to the class 'CX_SY_CONVERSION_OVERFLOW', 
    was neither                                                                 
    caught nor passed along using a RAISING clause, in the procedure             
    "DISTRIBUTE_ACC_ASSIGN_RE" "(FORM)"                                         
    Since the caller of the procedure could not have expected this exception     
    to occur, the running program was terminated.                               
    The reason for the exception is:                                             
    When attempting to convert the value "3.60001e+11",                          
    an overflow occurred.                                                        
    How to correct the error                                                                               
    The exception must either be prevented, caught within the procedure   
    "DISTRIBUTE_ACC_ASSIGN_RE"                                           
    "(FORM)", or declared in the procedure's RAISING clause.              
    To prevent the exception, note the following:                         
    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.                                                                               
    You may able to find an interim solution to the problem               
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:

    I won't post here if i already got the answer in SAP notes. I've spent 3 days searching for the answer. The only answer i got is the upgrade but can't be consider. OSS notes didn't provide me any answer. Hope u can help me
    Edited by: docgon on Mar 30, 2011 2:38 AM

  • Upload maxdb  really needed? - Overflow when converting from 32768

    hello,
    I am facing with a run time error that does not make sense when uploading maxdb database. The error is:  "Overflow when converting from 32768".
    I am following this configuration tutorial:
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/17a790d8000064e10000000a1553f7/frameset.htm
    Anyway, is there a need to upload this database? We installed netweaver mobile with SQL server database.
    Help please.
    Thanks.
    Edited by: João Carneiro on Feb 8, 2011 2:10 PM

    Hi,
    Uploading MAXDB is not mandatory. It is needed only when multiple devices need to be installed with MAXDB through setup or software packages, which helps administrator to roll out multiple devices, so that end users will get all the necessary software to install the device.
    Hope this clarifies your query.
    Thanks and Regards,
    Suma

  • Grainy Image when converting from PAL to NTSC...

    Hi,
    I'm using Compressor 2.0.1 to convert a PAL movie to NTSC. I find that the output is extremely Grainy, the blacs are Muddy and the Highlights are colored.
    Any suggestions?
    Thanks and Regards,
    Rajnesh

    There are many options when converting from PAL to NTSC with Compressor's Frame Controls panel. Have you tried other settings? Note, however, that the highest quality settings are pretty slow so be prepared for a fairly long wait even on your Power Mac G5.
    Otherwise, you might want to try the freeware utility JES Deinterlacer (available on VersionTracker.com). JES Deinterlacer is pretty fast at PAL <-> NTSC conversion and the results are better than you will get with the basic settings in Compressor 2.

  • How can I keep the formatting when converting from Word to pages?

    How can I keep the formatting when converting from Word to pages?

    Use only formatting that is supported (in the same manner) in both applications. You'll need to find which that is through trial and error. Beyond those formatting options, you'll need to do some corrections, as Fruhulda suggests.
    Regards,
    Barry

  • How do I get PRO to not include codes when converting from Word?

    When converting from word, I get all of the codes printed too.How do I get it to not show in Adobe?  I'm on a deadline and right now not happy that I upgraded.  Need my old adobe back!
    Board of Directors Meeting{ PRINT \p para "[
    /EMC pdfmark [ /StPop pdfmark" }
    { PRINT \p para "[ /Subtype /P /Title () /StPNE pdfmark" }{
    PRINT \p para "[ /StBMC pdfmark" }{ PRINT \p para "[ /EMC pdfmark [ /StPop pdfmark" }
    { PRINT \p para "[ /Subtype /P /StPNE

    Thanks Bill for your reply.
    I am using Acrobat XI, just downloaded it and Word 2003.  There are no punctuations on my form, I just hit return to go to the next lines. 
    I put in a little square check box and that is also causing issues.  I checked to make sure the field codes are off on the original word doc. 
    I did try from the printer to save and adobe and I get the same codes.  Other people that I work with are able to get my document to save correctly in acrobat with the same versions of word and XI. 
    It has to be some small setting on my computer. 

  • How do I make the images look clear in PDF when converted from MS Word?

    Hi
    When I convert an MS Word-2010 file (which  contains  images also) to PDF through Acrobat X Pro, some images which are of bigger size do  not look very clear. Is there any workaround for this problem? Please  reply. It's quite urgent.
    Thanks

    In my experience (not necessarily the best), I find it best to rescale image copies with a graphics package before importing into WORD or whatever. Resize and then set the resolution to about 600 dpi before you import. The issue of using the clipboard appears to be an issue with WORD 2007 and such. I clipped a 300 dpi image into my technical word processor and then back to a graphic editor and all was preserved. I did the same with WORD 2007 and everything got messed up and the resultant image looked terrible. In fact, in WORD I got the same result if I imported the picture or clipped it from my graphics package. So it appears there are some strange issues with WORD itself.
    I am not trying to make any claims here, but just making an observation. The original image was at 300dpi. WORD also changed the 8-bit B&W photo to a 24-bit photo and reduced the number of pixels from 774 per width to 252 per width about a factor of 3 reduction in pixel resolution when clipped. When I expanded the image size in WORD, then the clip size increased also. When I do the same expansion of the image size in my word processor and then clip back to IrfanView, the original image is retained. My only conclusion is that OFFICE 2007 plays around with graphics and it does not seem to make any difference if you clip the image into WORD or import it, WORD still messes around with it. My guess this is just a general MS thing.
    Some folks a year or 2 ago got me to looking at nice sunsets in PPT. There were all sorts of issues with creating the PDF (AA8) from the PPT to get a reasonable result. The image obtained from the MS converter seemed to keep the picture nice. The images obtained from PDF Maker and printing to the Adobe PDF printer gave slightly different results and tended to break the image into smaller parts that often left little lines in the picture if you zoomed in. Folks were blaming this on Acrobat and yet using the same version of Acrobat with OFFICE 2003 the sunset came out great.
    This post is a bit jumbled, but the jist is that a lot of the graphics issues with WORD files seem to go back to WORD itself  and possibly with hooks MS put into OFFICE (OK, no proof on that and probably impossible to prove) to mess up Acrobat conversions. It would be interesting to see if the same result for the PDF is obtained from other converters, or if it is just something that OFFICE 2007 does "nicely" for Acrobat.
    Sorry for going off the deep end, but I just have a major annoyance with OFFICE starting with 2007, particularly for things like this. They couldn't get equations right either, just one more thing that they messed up. As far as I am concerned, a lot of the issues stem from MS and not Acrobat.
    Just for the heck of it, I ran the PPT picture through Open Office and used both the PDF export and the print to the Adobe PDF printer. Both retained the full image. However, when clipping from OOP to Irfanview, the resolution was 96dpi. The result seemed to be dependent on the zoom. So there are definitely some issues with copy and paste, at least with how some packages handle it.

  • How to avoid the dialogue when converting from context menu

    This is a follow-up to http://forums.adobe.com/message/2016146#443364 which was locked due to a bug.
    i would like to know how i can avoid the 'save as' dialogue when using the context menu to convert a word file to pdf using windows XP/acrobat 8/word 2007.
    so far, it always prompts me for the filename, which is annoying as it does not allow me to batch-convert several files and let the thing run its course.
    the solution provided by Steve in the other thread does not work - even if the plugin from word does not propt for a filename, it still does when triggered from explorer/context menu.
    so back to square one: how to avoid that dialogue when not opening word at all?
    cheers, thanks for any help. michael

    For a permanent change, START>PRINTERS>right click on Adobe PDF printer and select properties>General>Printing Preferences>Adobe PDF Settings. Under the settings tab, uncheck the box related to asking for a name. Pretty sure that is the location, but it may vary with version.

  • System or program crashes when converting from NEF to DNG

    Hello Adobe.
    First off, I love your software.
    Second, this is my concern. You guys are pushing DNG as the go to raw format. That would be great if it worked good, but it doesn't.
    First, when I convert from my Nikon NEF format (Nikon D7100) it chugs along just fine, then suddenly crashes either the program or my system after converting 50-100 or so images.
    I have tried everything from downloading your software again, to turning off everything other then what is needed to do the conversion.
    Of course I have the latest DNG utility/plug in/drivers from your website.
    Second, the DNG images open much slower then my NEF images. Plus when I view them in Windoze file system view and want to see the photos in extra large icons, it renders the images very slowly.
    My system is Windoze 8.1 updated always, Photoshop CC latest and greatest (I'm in the rental program), Bridge and Lightroom.
    I have tried to use bridge and lightroom to do the conversion, even a separate utility and the crashing still happens. All these are up to date.
    My system has an i7 Intel processor, 16 gb of Kingston ram, an ASUS P8Z77 MPRO mother board and a good stable power supply.
    No other software crashes my system like converting from NEF to DNG.
    What I do notice is my CPU fan goes into high RPM's and I am wondering if the CPU is overheating causing this.
    If that is the case, then it would seem to me the conversion software is taxing the system far more then it should since my system is no slouch and while it isn't the latest and greatest, I would consider it to be in the top 20%,
    it should be able to handle the conversion with no problem.
    Are you aware of problems with the DNG software and or file format?
    Is their any information I could forward to you to help solve the problem?

    Photoshop Help | Digital Negative (DNG) - Adobe
    helpx.adobe.com/photoshop/digital-negative.html
    DNG is a publicly available archival format for storing camera raw files. Adobe provides Adobe DNG Converter, a free utility that converts files from more than ...
    That is off the net, therefore, Adobe looks at DNG as part of Adobe Photoshop, which it is if a person chooses to convert.
    My issue has to do with it crashing, both my system and software.
    I assume if people here are using it, then they can advise me if they are having similar problems.
    I have also written Adobe directly several times over the last month and have yet to receive a response.
    I apologize that I posted here, but since I consider DNG an integral part of Photoshop, then I think it is appropriate here.
    I was also not aware of a DNG forum, if one exists.
    Thank you for your assistance.
    Jim

Maybe you are looking for

  • How do I add a blog area to a CS3 site and allow the client to add content?

    My client has a web site she uses as a blog. It was built in iweb. I am redesigning it and want to use Dreamweaver. I am trying to research how to get started, I've only done static web sites so far. Any recommendations? She needs to be able to updat

  • Need Help with Custom Form Field Backgrounds

    I'm tryng to add a custom background image to a file upload field in a form and it is not displaying correctly in Firefox. Is there a way to do this? The background shows up fine in other fields just not in the field that I apply ( type="file" ) to.

  • Ad-hoc query - excel problem

    Hi, I am trying to run an ad-hoc query to generate previous employer's report.When I click on Hit - list, it shows me 2,195 persons listed.However, when I click on output, it generates only 234 employees in the excel sheet. Could anyone please help m

  • Tracking of Changes in Material Determination type or Material Substitution

    Hi Gurus, Can anybody suggest how to keep track of the changes made in VB11/VB12/VB13 which is for Material Determination type Maintenance? Is there any TCODE or tables for tracking the above changes?? Thanks in advance VIJAYB.

  • Question. Camera Raw 6.1

    Having problems with the adjustment brush in 6.1 it just doesnt seem to respond at all all the other functions seem to work and have tried reloading the june 2010 version and it still does not work, not sure if this problem started after I put the ne