View size of files that make up an LLB?

Does anyone know if there is a way to view 'by size' in the LLB manager? 
Solved!
Go to Solution.

I'm not sure about rtexe, but normal exes are since about LabVIEW 2009 really disguised ZIP files inside an executable wrapper, unless you select the "Use LabVIEW 8.x layout" in the Build options. So I wouldn't be to surprised if they use that in LabVIEW RT executables as well.
Rolf Kalbermatter
CIT Engineering Netherlands
a division of Test & Measurement Solutions

Similar Messages

  • How do I calculate the size of files that I have UNC paths for

    I am on SQL Server 2008 R2. I have a table that contains a field called [Location]. In that field is a UNC path to the physical file on the repository. Is there a way in SQL Server that I can say give me the select sum([Location] UNC file) where criteria?
    I saw some posts about xp_filesize or xp_GetFileDetails, but I do not see them in master. I am unable to add anything and wondering if there is any native functionality that would allow me to accomplish this!? Thanks.

    Maybe you can use an Excel Macro for this kind of thing.
    Dim iRow
    Sub ListFiles()
    iRow = 11
    Call ListMyFiles(Range("C7"), Range("C8"))
    End Sub
    Sub ListMyFiles(mySourcePath, IncludeSubfolders)
    Set MyObject = New Scripting.FileSystemObject
    Set mySource = MyObject.GetFolder(mySourcePath)
    On Error Resume Next
    For Each myFile In mySource.Files
    iCol = 2
    Cells(iRow, iCol).Value = myFile.Path
    iCol = iCol + 1
    Cells(iRow, iCol).Value = myFile.Name
    iCol = iCol + 1
    Cells(iRow, iCol).Value = myFile.Size
    iCol = iCol + 1
    Cells(iRow, iCol).Value = myFile.DateLastModified
    iRow = iRow + 1
    Next
    If IncludeSubfolders Then
    For Each mySubFolder In mySource.SubFolders
    Call ListMyFiles(mySubFolder.Path, True)
    Next
    End If
    End Sub
    Try this too.
    Sub TestListFilesInFolder()
    ' Open folder selection
    ' Open folder selection
    With Application.FileDialog(msoFileDialogFolderPicker)
    .Title = "Select a Folder"
    .AllowMultiSelect = False
    If .Show <> -1 Then GoTo NextCode
    pPath = .SelectedItems(1)
    If Right(pPath, 1) <> "\" Then
    pPath = pPath & "\"
    End If
    End With
    NextCode: 'MsgBox "No files Selected!!"
    'Application.WindowState = xlMinimized
    'Application.ScreenUpdating = False
    Workbooks.Add ' create a new workbook for the file list
    ' add headers
    ActiveSheet.Name = "ListOfFiles"
    With Range("A2")
    .Formula = "Folder contents:"
    .Font.Bold = True
    .Font.Size = 12
    End With
    Range("A3").Formula = "File Name:"
    Range("B3").Formula = "File Size:"
    Range("C3").Formula = "File Type:"
    Range("D3").Formula = "Date Created:"
    Range("E3").Formula = "Date Last Accessed:"
    Range("F3").Formula = "Date Last Modified:"
    Range("A3:F3").Font.Bold = True
    Worksheets("ListOfFiles").Range("A1").Value = pPath
    Range("A1").Select
    With Selection.Interior
    .Pattern = xlSolid
    .PatternColorIndex = xlAutomatic
    .Color = 65535
    .TintAndShade = 0
    .PatternTintAndShade = 0
    End With
    With Selection.Font
    .Color = -16776961
    .TintAndShade = 0
    End With
    Selection.Font.Bold = True
    ListFilesInFolder Worksheets("ListOfFiles").Range("A1").Value, True
    ' list all files included subfolders
    Range("A3").Select
    Lastrow = Range("A1048576").End(xlUp).Row
    Range(Selection, Selection.End(xlToRight)).Select
    Range(Selection, Selection.End(xlDown)).Select
    ActiveWorkbook.Worksheets("ListOfFiles").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("ListOfFiles").Sort.SortFields.Add Key:=Range( _
    "B4:B" & Lastrow), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:= _
    xlSortNormal
    With ActiveWorkbook.Worksheets("ListOfFiles").Sort
    .SetRange Range("A3:F" & Lastrow)
    .Header = xlYes
    .MatchCase = False
    .Orientation = xlTopToBottom
    .SortMethod = xlPinYin
    .Apply
    End With
    Range("A1").Select
    Cells.Select
    Cells.EntireColumn.AutoFit
    Columns("A:A").Select
    Selection.ColumnWidth = 100
    Range("A1").Select
    End Sub
    Sub ListFilesInFolder(SourceFolderName As String, IncludeSubfolders As Boolean)
    ' lists information about the files in SourceFolder
    Dim FSO As Scripting.FileSystemObject
    Dim SourceFolder As Scripting.Folder, SubFolder As Scripting.Folder
    Dim FileItem As Scripting.File
    Dim r As Long
    Set FSO = New Scripting.FileSystemObject
    Set SourceFolder = FSO.GetFolder(SourceFolderName)
    r = Range("A1048576").End(xlUp).Row + 1
    For Each FileItem In SourceFolder.Files
    ' display file properties
    Cells(r, 1).Formula = FileItem.Path & FileItem.Name
    Cells(r, 2).Formula = (FileItem.Size / 1048576)
    Cells(r, 2).Value = Format(Cells(r, 2).Value, "##.##") & " MB"
    Cells(r, 3).Formula = FileItem.Type
    Cells(r, 4).Formula = FileItem.DateCreated
    Cells(r, 5).Formula = FileItem.DateLastAccessed
    Cells(r, 6).Formula = FileItem.DateLastModified
    ' use file methods (not proper in this example)
    r = r + 1 ' next row number
    Next FileItem
    If IncludeSubfolders Then
    For Each SubFolder In SourceFolder.SubFolders
    ListFilesInFolder SubFolder.Path, True
    Next SubFolder
    End If
    Columns("A:F").AutoFit
    Set FileItem = Nothing
    Set SourceFolder = Nothing
    Set FSO = Nothing
    ActiveWorkbook.Saved = True
    End Sub
    Sub CreateList()
    Application.ScreenUpdating = False
    Workbooks.Add ' create a new workbook for the folder list
    ' add headers
    ActiveSheet.Name = "ListOfFiles"
    With Cells(3, 1)
    .Value = "Folder contents:"
    .Font.Bold = True
    .Font.Size = 12
    End With
    Cells(4, 1).Value = "Folder Path:"
    Cells(4, 2).Value = "Folder Name:"
    Cells(4, 3).Value = "Folder Size:"
    Cells(4, 4).Value = "# Subfolders:"
    Cells(4, 5).Value = "# Files:"
    Range("A3:E3").Font.Bold = True
    ListFolders BrowseFolder, True
    Application.ScreenUpdating = True
    Cells.Select
    Cells.EntireColumn.AutoFit
    Columns("A:A").Select
    Selection.ColumnWidth = 100
    Columns("B:B").Select
    Selection.ColumnWidth = 25
    Range("A1").Select
    End Sub
    Sub ListFolders(SourceFolderName As String, IncludeSubfolders As Boolean)
    ' lists information about the folders in SourceFolder
    Dim FSO As Scripting.FileSystemObject
    Dim SourceFolder As Scripting.Folder, SubFolder As Scripting.Folder
    Dim r As Long
    Set FSO = New Scripting.FileSystemObject
    Set SourceFolder = FSO.GetFolder(SourceFolderName)
    ' display folder properties
    Worksheets("ListOfFiles").Range("A1").Value = SourceFolderName
    Range("A1").Select
    With Selection.Interior
    .Pattern = xlSolid
    .PatternColorIndex = xlAutomatic
    .Color = 65535
    .TintAndShade = 0
    .PatternTintAndShade = 0
    End With
    With Selection.Font
    .Color = -16776961
    .TintAndShade = 0
    End With
    Selection.Font.Bold = True
    r = Cells(Rows.Count, 1).End(xlUp).Row + 1
    Cells(r, 1).Value = SourceFolder.Path
    Cells(r, 2).Value = SourceFolder.Name
    Cells(r, 3).Value = SourceFolder.Size
    Cells(r, 3).Value = (SourceFolder.Size / 1048576)
    Cells(r, 3).Value = Format(Cells(r, 3).Value, "##.##") & " MB"
    Cells(r, 4).Value = SourceFolder.SubFolders.Count
    Cells(r, 5).Value = SourceFolder.Files.Count
    If IncludeSubfolders Then
    For Each SubFolder In SourceFolder.SubFolders
    ListFolders SubFolder.Path, True
    Next SubFolder
    Set SubFolder = Nothing
    End If
    Columns("A:E").AutoFit
    Set SourceFolder = Nothing
    Set FSO = Nothing
    ActiveWorkbook.Saved = True
    End Sub
    And, finally.
    Const BIF_RETURNONLYFSDIRS As Long = &H1 ''' For finding a folder to start document searching
    Const BIF_DONTGOBELOWDOMAIN As Long = &H2 ''' Does not include network folders below the domain level in the tree view control
    Const BIF_RETURNFSANCESTORS As Long = &H8 ''' Returns only file system ancestors.
    Const BIF_BROWSEFORCOMPUTER As Long = &H1000 ''' Returns only computers.
    Const BIF_BROWSEFORPRINTER As Long = &H2000 ''' Returns only printers.
    Const BIF_BROWSEINCLUDEFILES As Long = &H4000 ''' Returns everything.
    Const MAX_PATH As Long = 260
    Type BROWSEINFO
    hOwner As Long
    pidlRoot As Long
    pszDisplayName As String
    lpszINSTRUCTIONS As String
    ulFlags As Long
    lpfn As Long
    lParam As Long
    iImage As Long
    End Type
    Declare Function SHGetPathFromIDListA Lib "shell32.dll" (ByVal pidl As Long, ByVal pszBuffer As String) As Long
    Declare Function SHBrowseForFolderA Lib "shell32.dll" (lpBrowseInfo As BROWSEINFO) As Long
    Function BrowseFolder() As String
    Const szINSTRUCTIONS As String = "Choose the folder to use for this operation." & vbNullChar
    Dim uBrowseInfo As BROWSEINFO
    Dim szBuffer As String
    Dim lID As Long
    Dim lRet As Long
    With uBrowseInfo
    .hOwner = 0
    .pidlRoot = 0
    .pszDisplayName = String$(MAX_PATH, vbNullChar)
    .lpszINSTRUCTIONS = szINSTRUCTIONS
    .ulFlags = BIF_RETURNONLYFSDIRS
    .lpfn = 0
    End With
    szBuffer = String$(MAX_PATH, vbNullChar)
    ''' Show the browse dialog.
    lID = SHBrowseForFolderA(uBrowseInfo)
    If lID Then
    ''' Retrieve the path string.
    lRet = SHGetPathFromIDListA(lID, szBuffer)
    If lRet Then BrowseFolder = Left$(szBuffer, InStr(szBuffer, vbNullChar) - 1)
    End If
    BrowseFolder = BrowseFolder & "\"
    End Function
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • I have a corrupt Photo file, that makes Aperture stop working properly.

    I recently imported some of my old photos from a CD to the Aperture Library. Every time I open that project or try to work with any of those photos Aperture will stop working. (in a very aggressive way)
    The viewer wont update.!
    It wont make any change or save anything.!
    I have to quit and restart Aperture to have it working again, I don't know what is wrong.
    Any Idea?
    Maybe new aperture .5 will fix this??
    TKS
    G5 quad   Mac OS X (10.4.7)   big ram

    Another option would be to quit Aperture, remove the project from the Library using the Finder, reopen Aperture (the troublesome project will now be greyed out), throw the troublesome project out, and finally reimport the images back into Aperture. The only problem is you now have to re-do any adjustments etc. for that project. If he project has other images you do not want to re-do you could try just removing the problem import group, go back into aperture and then throw those images out, quit (you may have to force quit) Aperture and then restart Aperture. I did the above on a test Aperture library, but as usual you have to be carefull. Do not do any of this without first duplicating the troublesome library.

  • How Can I View an AppleScript File that was Saved as "Run Only"?

    Hello. I would like to view the AppleScript of a file I downloaded. But when I show the package contents, find the script, and try to open it, I get a message saying that the file "main.scpt" could not be opened because it was saved as run-only. How can I view this file?

    Are you using the save version of Illustrator on both Mac and PC? If so, and you have the same fonts installed on both machines you should be able to open it without any problems. You may need to tell it which fonts to assign, they are not always named the same. If you don't need to edit the text, you could convert the text to outline and eliminate the need for fonts.

  • What is it about RAW files that make them difficult to interpret?

    Are they not simply non-compressed, higher bit depth, bitmap files?
    And if they are, then perhaps the issue with respect to poor "conversions" in Aperture has to do with lack of auto processing. When you open a RAW file in ACR it automatically makes adjustments. This doesn't happen in Aperture.

    And RAW files are mostly shot using Bayer sensors - instead of each pixel sensing RGB, each pixel only senses one colour, with there being twice as many green sensors as red or blue.
    http://www.chez.com/hyffont/pages/Photos/PhotoEng/Theory/Sensoreng.html
    Look at the grid diagram at the bottom of the page. This colour mosaic has to be translated into regular RGB bitmap data.
    To make it even more complex, some manufacturers encrypt some of the data, such as white balance info for the Nikon D2X. The RAW format is not just different from manufacturer to manufacturer but from model to model - a .CR2 from a Canon 20D is different from the .CR2 from a Canon 350D, even though they are the same generation and resolution.
    Nightmare.

  • Files that make up a tablespace

    Hi,
    I understand that a tablespace is the lowest level logical entity for storing data and that it can be made up of several physical files.
    What I am unclear about is how Oracle distributes the data in the physical files (i.e. say I have TB01 (3GB) made up of 3 files TB01_01.ORA (1GB), TB01_02.ORA (1GB) and TB01_03.ORA (1GB). The tablespace is initially empty. If I create a table for one of the schemas using tablespace TB01 and insert enough rows to occupy 1/3 of the tablespace then how should I expect to see the data distribution in the physical files ? ).
    I guess my question could be read as :
    Is it necessary or even recommended for a tablespace to be made up of several (smaller) physical files if I have enough physical disk space for one large physical file ?
    Thanks,
    Gabriel

    Hi,
    The reason for having several datafiles on the server for a tablespace is the OS filesize limitation (typically like 2G on UNIX). Another reason is to be covenient
    for portable tablespaces, and so on.
    However, if you don't have OS limit (like Windows) then having one big tablespace is enough.
    If you want to see the distributiion of datafiles run the following query first and then create your table and re-run the query again to see the file distribution.
    select f.tablespace_name, d.file_name, sum(f.bytes) free_space_on_tbl
    from dba_free_space f,
    dba_data_files d
    where d.FILE_ID = f.file_id     
    group by f.tablespace_name, d.file_name;

  • Unable to view and access files

    Since updating to Yosemite on my MacBook Pro (early 2011), I have been unable to view and access files on my time capsule. I can still access my backups through Time Machine, but not able to view or access the files that I saved onto the device (by method of copy and paste from my laptop hard drive to the TM). Before the "upgrade" to Yosemite I used to open Time Machine, close it, and then the icon of the TM (just like a typical external hard drive) would show up on the desktop. I would double click and open the TM icon and be able to view all the files that I saved onto the hard drive of the TM, as well as a folder that said "Time Machine Backups." Now, all I see now is my MacBrook Pro Icon and a folder named "File Server." and when I double click on either icon there is nothing to view. Please help!

    Try this..
    Reset the TC to factory and redo the setup.. I strongly recommend the following setup.
    Factory reset universal
    Power off the TC.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the TC to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    N.B. None of your files on the hard disk of the TC are deleted.. this simply clears out the router settings of the TC.
    Setup the TC again.
    ie Start from a factory reset. No files are lost on the hard disk doing this.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg TCgen5 and TCwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use TC24ghz and TC5ghz with fixed channels as this also seems to help stop the nonsense. But this can be tried in the second round.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the TC always takes the same IP address.. you will need to do this on the main router using dhcp reservation.. or a bit more complex setup using static IP in the TC. But this is important.. having IP drift all over the place when Yosemite cannot remember its own name for 5 min after a reboot makes for poor networking. If the TC is main router it will not be an issue.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric.. but this change will mess up your TM backup.. so be prepared to do a new full backup. Sorry.. keep this one for second round if you want to avoid a new backup.
    5. Mount the TC disk in the computer manually.
    In Finder, Go, Connect to server from the top menu,
    Type in SMB://192.168.0.254 (or whatever the TC ip is which you have now made static. As a router by default it is 10.0.1.1 and I encourage people to stick with that unless you know what you are doing).
    You can use name.. SMB://TCgen5.local where you replace TCgen5 with your TC name.. local is the default domain of the TC and doesn't change.
    However names are not so easy as IP address.. nor as reliable. At least not in Yosemite they aren't. The domain can also be an issue if you are not plugged or wireless directly to the TC.
    6. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only. If you use ethernet also do it for ethernet.. this is important.
    You can see the summary of the same thing from apple here.
    OS X Yosemite: Connect to shared computers and file servers on a network
    I have given somewhat more specific instructions which I believe are important.
    With the TC manually mounted can you access the files??
    If not please tell me and I will continue to think how to change permissions.
    But please if you can at least open a directory and tell me what the permissions are currently set to.
    eg. This is a directory on my TC.

  • Problems viewing my Flash file remotely

    Hello
    I am in need of someone who can tell me where I am going wrong.
    I create a movie on imovie. I take it to Flash(CS3) and publish it as an swf file
    I then install that file in Dreamweaver.
    All is good I save and preview it locally. the file's root folder is images and same remotely
    I upload all including the HTML page and when I view the page, the place where the file is is blank.
    I have uploaded this many times and it just wont work.
    I have never been lucky with these types of files so I know I'm doing something wrong.
    Your help is very appreciated.
    thank You
    Rob

    Sorry still not sure what you mean about a link. I have followed all the advise I could find on youtube and otherplaces about creating a flash file Flash CS3, inserting it on Dreamweaver CS3 and I up load it to my host/server as I have done to every other html, jpeg, bitmap or file  successfully before.  last night I created a swf of the slideshow I want to have in my index page using Dreamweavers 'sldeshow' feature thinking that this one cannot go wrong and I can preview it on Safari and Firefox at home but when I upload once again all the files that make up that sldeshow(just to make sure) it wont play on my site.
    Could my serve/host have anything to do? That is the only think that I never considered because I have certainly checked and re-checked every aspect of this...
    Anyway, once again, i thank you for your time.
    very Frustrated!

  • I am trying to view a PDF file and cannot see past page 2, I am trying to view a PDF file and cannot see past page 2

    I am trying to view a PDF file that has 22 pages and I do not know how to go thru the pages, it will not let me scroll down past page 2 or go to the next page.

    If you are using the built-in PDF viewer, you may have to swipe right or left instead of up and down. I recommend Goodreader as a third-party viewer if you want one.

  • Sony XDCam--can't view my .mov files in QT

    I am having no luck with viewing my .mov files that were captured by a Sony XDCam. The camera is Sony's newest and best-est for HD movie making. Is there a codec or program that I can install that will help?
    Point of interest: the audio comes through crystal clear; the video is a black screen... ugh.
    Many thanks!

    Do you have Final Cut Pro 5.1.2 or above installed on your system?
    The XDCAM HD codecs are licensed only to be installed with Final Cut Pro. The XDCAM EX codecs came with Final Cut Pro 6.0.2.

  • How to see the .AS file that .MXML file is translated to before being compiled to SWF?

    I am trying to dynamically load some other Applications in
    one Application, use ActionScript but not SWFLoader tag, it looks
    like:
    <mx:Application>
    <mx:Script>
    <![CDATA[
    private var loader:SWFLoader = new SWFLoader();
    private function loadSWF(url:String):void{
    var baseURL:String = this.url.substr(0,
    this.url.lastIndexOf("/"));
    var url = baseURL + "/"+ name;
    //even if I did not add any event listener!
    loader.load(url);
    ]]>
    </mx:Script>
    <mx:Button label="B" click="loadSWF('Top_2.swf');" y="10"
    x="58"/>
    </mx:Application>
    then when me click the button, always occured an error like
    this:(even if every method I add try...catch... )
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at mx.core::UIComponent/
    http://www.adobe.com/2006/flex/mx/internal::updateCallbacks()[E:\dev\3.0.x\frameworks\proj ects\framework\src\mx\core\UIComponent.as:5043
    at mx.core::UIComponent/set
    nestLevel()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:2522]
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::addingChild()[E:\dev\3.0.x\frameworks\projects \framework\src\mx\managers\SystemManager.as:1583
    at
    mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\3.0.x\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:2481]
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::docFrameHandler()[E:\dev\3.0.x\frameworks\proj ects\framework\src\mx\managers\SystemManager.as:2330
    however, if I use <mx:SWFLoader source="Top_2.swf" />
    tag, there is no such problem! So I think it must be I didn't init
    SWFLoader correctly!
    I hope someone can tell me how to crrect this mistake
    directly, but I more wish someone to tell me how to view the .as
    file that the .mxml file translated to before being compiled to a
    SWF( If there is a such step!)
    Thanks!

    Maybe the SWFLoader must be one child of one DisplayObject!??
    I found when the swfloader is been added to some
    DisplayObject in actionScript like below, the problem didn't occure
    any more.
    swfloader.visible = false;
    this.addChild(swfloader); // 'this' is current Application
    swfloader.addEventListener(".....", someHandler);
    swfloader.load("someurl");
    Why? Is this a bug or not?
    I am still waiting someone to tell me where a .mxml file can
    be translated to a .as file which could be visited!

  • Email review creates workflows file size that makes Acrobat 9 unbearably slow.

    I have been using the email review features in Acrobat pro version 9.3.1. All was going fine until, apparently, my workflows file got to around 1.5mb. If I understand correctly this is the file that Review Tracker uses to track PDF emailed for review.
    The problem is Acrobat becomes unbearably slow to open and operate.
    I narrowed down the reason by opening Acrobat with no plugins loaded and it operated fine. Then by enabling and disabling various plugins I found that when any plug-in having something to do with the commenting and tracking process was enabled acrobat again became unbearably slow. Through searching on this forum I found the workflows file that is created for tracking email reviews. I discovered with all plug-ins enabled and with the workflow file removed acrobat operated fine when I put the file back it again opens and operates unbearably slow.
    So I know how to make Acrobat operate correctly by removing the Workflows file. Acrobat will create a new one if I start another review. The big problem is I have lost all my tracking on previous reviews.
    I was wondering if anyone else might have had a similar problem when the Workflows file became larger than 1.5mb or so?
    Does anyone know of a way I can keep my previous email reviews and still have acrobat operate correctly?
    I also wonder if this will happen again?
    Thank you for your time and knowledge.
    System info
    Windows XP Pro x64 Edition
    Version 2003
    Service pack 3
    Intel Xeon CPU
    X5450 @ 3.00GHz
    2.99GHZ, 8.00 GB of RAM

    Flattening should be expected to make files bigger, much bigger in the worst case. It is rarely a way to reduce size, though sometimes it will be - it all depends on what is in the file.
    An example where it could reduce size is where a series of images are overlayed transparently. This would end up being a single one. There may be cases where lots of layers get consolidated into something simpler, but if the layers were vector and the result is raster it won't.
    So, flattening might be a useful tool, but it's best to try it and test the result.
    Better still to stop the proprietary software from choking... !

  • I am receiving a notification that says that I am running out of storage space. I backed up time mating to an external hard drive. Can I delete some files to make room?

    I am receiving notifications that I am running out of storage space. I backed up my mac book using an external and time machine. Can I delete some files to make room?
    If so,
    When I want to restore from my time machine, can I pick and choose, say certain songs, photos or documents?

    About TM "Backup Drive is Full"
    Alert TM only deletes older files if they have been deleted from the source and when TM needs space on the backup drive for a new incremental backup. Time Machine "thins" it's backups; hourly backups over 24 hours old, except the first of the day; those "daily" backups over 30 days old, except the first of the week. The weeklies are kept as long as there's room.
    So, how long a backup file remains depends on how long it was on your Mac before being deleted, assuming you do at least one backup per day. If it was there for at least 24 hours, it will be kept for at least a month. If it was there for at least a week, it will be kept as long as there's room.
    Note, that on a Time Capsule the sparsebundle grows in size as needed, but doesn't shrink. Thus, from the user's view of the TC it appears that no space has been freed, although there may be space in the sparsebundle.
    Once TM has found it cannot free up enough space for a new backup it reports the disk is full. You can either erase the backup drive and start your backups anew or replace the drive with a larger drive. You can also use the Time Machine application to selectively remove files, but that may be ineffective if you have to free up GBs of space.

  • Where is the file that contains the folder view setting?

    I know this questions been asked before but I can't find it and cant remember the answer. There is directory file that holds all the file and folder setting and if a persons deletes it, essentially all the files and folder view setting revert back to default view, which is a white back ground and icon view. I can't remember enough the name of the file to know for sure I am getting the right one, could some please quickly refresh my memory for me. I would appreciate it, Thanks Gf.

    I believe that that info is stored in the .DS_Store file in the relevant folder. Since it's invisible, you can either use one of the tricks to make the Mac show invisible files (Google will help you there), or you can use the Terminal. To delete it, in the Terminal, type "cd" (minus the quotes), then a space, then drop the folder in question on the Terminal window and hit return. Then type "rm .DS_Store".

  • How can I change the view size to make it my default?

    the view size is way too small with pages that I open on Firefox. I want to change the size and I want to make it my default so I don't have to click on zoom in everytime I open Firefox. Where can I change this? I have Windows Vista.

    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

Maybe you are looking for

  • Can we install oracle 10g in windows vista

    hi all i am trying to install oracle 10g in windows vista ultimate , but it is not getting install in windows vista wat is the version i have to use for windows vista ultimate , thank in advance

  • How to Generate XML Output file

    Hi, I want to print sample output XML file. I got this link 362496.1 An output file can be generated via the Preview functionality available under the XML Publisher Administrator responsibility. Navigation path : 1. Login to the application as SYSADM

  • Develop a program that can read pdf document in the UClinux OS?

    hello, I'm a programmer in a company which is doing embed development ,i want to develop a program that can read pdf document in the UClinux OS? Can some one give me some ideas? can some body give me some information? My email is [email protected] th

  • Logical data type -please help

    Hello there I want to use same jdbc code for different databases like MS Access, SQL server, Oracle, DB2 etc. But in case of logical data type fields (trye/false) in table I am facing problem in compatibilty. because it is being defined differently i

  • Adobe Flash 10 64 bits has been released by Adobe

    This Post Has Been Deleted Due To Huge Embarrassment. Last edited by milasch (2010-02-17 17:44:56)