Not Getting Thumbnails in Attachments

My grandma is complaining that, when she tries to open an image file to attach it to a mail message, the thumbnails don't show up for most images.
All the images have names consisting entirely of numbers, generated by Kodak EasyShare, so it's not easy for her to choose the image based on the file name.
If she rotates the image in Kodak EasyShare, the thumbnails are generated, so it seems that all we need to do is somehow force the generation of the thumbnails. How can we do something like that?

Hi Granty
Suggest to her that she can drag the image file into the Mail window. If it is large it will take up a lot of room though.
when you ask +...it seems that all we need to do is somehow force the generation of the thumbnails. How can we do something like that?+ does that mean the Kodak photos icon is some generic Kodak one and not a little picture of the image?
There is a small application called Pic2Icon that may meet your needs. Just drag a photo onto it and it will create a thumbnail icon of it for you.
regards roam

Similar Messages

  • I do not get thumbnails of my App Tabs when I open Tab Groups (and so I can't create any Tab Groups).

    I simply get replicas of the App Tab icons on the right side of the Tab Groups box. These icons are not movable and clicking on them simply opens them. As a result, I can't proceed to form them into Tab Groups.

    You can
    Create a NEW account using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before.
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    You can have apps purchased from more than one account. It does complicate update apps though.
    - Go to settings>Store and sign out and sign into your account.
    - Apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • TS2556 when importing photos from iphoto , I am not getting thumbnail images in the browser, any help with this problem

    Looking for advice to get around this problem .. just purchased Aperture 2.1. for my MacBook Pro using snow leopard .

    ok, next idea:
    you're using an iBook => harddrive space is limited...
    tell us, how much free space is on your hd...
    you shouldn't "overcrowd" your drive, 80% filled should be max,
    because all apps use widely socalled "temp-files" - never seen in Finder, but neccessary (you probably have heard of that rule: iDVD needs 10 - 15GB to work smoothly...)

  • Not getting data from attachments

    I have the below code in Desiger 10 and it works for the first one or two attachments but then will error out with the following error:
    Unhandled exception at 0x5CFCF19A (EScript.api) in Acrobat.exe: 0xC0000005: Access violation reading location 0x80000000.
    Code:
    var myDoc = event.target;
    var attachments = myDoc.dataObjects;
    if (attachments == null) {
        app.alert("No attachments found!");
    } else {
        for (var i = 0; i < attachments.length; i++) {
            var attach = myDoc.openDataObject(attachments[i].name);
            try {
                if (attach != null) {
                   var field = oAttach.getField("myfield");
                   console.println("field: "+field.value);
                   attach.closeDoc();               
            } catch (error) {
                console.println(error);
    console.println("Done loading attachments");
    Once this works, there is more code to add.
    Help!

    The following seems to have fixed:
             for (var i = 0; i < attachments.length; i++) {
                  var attach = myDoc.openDataObject(attachments[i].name);
           try {
                if (attach != null) {
                   var field = oAttach.getField("myfield");
                   console.println("field: "+field.value);
                   xfa.event.cancelAction = true;
                   if (attach.disclosed) {
                        attach.closeDoc();               
            } catch (error) {
                console.println(error);

  • Not getting attachment emails on my 5c

    I'm not getting emails with attachments on my 5c.  all other emails i get them fine.  do you know if I need to work on the settings?  went to Verizon yesterday and they suggested to go to apple.

    Just had to deal with this problem - once you do a factory restore make sure you do not add iCloud back (or if you do add it back make sure you do NOT sync contacts). If you do a sync with your iTunes it can add the old settings right back though so make sure to set it up with iTunes as a new device after the restore.

  • When I open an event, including flagged items, the photos appear one by one, not as thumbnails, so I can't export more than one phot at a time. How do I get iPhoto to show the thumbnails?

    When I open an event, including flagged items, the photos appear one by one, not as thumbnails, so I can't export more than one phot at a time. How do I get iPhoto to show the thumbnails?
    I've tried rebuilding the thumbnail database, but that hasn't helped.

    What version of iPhoto and system are you running?
    Try moving the Zoom slider at the bottom of the iPhoto window all the way to the left.  Does that let more than one photo display in the window?
    OT

  • I often get emails with attachments that will not open with my mac. Is there any free software to help this

    I often get emails with attachments that will not open with my mac often a small ? will show. How do I open these

    What kind of attachment? Post an example file name.

  • IExpense - Could not get handle to the Attachments VO

    Friends, I am stuck, so thought to get your help.
    On iExpense Final Review Page "FinalReviewPG" Submitt button, We have a requirement to throw the exception to user if he/she does not attach the Receipts Attachments with some specific Attachment Categories. In order to acheive this I need to get Handle to the Attachments VO but I could not as It throws the Java Exception error upon getting handle to the Attachments VO even though i added few atatchments and they showup on screen. Below is the portion of the problematic code and after that the full code. Thanks for your help.
    //below is the problmeatic code
    OAApplicationModule RootAM = oapagecontext.getRootApplicationModule();
    //OAApplicationModule AttachAM = (OAApplicationModule)RootAM.findApplicationModule("OAAttachmentsAM");//doesnt work
    //OAApplicationModule AttachAM = (OAApplicationModule)RootAM.findApplicationModule("oracle_apps_fnd_server_OAAttachmentsAM");//get the AM handle but null VOs
    OAAttachmentsAMImpl AttachAM = (OAAttachmentsAMImpl)RootAM.findApplicationModule("oracle_apps_fnd_server_OAAttachmentsAM");//throws me java null pointer exception
    FndAttachedDocumentsDomExtensionVORowImpl AttachRow =
    (FndAttachedDocumentsDomExtensionVORowImpl)AttachAM.getFndAttachedDocumentsDomExtensionVO().getCurrentRow();
    String strCategory = AttachRow.getAttachmentCategoryName();
    oapagecontext.writeDiagnostics("tc.oracle.apps.ap.oie.webui.TCFinalReviewPageCO",
    "IM90978: 14-Feb-2013 14:32 strCategory = "+ strCategory, 2);
    //below is my full code
    package tc.oracle.apps.ap.oie.entry.summary.webui;
    import oracle.apps.ap.oie.entry.summary.webui.FinalReviewPageCO;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageAttachmentLinkBean;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.ap.oie.server.WebExpensesAMImpl;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageAttachmentLinkBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageInlineAttachmentBean;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.ap.oie.server.ExpenseReportHeadersVORowImpl;
    import oracle.apps.ap.oie.server.WebExpensesAMImpl;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.beans.layout.OAAttachmentTableBean;
    import oracle.apps.fnd.server.FndAttachedDocumentsDomExtensionVORowImpl;
    import oracle.apps.fnd.server.FndAttachedDocumentsVORowImpl;
    import oracle.apps.fnd.server.*;
    import oracle.apps.fnd.server.OAAttachmentsService;
    import oracle.apps.fnd.server.OAAttachmentsAMImpl;
    import oracle.apps.fnd.framework.*;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.OARow;
    public class TCFinalReviewPageCO extends FinalReviewPageCO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    public void processFormData(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processFormData(oapagecontext, oawebbean);
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    String s = oapagecontext.getParameter("OIESubmit");
    if (s != null)
    OAMessageStyledTextBean oamessagestyledtextbean = (OAMessageStyledTextBean)oawebbean.findChildRecursive("ReceiptRequired");
    String strReceiptRequired = oamessagestyledtextbean.getText(oapagecontext);
    WebExpensesAMImpl am =
    (WebExpensesAMImpl)oapagecontext.getRootApplicationModule();
    ExpenseReportHeadersVORowImpl row =
    (ExpenseReportHeadersVORowImpl)am.getExpenseReportHeadersVO().getCurrentRow();
    String isPaperLessClaim = row.getAttribute5();
    OAApplicationModule RootAM = oapagecontext.getRootApplicationModule();
    //OAApplicationModule AttachAM = (OAApplicationModule)RootAM.findApplicationModule("OAAttachmentsAM");//doesnt work
    //OAApplicationModule AttachAM = (OAApplicationModule)RootAM.findApplicationModule("oracle_apps_fnd_server_OAAttachmentsAM");//get the AM handle but null VOs
    OAAttachmentsAMImpl AttachAM = (OAAttachmentsAMImpl)RootAM.findApplicationModule("oracle_apps_fnd_server_OAAttachmentsAM"); // I get error right here :(
    FndAttachedDocumentsDomExtensionVORowImpl AttachRow =
    (FndAttachedDocumentsDomExtensionVORowImpl)AttachAM.getFndAttachedDocumentsDomExtensionVO().getCurrentRow();
    String strCategory = AttachRow.getAttachmentCategoryName();
    oapagecontext.writeDiagnostics("tc.oracle.apps.ap.oie.webui.TCFinalReviewPageCO",
    "IM90978: 14-Feb-2013 14:32 strCategory = "+ strCategory, 2);
    if ("Required".equals(strReceiptRequired) && "Y".equals(isPaperLessClaim))
    // Receipt is required, check for required attachment
    oapagecontext.writeDiagnostics("tc.oracle.apps.ap.oie.webui.TCFinalReviewPageCO",
    "IM90978: 14-Feb-2013 14:32 both conditions met = ", 2);
    OAMessageAttachmentLinkBean oamessageattachmentlinkbean = (OAMessageAttachmentLinkBean)oawebbean.findChildRecursive("ReviewGenInfoHeaderAttachments");
    String strAttachment = (String)oamessageattachmentlinkbean.getAttributeValue(oapagecontext.getRenderingContext(), TEXT_ATTR);
    if("None".equals(strAttachment.trim()))
    oapagecontext.writeDiagnostics("tc.oracle.apps.ap.oie.webui.TCFinalReviewPageCO",
    "IM90978: 14-Feb-2013 14:32 before exception = ", 2);
    throw new OAException("XXTFA", "XXTFA_ATTACH_RECEIPT");
    else
    super.processFormRequest(oapagecontext, oawebbean);
    else
    super.processFormRequest(oapagecontext, oawebbean);
    else
    super.processFormRequest(oapagecontext, oawebbean);
    }

    Hi,
    Check and see the below code works or not, see which option suits for you,
    1) Check any attachment is there or not
    ======================================
    public boolean checkAttachment(OAPageContext oapagecontext,OAWebBean oawebbean)
    OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
    String amName = "";
    String objectivesAMName = "OAAttachmentsAM";
    String objectiveVOName = "FndAttachedDocumentsDomExtensionVO";
    String nestedAMArray[] = am.getApplicationModuleNames();
    oapagecontext.writeDiagnostics(this,"Root AM=>"+am.getName() + " Child AMs=>"+ nestedAMArray.length,1);
    OAApplicationModule currentAM = null;
    OAViewObject vo = null;
    boolean isAttachmentFound = false;
    currentAM = am;
    for(int i = 0; i < nestedAMArray.length; i++)
    amName = nestedAMArray;
    oapagecontext.writeDiagnostics(this,"Nested AM Name=>"+amName + "and amName.indexOf(objectivesAMName) "+amName.indexOf(objectivesAMName),1);
    currentAM = (OAApplicationModule)am.findApplicationModule(amName);
    //Get the view names
    oapagecontext.writeDiagnostics(this,"Nested AM Value "+currentAM.getName(),1);
    if(!(amName.indexOf(objectivesAMName)==-1))
    String[] viewNames = currentAM.getViewObjectNames();
    for (int j =0 ;j<viewNames.length ;j++ )
    if(viewNames[j].indexOf(objectiveVOName) > 0){
    vo = (OAViewObject)currentAM.findViewObject(viewNames[j]);
    if(vo!=null && vo.getFetchedRowCount() > 0){
    oapagecontext.writeDiagnostics(this,"View object name "+viewNames[j]+" Row Count"+vo.getFetchedRowCount(),1);
    isAttachmentFound = true;
    break;
    oapagecontext.writeDiagnostics(this,"Found Handle to My Nested AM " + amName ,1);
    return isAttachmentFound;
    2) Check the attachment count when the auto commit is false:
    public boolean checkAttachment(OAPageContext oapagecontext,OAWebBean oawebbean){
    OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
    String amName = "";
    String objectivesAMName = "OAAttachmentsAM";
    String objectiveVOName = "FndAttachedDocumentsDomExtensionVO";
    String nestedAMArray[] = am.getApplicationModuleNames();
    oapagecontext.writeDiagnostics(this,"Root AM=>"+am.getName() + " Child AMs=>"+ nestedAMArray.length,1);
    OAApplicationModule currentAM = null;
    OAViewObject vo = null;
    boolean isAttachmentFound = false;
    currentAM = am;
    for(int i = 0; i < nestedAMArray.length; i++)
    amName = nestedAMArray[i];
    oapagecontext.writeDiagnostics(this,"Nested AM Name=>"+amName + "and amName.indexOf(objectivesAMName) "+amName.indexOf(objectivesAMName),1);
    currentAM = (OAApplicationModule)am.findApplicationModule(amName);
    //Get the view names
    oapagecontext.writeDiagnostics(this,"Nested AM Value "+currentAM.getName(),1);
    if(!(amName.indexOf(objectivesAMName)==-1))
    String[] viewNames = currentAM.getViewObjectNames();
    for (int j =0 ;j<viewNames.length ;j++ )
    if(viewNames[j].indexOf(objectiveVOName) > 0){
    vo = (OAViewObject)currentAM.findViewObject(viewNames[j]);
    if(vo!=null && vo.getFetchedRowCount() > 0){
    oapagecontext.writeDiagnostics(this,"View object name "+viewNames[j]+" Row ount"+vo.getFetchedRowCount(),1);
    isAttachmentFound = true;
    break;
    oapagecontext.writeDiagnostics(this,"Found Handle to My Nested AM " + amName ,1);
    return isAttachmentFound;
    With regards,
    Kali.
    OSSi.

  • IPhoto6 - after a full reistall of Snow Leopard, iphoto does not display thumbnails. I've restored from time machine, rebuilt the library and run through the rebuild thumbnails function with no success. The files are there, I just get a dotted outline.

    iPhoto6 on iMac running SL - after a full reistall of Snow Leopard, iphoto does not display thumbnails. I've restored the library from time machine, rebuilt the library from iPhoto and run through the rebuild thumbnails function with no success. The files are there, I just get a dotted outline instead of the thumbnails. Does anyone have any other ideas on how to restore the thumbnails?

    Try the following:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I am not getting album art/thumbnail of album category in MusicLibrary (only getting default mp3 icon / thumbnail.Type == ThumbnailType.Icon) in WP 8.1 ,C#.Not getting ThumbnailType.Image. Plz Help

     private async Task GenerateMusicInternalStorageItems(IReadOnlyList<StorageFolder> musicLibrary)
                foreach (StorageFolder item in musicLibrary)
                    try
                        IReadOnlyList<IStorageItem> folderContents = await item.GetItemsAsync();
                        if (folderContents.Count > 0)
                            MusicMyDeviceFolderViewModel objMusicMyDeviceFolderViewModel = new MusicMyDeviceFolderViewModel();
                            objMusicMyDeviceFolderViewModel.Name = item.Name;
                            objMusicMyDeviceFolderViewModel.AlbumPath = item.Path;
                            objMusicMyDeviceFolderViewModel.ItemCount = folderContents.Count;
                            StorageFile firstFile = folderContents.OfType<StorageFile>().FirstOrDefault();
                            if (firstFile != null)
                                const ThumbnailMode thumbnailMode = ThumbnailMode.DocumentsView;
                                const uint size = 300;
                                using (StorageItemThumbnail thumbnail = await firstFile.GetScaledImageAsThumbnailAsync(thumbnailMode, size))
                                    if (thumbnail != null  /*&& thumbnail.Type == ThumbnailType.Image*/)
                                        BitmapImage genThumbnail = new BitmapImage();
                                        genThumbnail.SetSource(thumbnail);
                                        objMusicMyDeviceFolderViewModel.Thumbnail = genThumbnail;
                            albumList.Add(objMusicMyDeviceFolderViewModel);
                    catch
    This is my Code ? now i commented  - > thumbnail.Type == ThumbnailType.Image. i am not getting image. default mp3 icon is getting for all album
                                              

      private async Task GenerateMusicFolderItems(IReadOnlyList<StorageFolder> musicLibrary)
                foreach (StorageFolder item in musicLibrary)
                    try
                        IReadOnlyList<IStorageItem> folderContents = await item.GetItemsAsync();
                        if (folderContents.Count > 0)
                            MusicMyDeviceFolderViewModel objMusicMyDeviceFolderViewModel = new MusicMyDeviceFolderViewModel();
                            objMusicMyDeviceFolderViewModel.Name = item.Name;
                            objMusicMyDeviceFolderViewModel.AlbumPath = item.Path;
                            objMusicMyDeviceFolderViewModel.ItemCount = folderContents.Count;
                            StorageFile firstFile = folderContents.OfType<StorageFile>().FirstOrDefault();
                            if (firstFile != null)
                                const ThumbnailMode thumbnailMode = ThumbnailMode.MusicView;
                                const uint size = 300;
                                using (StorageItemThumbnail thumbnail = await firstFile.GetThumbnailAsync(thumbnailMode, size))
                                    if (thumbnail != null  /*&& thumbnail.Type == ThumbnailType.Image*/)
                                        BitmapImage genThumbnail = new BitmapImage();
                                        genThumbnail.SetSource(thumbnail);
                                        objMusicMyDeviceFolderViewModel.Thumbnail = genThumbnail;
                            albumList.Add(objMusicMyDeviceFolderViewModel);
                    catch
            }

  • I am using OS X and some of my customers are not getting attachments sent with Apple mail. This is very frustrating. Someone please help.

    I am using OS X and some of my customers are not getting attachments sent with Apple mail. This is very frustrating. Someone please help.

    Run the 10.5.8 Combi Updater again, then reboot your Mac.
    The Combo updater of Leopard 10.5.8 can be found here:
    http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update

  • Date received time is wrong on Mail and people not getting attachments

    Since I moved to this new MacBook Pro with the intel processor from my iMac G5, this latest version of Mail seems to be more problematic than the last:
    I can not get the time displayed in the list of emails to be correct. It keeps displaying a time that is 2 hours behind the actual time the email is sent. Meanwhile my system clock is on the right time and I would imagine it is getting it from there.
    My other issue is that more now than before, people are telling me they are not getting the Microsoft Word documents that I am sending.
    My last issue is about importing mail, For some strange reason when I have imported mail from my other computer to this one as I like to have the messages I have sent saved, Mail skips dates. I have repeated the steps a few times thinking I could resolve the problem and now I have just ended up with duplicated messages.

    I can not get the time displayed in the list of emails to be correct.
    It keeps displaying a time that is 2 hours behind the actual time the
    email is sent. Meanwhile my system clock is on the right time and
    I would imagine it is getting it from there.
    Have you checked your time zone setting - System Preferences > Date & Time under the Time Zone tab?
    If correct, the date and time displayed in the received column in Mail or with any email client is determined by the incoming mail server for the account. Check the long message headers for the received message - the time shown for the first received line.
    My other issue is that more now than before, people are telling
    me they are not getting the Microsoft Word documents that I am sending.
    If included with the sent message in the account's Sent mailbox, anything that happens to an attachment after being successfully sent by any email client is usually a problem with the recipient's incoming mail server.
    My last issue is about importing mail, For some strange reason
    when I have imported mail from my other computer to this one
    as I like to have the messages I have sent saved, Mail skips dates.
    I have repeated the steps a few times thinking I could resolve the
    problem and now I have just ended up with duplicated messages.
    Which OS X and Mail.app version are you running on your other Mac.
    Unfortunately, the Mail.app import mailbox process is not the best - especially when importing from Jaguar or Panther Mail to Tiger Mail.

  • How come the images are not getting displayed in ie?

    Hi,
    In my application i have a page where the thumbnails
    representing the videos uploaded into the site should be
    displayed.These imgaes are getting displayed in mozilla properly,
    but when it comes to ie 7 they are not getting displayed..instead
    iam getting a broken image.Please suggest me a solution.Thanks in
    advance.

    Hi KChamarti,
    I am also trying to display images insid the datagrid but i get a weird broken image(all silver gray).
    My item renderer is:
              <mx:DataGridColumn headerText="Type">
                   <mx:itemRenderer>
                     <mx:Component>
                      <mx:HBox verticalGap="2">
                          <mx:Image id="dgImage" source="\assets\images\{toLowerCase(data.type)}.jpg" />
                          <mx:Label text="{data.type}"/>
                        </mx:HBox>
                     </mx:Component>
                   </mx:itemRenderer>
                </mx:DataGridColumn>
    Am i mentioning the source of the image in the right way?

  • Not getting all required samples

    Hi, I'm new to Labview and don't understand why I'm not getting all the samples I ask for. 
    I have a USB-6212-BNC module collecting data from 2 analog voltage inputs. I'm using ai0 for the analog trigger, using basically the same VI found as an example here: https://decibel.ni.com/content/docs/DOC-11764
    The problem is that I am not getting all the samples needed. As you can see in the example below I only got ~1000 samples when asking for 2000. 
    Attachments:
    Sample Issue.png ‏23 KB
    Sample Issue.vi ‏30 KB

    Hi bigdoug,
    the output of the graph is what you get from the (missing) subVI calculation.
    The DAQmxRead is configured to read 2000 samples and it surely does so as you would get a DAQmx error message instead...
    Please check your subVI or attach it here with some meaningful default data!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Index array is not getting new values from DAQ

    I am measuring force values with my DAQ card and these values are always changing.  However, in my programming something is not working right with the way I have things set up.  After my DAQ I have a "Convert to Dynamic Data" and after that I have an "Index Array".  When the program is executing and I turn on the highlight option I do not get changing force values after the "Convert to Dynamic Data" and therefore no changing force values enter my "Index Array".  Whaterever the first value is that gets passed to the "Convert to Dynamic Data" is the only value that I get for the remainder of the program.  I tried plugging in an indicator between the DAQ and the "Convert to Dynamic Data" and it did show varying values.  Please help with my program.  I have tried messing with the properties of the "Convert to Dynamic Data" and nothing has worked.  I am stuck and cannot see how to fix this problem.  I have attached my program as it is currently put together.
    Thank You In Advance,
    Gabe.
    Attachments:
    Actuator_Gabe_Oct27_Flat_Sequence_XY_+Measurement_File.vi ‏131 KB

    Please know that the best option is to review the concepts discussed to further understand programming in LabVIEW.  Perhaps you could take a look through ni.com/gettingstarted and ni.com/lv101 to have a look at some of the online help materials.  I have included a VI snippet of the while loop containing the changes.  Further, the code you attached contains a lot of customer controls and VIs, which are not common to all LabVIEW users.  It is a best practice to only attach the code of value to the question/post, and to have the most simplified version of the problem.
    Best,
    Adam
    Academic Product Manager
    National Intruments

Maybe you are looking for

  • Fonts on Websites are not displaying correctly

    I am using FF 16.0.2 with all the default settings. When I go to certain websites, it displays with non-readable characters, almost like it isn't recognizing the page encoding. I checked and my encoding settings are set to Unicode (UTF-8). Screenshot

  • How to transfer 3120 phone images to my pc

    Hi everyone, I am clueless and desperate. I have read the manual.  I am supposed to have a USB Data Cable CA 101. It is not available in the Nokia Store in Glorietta 3, Makati.  They tell me it is also not available in Greenbelt 1, as they called tha

  • 2 very simple questions to be answered

    1-Is it possible to change the size of an applet window while the applet is running? 2-Would you expect to be able to read a file called "MyApplet.class"? Tnx in advance

  • After upgrading to 1.2 shuts down after playing five minutes music

    After upgrading Ipod nano 8GB from 1.0 to 1.2 two thing happens 1- During the play if click the power switch it turn itself off which causes baterry drain 2- If I keep it on after 5 minutes it turn itself off Any solution ? how can I downgrade it ? T

  • Could Someone Explain Interfaces in English Please?

    Hi Everyone- I'm new to Java. I've been reading "Learning Java" from O'Reilly. From what I understand, Interfaces are sort of a structural framework that lists certain methods. Any class that implements an interface must contain this "structure" and