Properties of the scanclock exported by Matlabs addClockConnection() on a 6229 OR USB (BNC)

With the Matlab DAQ Toolbox, it is possible to export a scanclock by addClockConnection() (see http://www.mathworks.de/de/help/daq/ref/daq.session.addclockconnection.html for an example of code base).

However, I found no information on properties signal exported on the NI USB 6229 (BNC), for instance frequency, amplitude, duty cycle, etc., or in the documentation, or on the web or in this forum.

I would be very happy if someone can point me to the documentation for the properties of scanclock.

Hello

All channels in a MATLAB session running at the same pace. So, if you create a session', s.Rate would be the rate of your acquisition or production. the 's.addClockConnection' method allows you to import or export a clock to analysis for synchronization purposes. The syntax below allows you to export the session of 'PFI0' on an external device clock. You can probably find documentation on the Web site, OR to the properties of the embedded clock signal, but it seems to be a pulse of 5 volts running to the session rate - which is typical to synchronize the devices together.

s.addClockConnection ('dev2\pfi0', 'external', 'ScanClock');

If you need duty cycle 50%, you must create your own clock using a channel of meter output as you did above. If you connect the clock to the GET, it can use it; and if you need your equipment OR to dribble the clock output of counter (instead of the clock on board), you would also import counter signal output in the session and be sure to set the rate of session to match the output frequency of the counter. Assuming that s.Channels (2) is your output channel of the meter, the code below imports terminal scan on the same clock as the meter output channel, so no extra wiring is necessary.

s.Rate = s.Channels (2). Frequency;

s.addClockConnection ('external', ['dev2\' s.Channels (2).]) (Terminal Server], "ScanClock");

This allows the device OR both your GET to run on the same clock. You can also have your session export a trigger to start with the syntax simillar to the above to make sure two devices on the same edge of clock.

s.addTriggerConnection ('dev2\pfi0', 'external', 'StartTrigger');

I hope this helps.

Kind regards

whemdan

The MathWorks

Tags: NI Hardware

Similar Questions

  • Properties of the batch export file

    I work in Acrobat X Pro and I have 500 files PDF for which I need to create a table that contains the name of the file, the number of pages and the size of the file. Can I print a text in the form of Acrobat batch file? Otherwise, someone knows a way to do it using something like PowerShell (I work on a PC)?

    Yes, this can be done with an Action and a script. A simple way to do this is to display the data in the console, which you should be able to copy it into a text file.  Create a new Action with a command run JavaScript and copy the following code:

    Console.println (this.documentFileName + "\t" + this.numPages + "\t" + this.filesize);

    Perform the Action on your files and when done press Ctrl + J to open the console, where you'll see the output.

  • Can I use charger property on a main sequence to load the properties in the subsequence?

    Hi, I tried to use the shipper of the property to load limits and variabels local values in subsequences of the main sequence.

    I can export all properties for my main sequence and all subsequences in the export function within selecing .

    When I try to load the file exported by using the property loader I get different errors depending on the format, with that I imported/exported.

    For the error of iget text files or csv-17100

    "The file format is incorrect near 'StationGlobals' section.  Make sure you use start and end markers correctly. »

    To get an xl format I get error - 18

    "Stage of charger property has no import or export properties.
    310 property values have been found.

    43 property values were imported from 920 or lines of data.

    There is no where close to 920 data lines or 320 properties in the file exported.

    If I use the property loader to load the properties to just hand it works very well, is it extra formatting that I do for the file before you import it or is it not possible to load the properties in a subsequence of a property to hand charger?


  • Several properties of the vm to export to CSV

    I am trying to query the properties of many virtual machines and placed them in a csv file. Thanks RvdNieuwendijk, I have a simple means to recover some of the properties, as described below.


    $VMs = "vm1', 'vm2', 'vm3.

    {foreach ($i in $vms)
    Get - VM $i | `
    Select-Object - property name,
    @{N = 'DNS Name'; E={$_. ExtensionData.Guest.HostName}},
    PowerState, numCPU MemoryMB, Version.
    ID, ProvisionedSpaceGB, UsedSpaceGB, $vmhost.
    @{N = "ToolsVersion"; E={$_. ExtensionData.Config.Tools.ToolsVersion}},
    @{N = "ToolsStatus"; E={$_. ExtensionData.Guest.ToolsStatus}} | `
    Export-Csv - NoTypeInformation - UseCulture-path E:\scripts\$i.csv
    }

    However when I use the cmdlet export-csv file contains an entry for the latest vm. So my question is how I export to CSV so that each virtual machine is on its own line in the file even with no headers?

    Hello, sas23-

    You were pretty close.  The key was to make the Export-CSV call outside the foreach loop, as:

    $VMs = "vm1", "vm2", "vm3"&{foreach ($i in $VMs) {    Get-VM $i | Select-Object -Property Name,        @{N="DNS Name";E={$_.ExtensionData.Guest.HostName}},        PowerState,numCPU,MemoryMB,Version,        Id,ProvisionedSpaceGB,UsedSpaceGB,VMHost,        @{N="ToolsVersion";E={$_.ExtensionData.Config.Tools.ToolsVersion}},        @{N="ToolsStatus";E={$_.ExtensionData.Guest.ToolsStatus}}}} | Export-Csv -NoTypeInformation -UseCulture -Path E:\scripts\VMsInfo.csv
    

    or, to cut a few lines, you can move the names of virtual machine directly to Get-VM, since the names are not used elsewhere in the script.  Which would look like:

    (Get-VM "vm1", "vm2", "vm3" | Select-Object -Property Name,    @{N="DNS Name";E={$_.ExtensionData.Guest.HostName}},    PowerState,numCPU,MemoryMB,Version,    Id,ProvisionedSpaceGB,UsedSpaceGB,VMHost,    @{N="ToolsVersion";E={$_.ExtensionData.Config.Tools.ToolsVersion}},    @{N="ToolsStatus";E={$_.ExtensionData.Guest.ToolsStatus}}) | Export-Csv -NoTypeInformation -UseCulture -Path E:\scripts\VMsInfo.csv
    

    Both ways should translate into a single CSV file with a line of header information and three 3 lines of info from the VM.  You don't say: "no header", but I took this to mean that you didn't want a header for each VM to info line, no is not that you didn't no whether header.

    Enjoy

  • Export the properties of the virtual computer in a CSV file

    Hi all

    I found a powercli script in the community forum and modified it a bit.  What I want to do is, I want to get the VM by CLUSTER properties and export the properties selected to CSV file then send it. When I run the script I see three different properties on the screen (Write-Host $Report) but when I look at the csv file I only see a VM entry rather then three.  Here's what I have so far;

    1. # Name of the VMware VirtualCenter Server

    ####################################

    $vcserver = "localhost".

    ##################

    1. Add VI-box #.

    ##################

    Add-PSsnapin VMware.VimAutomation.Core

    Initialize - VIToolkitEnvironment.ps1

    to connect-VIServer $vcserver

    ##################

    1. Send variables #.

    ##################

    $enablemail = 'no '.

    $smtpServer = "mymailserver.com".

    $mailfrom = "test VMware status & lt; . [email protected] & gt; »

    $mailto = " " [email protected] "" "

    #############

    1. Variables #.

    #############

    $filelocation="D:\temp\healthcheck.csv".

    $date = get-date

    #############################

    1. Get - VM Information. #

    #############################

    Get - VM | `

    {ForEach-Object

    $VM = $_

    $VMview = $VM | Get-View

    $VMResourceConfiguration = $VM | Get-VMResourceConfiguration

    $VMHardDisks = $VM | Get-hard drive

    $HardDisksSizesGB = @)

    $Temp = $VMHardDisks | ForEach-Object {$HardDisksSizesGB += : tour ($_.)} (CapacityKB/1Mo)}

    $VmdkSizeGB = «»

    $Temp = $HardDisksSizesGB | ForEach-Object {$VmdkSizeGB = "$_" "'}

    $VmdkSizeGB = $VmdkSizeGB.TrimEnd("+")

    $TotalHardDisksSizeGB = 0

    $Temp = $HardDisksSizesGB | ForEach-Object {$TotalHardDisksSizeGB += $_}

    $Snapshots = $VM | Get-Snapshot

    $Report = "" | Select-Object VMname,ESXname,ClusterName,MemoryGB,vCPUcount,vNICcount,IPaddresses,VmdkSizeGB,TotalVmdkSizeGB,DatastoreName,ToolsVersion,ToolsUpdate,NumCpuShares,CpuLimitMHZ,CpuReservationMHZ,NumMemShares,ReservationsMB,LimitMB,SnapshotCount,GuestOS

    $Report.VMName = $VM.name

    $Report.ESXname = $VM. Host

    $Report.ClusterName = ($VM |) Get - Cluster). Name

    $Report.MemoryGB = $VM. MemoryMB/1024

    $Report.vCPUcount = $VM. NumCpu

    $Report.vNICcount = $VM. Guest.Nics.Count

    $Report.IPaddresses = $VM. Guest.IPAddress

    $Report.VmdkSizeGB = $VmdkSizeGB

    $Report.TotalVmdkSizeGB = $TotalHardDisksSizeGB

    $Report.DatastoreName = $VMview.Config.DatastoreUrl

    $Report.ToolsVersion = $VMview.Config.Tools.ToolsVersion

    $Report.ToolsUpdate = $VMview.Guest.ToolsStatus

    $Report.NumCpuShares = $VMResourceConfiguration.NumCPUShares

    $Report.CpuLimitMHZ = $VMResourceConfiguration.CpuLimitMhz

    $Report.CpuReservationMHZ = $VMResourceConfiguration.CpuReservationMhz

    $Report.NumMemShares = $VMResourceConfiguration.NumMemShares

    $Report.ReservationsMB = $VMResourceConfiguration.MemReservationMB

    $Report.LimitMB = $VMResourceConfiguration.MemLimitMB

    $Report.SnapshotCount = (@($VM |) Get - Snapshot)). County

    $Report.GuestOS = $VM. Guest.OSFullName

    Write-Host $Report

    $Report | where-object {$_.} NOMCLUSTER - eq "Test_Cluster"} | Select-Object - property NOMCLUSTER, ESXName, VCPUCount, Memorygb, Vmname | Tri - ESXName of property | Export-csv "$filelocation" - NoTypeInformation

    }

    If ($enablemail - corresponds to 'Yes')

    {

    $msg = new-object Net.Mail.MailMessage

    $att = new-object Net.Mail.Attachment ($filelocation)

    $smtp = new-object Net.Mail.SmtpClient ($smtpServer)

    $msg. From = $mailfrom

    $msg. To.Add ($mailto)

    $msg. Object = "check the status of VMware.

    $msg. Body = "check the status of VMware.

    $msg. Attachments.Add ($att)

    $smtp. Send ($MSG)

    }

    Any help much appreciated.

    Change this section:

    Get-VM | `
    ForEach-Object {
    $VM = $_
    $VMview = $VM | Get-View
    $VMResourceConfiguration = $VM | Get-VMResourceConfiguration
    $VMHardDisks = $VM | Get-HardDisk
    $HardDisksSizesGB = @()
    $Temp = $VMHardDisks | ForEach-Object { $HardDisksSizesGB += Math::Round($_.CapacityKB/1MB) }
    $VmdkSizeGB = ""
    $Temp = $HardDisksSizesGB | ForEach-Object { $VmdkSizeGB = "$_" }
    $VmdkSizeGB = $VmdkSizeGB.TrimEnd("+")
    $TotalHardDisksSizeGB = 0
    $Temp = $HardDisksSizesGB | ForEach-Object { $TotalHardDisksSizeGB += $_ }
    $Snapshots = $VM | Get-Snapshot
    $Report = "" | Select-Object VMname,ESXname,ClusterName,MemoryGB,vCPUcount,vNICcount,IPaddresses,VmdkSizeGB,TotalVmdkSizeGB,DatastoreName,ToolsVersion,ToolsUpdate,NumCpuShares,CpuLimitMHZ,CpuReservationMHZ,NumMemShares,ReservationsMB,LimitMB,SnapshotCount,GuestOS
    $Report.VMName = $VM.name
    $Report.ESXname = $VM.Host
    $Report.ClusterName = ($VM | Get-Cluster).Name
    $Report.MemoryGB = $VM.MemoryMB/1024
    $Report.vCPUcount = $VM.NumCpu
    $Report.vNICcount = $VM.Guest.Nics.Count
    $Report.IPaddresses = $VM.Guest.IPAddress
    $Report.VmdkSizeGB = $VmdkSizeGB
    $Report.TotalVmdkSizeGB = $TotalHardDisksSizeGB
    $Report.DatastoreName = $VMview.Config.DatastoreUrl
    $Report.ToolsVersion = $VMview.Config.Tools.ToolsVersion
    $Report.ToolsUpdate = $VMview.Guest.ToolsStatus
    $Report.NumCpuShares = $VMResourceConfiguration.NumCPUShares
    $Report.CpuLimitMHZ = $VMResourceConfiguration.CpuLimitMhz
    $Report.CpuReservationMHZ = $VMResourceConfiguration.CpuReservationMhz
    $Report.NumMemShares = $VMResourceConfiguration.NumMemShares
    $Report.ReservationsMB = $VMResourceConfiguration.MemReservationMB
    $Report.LimitMB = $VMResourceConfiguration.MemLimitMB
    $Report.SnapshotCount = (@($VM | Get-Snapshot)).Count
    $Report.GuestOS = $VM.Guest.OSFullName
    Write-Host $Report
    $Report | where-object {$_.ClusterName -eq "Test_Cluster"} | Select-Object -Property ClusterName,ESXName,Vmname,Memorygb,VCPUCount | sort -Property ESXName | Export-csv "$filelocation" -NoTypeInformation
    }
    

    To do this:

    $NewObject = @()
    Get-VM | `
    ForEach-Object {
    $VM = $_
    $VMview = $VM | Get-View
    $VMResourceConfiguration = $VM | Get-VMResourceConfiguration
    $VMHardDisks = $VM | Get-HardDisk
    $HardDisksSizesGB = @()
    $Temp = $VMHardDisks | ForEach-Object { $HardDisksSizesGB += Math::Round($_.CapacityKB/1MB) }
    $VmdkSizeGB = ""
    $Temp = $HardDisksSizesGB | ForEach-Object { $VmdkSizeGB = "$_" }
    $VmdkSizeGB = $VmdkSizeGB.TrimEnd("+")
    $TotalHardDisksSizeGB = 0
    $Temp = $HardDisksSizesGB | ForEach-Object { $TotalHardDisksSizeGB += $_ }
    $Snapshots = $VM | Get-Snapshot
    $Report = "" | Select-Object VMname,ESXname,ClusterName,MemoryGB,vCPUcount,vNICcount,IPaddresses,VmdkSizeGB,TotalVmdkSizeGB,DatastoreName,ToolsVersion,ToolsUpdate,NumCpuShares,CpuLimitMHZ,CpuReservationMHZ,NumMemShares,ReservationsMB,LimitMB,SnapshotCount,GuestOS
    $Report.VMName = $VM.name
    $Report.ESXname = $VM.Host
    $Report.ClusterName = ($VM | Get-Cluster).Name
    $Report.MemoryGB = $VM.MemoryMB/1024
    $Report.vCPUcount = $VM.NumCpu
    $Report.vNICcount = $VM.Guest.Nics.Count
    $Report.IPaddresses = $VM.Guest.IPAddress
    $Report.VmdkSizeGB = $VmdkSizeGB
    $Report.TotalVmdkSizeGB = $TotalHardDisksSizeGB
    $Report.DatastoreName = $VMview.Config.DatastoreUrl
    $Report.ToolsVersion = $VMview.Config.Tools.ToolsVersion
    $Report.ToolsUpdate = $VMview.Guest.ToolsStatus
    $Report.NumCpuShares = $VMResourceConfiguration.NumCPUShares
    $Report.CpuLimitMHZ = $VMResourceConfiguration.CpuLimitMhz
    $Report.CpuReservationMHZ = $VMResourceConfiguration.CpuReservationMhz
    $Report.NumMemShares = $VMResourceConfiguration.NumMemShares
    $Report.ReservationsMB = $VMResourceConfiguration.MemReservationMB
    $Report.LimitMB = $VMResourceConfiguration.MemLimitMB
    $Report.SnapshotCount = (@($VM | Get-Snapshot)).Count
    $Report.GuestOS = $VM.Guest.OSFullName
    $NewObject += $Report
    }
    $NewObject | where-object {$_.ClusterName -eq "Test_Cluster"} | Select-Object -Property ClusterName,ESXName,Vmname,Memorygb,VCPUCount | sort -Property ESXName | Export-csv "$filelocation" -NoTypeInformation
    

    Chris Nakagaki (Zsoldier)

    http://tech.zsoldier.com

    Post edited by: Zsoldier

  • Why does my bank statement appear garbled when I use the PDF export to Excel feature?  The properties of the document says ok to convert Adobe.

    I used a free trial version of Wondershare and the downloaded PDF beautifully.  A response to a question from Google suggested the rotation of the OCR, but is no longer an option?

    I am a subscriber of DC of Acrobat.  I used the PDF export to Excel export feature.  I did it by opening the PDF and choose the export option.  It is a PDF generated Bank from a client.  The text is composed of symbols for most.  It is a statement of Bank of America for a checking account.  The statements of his savings bank of America converted very well.  However, there was a different look between 2 PDF files.  Thanks for your help in advance!

  • I used the function export bookmarks as HTML, but did not file.

    I'm saving my favorites from Mozilla, so I can upgrade to Windows 7. I used the BOOKMARKS EXPORT TO HTML feature and saved to a known directory but not able to find the HTML file. I am currently using Windows XP.

    You, record in which you did save this file?

    Did you care to add the file the.html extension?

    Note that Windows hides certain default file extensions.

    Among them include .html, .ini and .js, .txt, so you can see the name of bookmarks without file extension.

    You can see the type of actual file (file extension) in the properties of the file via the context menu in Windows Explorer.

    If the file is not in the registered location then your anti-virus software may delete the file.

  • Animate CC/Createjs properties of the clips/instances/bitmaps are null

    Hey!

    I was wondering how I can set/get properties (including the name property) of my items, on my scene. Whenever I get a null value on my properties. I have a passage of the mouse and you want to get the name of via stage.getObjectsUnderPoint(stage.mouseX,stage.mouseY).  And here, I get a null / undefined / whatever...

    I already tried exportRoot.myMovieClip.name, event.target.name or stage.getChildByName... Now I'm out of ideas, why I still can't set/get properties.

    To clarify:

    I have a Movieclip(called: mc_myMovieClip) and the instance is named ins_myInstance, already placed on the stage. Inside the MovieClip, I have a Bitmap with the instance of ins_myInstance. Although I put all the names in animate CC, after having exported them its not directly accessible. The images are exported in their own folder. No Spritesheet. When I try with stage.getObjectsUnderPoint(stage.mouseX,stage.mouseY) my console says:

    Bildschirmfoto 2016-02-23 um 12.06.17.png

    My final goal is to have 2 objects, where I check whether or not the names match. If it is not possible in this way, I have to do with hitareas... Something like that: Connections Drag - JSFiddle

    There is another topic of 2013 Toolkit for CreateJS after that export instance names are not available in .name property of objects , but it was not a solution for me, or I do not see this right now

    I hope it's a bit understandable. Thanks for asking! I hope that there is a way, or maybe it's a limitation of createjs?

    Thank you for the advice

    What? It is true that intellectual .name for movieclips by default to null, but has no bearing on the possibility of the objects named address. If you have a clip on the stage that you named "bob" and then something like (this.bob.x); console.log works very well.

    If for any reason, you need to extract an object is called when executing, then first name all your objects: this.bob.name = "bob"; works perfectly well. Change the JavaScript code that is published is a terrible solution, because then you must manually update each time something changes.

    Now, if you don't know advance which objects should be named, it is possible to do it automatically, thanks to the way in which CreateJS implements its data structures:

    First, each element (including the level of the root timeline) has a raw list of members/properties you can browse with a for... loop. This gets you the key names, but it gets you everything in the video. Dozens of irrelevant properties. Even if filter you by type - movieclips are represented internally in the form of a container of CreateJS object instances - not every container object is guaranteed to be a real child of the clip.

    Second, there is a range of children for each movieclip that stores a list of the children of all the clips, but it stores all by reference. No names.

    So, for complete names for children of all of the clip, we scanned raw properties from the clamp, then for each one found is a container object, analyze the table of children to see if it is also in this list. If this is the case, assign the value of the key as the name of the element. As follows:

    var i, key;
    var clip = this; // movieclip content to be processed
    var clipch = clip.children; // movieclip's children
    // iterate over every property name in the clip
    for (key in clip) {
        // is this a CreateJS container object?
        if (clip[key] instanceof createjs.Container) {
            // scan the clip's list of children
            for (i = 0; i < clipch.length; i++) {
                // are they both pointing to the same object?
                if (clip[key] === clipch[i]) {
                    // assign key value to "name" property
                    clip[key].name = key;
                    break;
                }
            }
        }
    }
    

    Voila.

  • How to check the properties of the VM folder in ESXi5

    Hi guys

    I'm unable to check the properties of the VM ESXi5 files via vSphere Client. There is in fact no option properties. so, how I check it. y at - there any third-party tool?

    Thank you

    The virtual machine you are exporting here has an ISO connected to the virtual CD/DVD drive.

  • I exported the photos in a folder that is named in the order. Now I want to export more photos in the same folder, but take the sequential numbers where the last export was stopped. Finally was Apr_409, in following should be Apr_410. Not Apr_1 (1). Any a

    I exported the photos in a folder with the photos sequentially named. Now I want to export more photos in the same folder, but take the sequential numbers where the last export was stopped. So if the last photo was named Apr_409, I want the following to be Apr_410. Not Apr_1 (1). Any advice? Thank you!

    Hat is not a feature of Photos.

    If you want to make sure your new export is sorted after previous export, change the field "sequential prefix" in the Panel of the export to a string, which will be sorted after the original prefix you have chosen.

  • How can I change the sequence exported to iMovie?

    When I finished making the video and it has exported, some errors found only. How can I change the sequence exported in the application iMovie editing new, mainly texts?

    Just open the project that you exported from iMovie, make the changes necessary, then export again.  (Sod / Murphy's law always ensures that errors found only after export)

    Geoff.

  • Properties of the file means nothing?

    I'm learning to iTunes.  I got rid of my iPod years and promised to never go back.

    Yet, I find myself in the situation where I need to learn it again.

    Just try to understand a few issues here.

    (1) if I look at the properties of my file (Windows), I can see album, genre (?), etc.  I can also change this information.  I need so that I can create playlists based on some information.   If I change this information in the properties of the file Windows, iTunes is updating new information?

    (2) when iTunes imports all the music on my computer, it copies it to a new location?  For example, if I download an album to my office, all the files are in a folder Album1.  Can I synchronize files in iTunes (or drag and drop into iTunes) can I go back to delete the original folder of Album1 off my desktop computer?

    Thank you

    AC5FF

    1. N ° iTunes will automatically detect changes to external metadata. These will be picked up if iTunes because of reading the label, for example during playback. If you use iTunes, using iTunes. I have a script called UpdateTagInfo if you really want to change externally and then force iTunes to notice.
    2. It depends on where the files (inside or outside the designated media folder) and your choice for the advanced preference, copy the files in the folder when adding to library media. My recommendation is to leave this option. A free iTunes content library is much easier to backup and you move.

    TT2

  • Satellite L305 Vista - shortcut to the properties of the modem?

    To open the properties of the software Modem Toshiba you would normally click on:

    Device Manager-> Modem-> Modem Toshiba Software right click-> properties.

    Anyone happen to know if it is possible to create a shortcut directly in Vista?
    I looked for a .msc file that might do it, but could not find one.

    Thank you.

    Hello

    I think that it of not possible to shortcut directly to the modem properties, but you can make a shortcut to Device Manager.

    Right click on desktop-> New-> shortcut (from file)-> use this devmgmt.msc-> devices Manager shortcut name file

    Now you should have an icon and a shortcut on the desktop called the Device Manager.

    For more information, see Wikipedia:
    http://en.Wikipedia.org/wiki/Device_Manager

  • My photos app does not sound with the video export

    Then. Im trying to drag my videos, Photos and on my desk. For some reason any after you copy its reading of the video, but I don't get all the sounds?

    If I play the video in Photos, sound works fine... Any ideas?

    Do not hang out, but use the ➙ unmodified export Original for 1 video file menu option.  See if that you will get a playable file.

  • The photos exported photos are 4 KB on PC and cannot be opened.

    When I export photos from the Photos on a flash drive that is via the file-> export or by simple drag-and - drop, I am unable to open JPEG files on any other non Mac device. All the photos are great only 4 KB and there is no preview.

    Someone knows how to fix this?

    MacBook Pro (mid-2014), OS X Yosemite 10.10.3 and Photos 1.0.

    Thank you very much and Merry Christmas to you all,.

    Lorenz

    Select the photos you want in Photos and export (File menu ==> export) in a folder on the desktop - drag the folder from the desktop to the flash drive and you will have photos of size you choose - if you still have problems to open on the PC you need software to strip the link resources

    LN

Maybe you are looking for

  • Used eM e-mail Client about impossible to get TB Wizard to import tuberculosis.

    Installing the addon "Import-export" and tried to open the files of e-mail Client eM exported to the desktop. No go. They may be in the wrong format, as the "addon" does not recognize them.Also exported 'settings' and 'Contacts' on the desktop.

  • Go new Time Machine backup drive

    I have searched the forums and have not been able to find the answer to this yet. It is my Time Machine backup on an external hard drive. I want to move it to a new drive and get rid of the old drive. But I can't find any information that explains ho

  • Recurring blue screen with the title of 'Memory_Error' or 'IRQL_less_than_or_equal '.

    This problem usually occurs when running an application such as Warcraft III: The Frozen Throne.  The error report details are below. Log name: ApplicationSource: Application errorDate: 2010-01-05 19:29:34Event ID: 1000Task category: (100)Level: erro

  • MAX problems: Connection and conversion

    We live another problem with NI MAX.  We have Lookout 5.1 and 6.2 on a stand alone and a Virtual Machine, both with the same problem. When you attach a database, we select the 4 Citadel, the wizard opens.   By clicking Browse results in closing the w

  • Why the movies I burn more freeze towards the end?

    I tried what is called free software burning like nero and imageburn, etc, etc. Add infinitum, you can't really do much unless you buy all while most of these lie just to get on a search page, so I bought a software called copy 123 & share and lets i