Event case: number of runs of a single event ?

Hi everybody,
I'm working on a CCD acquire system, and I developed the control software using an event structure.
Every event controls a setting function for my system, and placed in timeout event fucnctions to get the status of my detector.
Data acquisition is one of the control events. Now I need perform multiple acquisition and save acquired datas to a spreadsheet file, wich must be called with the number of the iteration.
For example for 10 acquisition, the acquisition event will run 10 times, and save 10 files named: 1.csv, 2.csv ...
How can be built a counter wich gives the number of iterations of a single event (in example the number of runs of the "acquire data" event) ?
Thanks in advance
Eugenio
LabVIEW 2011
Solved!
Go to Solution.

Thanks, value signaling vas the right choice. I've wired the increment function to a shift register function of the while loop wich contains the event structure.
Placed an indicator inside and works fine. 

Similar Messages

  • Suggested Feature: Add event case number data node

    The Source data node in an event structure is too vague to be of much practical use.  (Values are LabVIEW UI, ActiveX, User Event, and <Other>...)  A data node containing the event case number would be very useful to the developer wishing to merge the event case number into error messages.  I hope this feature can be incorporated into a future version of LabVIEW.
    Thanks!
    Larry Stanos

    You can make product suggestions at http://digital.ni.com/applications/psc.nsf/default?OpenForm&temp1=&node=
    I'm not sure an Event Case number even exists and I think the name of the event and the event type would provide more usefule information. That can easily be done with something like the attachment.
    Message Edited by Dennis Knutson on 04-07-2006 08:24 AM
    Attachments:
    name and event type.JPG ‏18 KB

  • Photoshop CC 2014 Extension - CEP Event callback is triggered multiple times per single event

    Trying to make my extensions listen for bunch of events and it's turning out to be a real pain in the ***.
    I'm hoping there's someone here who has a bit more experience playing around with these.
    I used the example code from here ( Page 43 ): http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/creativesuite/pdfs/CC14_Extension_S DK.pdf
    I've modified the code just a little. I removed some unnecessary things from it. I also added a counter, to try to visualize the issue.
    Every time I pasted the code here, the global variable seemed to duplicate. So, eeeeh...  the example code can be found here.
    The problem is:
    I close one document to trigger the event, but for some reason the callback seems to run multiple times.
    Even better, it doesn't seem to be super consistent about it. Sometimes it repeats only couple of times and sometimes it repeats 160 times.
    It seems like every time the extension panel is reopened, it comes up with a new number.
    Currently, if I close a document, it seems to trigger the callback 15 times
    Since this is screenshot, you'll have to take my word for it. I only closed a single document and the code ran 15 times.
    Am I doing something wrong by any chance?
    edit:
    I believe I just found out the reason and a way to recreate the issue.
    I've occasionally tested the extension by closing and opening the panel, which seems to have caused the issue.
    It looks like every time I close and then open the panel, it... adds one more run time to the stack.
    - Refreshing the panel from chrome doesn't seem to affect it.
    When I restart photoshop, it resets. So after the very first opening of the panel, the event triggers the callback only once.
    I forgot to mention that the host application events work just fine without these issues.
    In fact, I tried to use documentAfterActivate before, but as far as I could find, there is no way to kind of filter out specific events within host application events.
    For instance, I can't specify something different to happen when a new document is opened.
    As very much a side note:
    documentAfterActivate has its own side effect due to the way photoshop works.
    It is triggered when you:
    Create a new document
    Open a new document
    Switch to an open document
    It's the "Switch to an open document" part that makes this event listener also trigger when you close a document.
    Because when you close a document, photoshop switches back to the previous document and that in turn triggers the event listener when it shouldn't, I suppose.
    Of course it doesn't trigger the event when you close the last document as there is no document to switch to at that point.
    ...but this is beyond the scope of the original question.

    I was so tired last night that when I found out the cause of it, I never even thought about unregistering...
    I decided to unregister it when the panel is opened instead.
    This does indeed get rid of the issue.
    Thanks, cbuliarca.
    (function () {
      var csInterface = new CSInterface();
      function init() {
           themeManager.init();
           function registerPhotoshopEvent(in_eventId, register) {
                // Added the next line
                var register = register === "clear" ? "UnRegisterEvent" : "RegisterEvent";
                // Modified the next line
                var event = new CSEvent("com.adobe.Photoshop" + register, "APPLICATION");
                event.extensionId = csInterface.getExtensionID();
                event.appId = csInterface.getApplicationID();
                event.data = in_eventId
                csInterface.dispatchEvent(event);
           var number = 0;
           csInterface.addEventListener("PhotoshopCallback" , function(event) {
                number = number + 1;
                console.log( number );
           var closeEventid = "1131180832"
           // Added the next line
           registerPhotoshopEvent(closeEventid, "clear");
           registerPhotoshopEvent(closeEventid);
      init();

  • Training and Event management - IF I run PEPM and book event nothing happens

    Hello..
    My query is regarding booking of event/course from PEPM.
    I Have done profile match up and get Training proposals icon
    When I click on icon and proceed for booking , booking screen appears however at bottom "The search has not produced any hits" message is displayed (Note : Still I can see course offering are available). If I try to book by selecting course nothing happens.
    I m not sure if this is useful but when i checked the Program to which it is referenng to its SAPLLSO_RHPV, so i was confused whether PEPM only for LSO not for TEM ?
    Please let me know if i m going in wrong way. Below screen shot for reference.

    Yes, Tried for Future date as well but no result, same error

  • How to use only one event case at a time??

    Using LabVIEW, using the event structure is it possible to have only one event case execute at a time. For example, having event case controlled by keyboard, and the other event case controlled by mouse (clicking buttons) and only one being able to execute, not simultaneously. I was considering using a switch of some sort, but each case does not have a "stop if true/false" so I am open to a new method or work around. I attached code. I do not want output to be able to be sent from the keyboard case and mouse case at the same time.
    Thanks,
    Andrew
    Attachments:
    WiFi Motor Control & Cam Stripped.vi ‏29 KB

    Ah, OK. all you need is to keep state in a shift register that ensures that all "key down/mouse down" events are discarded after each key down/mounse down event until a key up or mouse up (resp.) has occured.
    Overall, you code is still way to complicated for this simple task. For example, you could eliminate all these "select" primitives and place the approriate diagram constant inside the respective case. On the other hand it is too simplistic, because you would think that certain key combinations should be allowed concurrently (e.g. up and left).
    What does the receiver actually do with the codes? Do you have any documentation for this device?
    LabVIEW Champion . Do more with less code and in less time .

  • Multiple event cases ?

    I hear people saying do not use multiple event cases.
    is this in reference to multiple event cases in the same loop?
    is it ok to use 1 event structure per parallel loop?
    what happens if you have two parallel loops reacting to the same event?
    - James
    Using LV 2012 on Windows 7 64 bit

    James R wrote:
    I hear people saying do not use multiple event cases.
    Who are these people??! There is nothing wrong with an event structure containing multiple event cases.
    James R wrote:
    is this in reference to multiple event cases in the same loop?
    Yes, you should only have one event structure per loop, but that event structure can have multiple cases.
    James R wrote:
    is it ok to use 1 event structure per parallel loop?
    Yes. What makes you think otherwise?
    James R wrote:
    what happens if you have two parallel loops reacting to the same event?
    Nothing unusual. They will both fire whenever that associated event occurs. No problem!
    LabVIEW Champion . Do more with less code and in less time .

  • How can I reduce the number of event cases in the main VI?

    I would like to reduce the number of event case of the event structure in my main VI. E.g. I would like to have pop up window with a table when the user double click a table row. Nothing more simple than this: add a case to the event structure trigger by double clicking the table, read the table row ... But in my main VI I would have lots of them and the event structure gets crowded with minor tasks. One solution is using XControls. But is there any other recomended way to handle selected events separatly from the event structure in the main VI?
    to clarify: I don't want to distribute the whole event structure. (In this case the code would not be maintainable) But I would like to handle certain context specific events in a differnt place. If I have them all in the main VI the drop down list of the events in the event structure exceeds the windows size and the program becomes difficult to maintain because one looses the overview.

    "Strictly forbidden" is not true. But highly not recommended. The reason is simple:
    1. Code can react unpredictable. Dennis already stated some things about that in your linked thread. 
    2. Code is not readable and therefore not maintainable. Each event source should have only one event structure for its events. Since the UI is a single source, events from there should be captured in a single event structure. It is recommended to use this event structure as producer in a producer/consumer design pattern in order not to block the events.
    3. You will most propably need timeouts in your event structure which completly negates the advantage of event driven programming. Either use event driven programming or stay at polling. Do not mix (most of all because of maintenance).
    Regarding your "advantages" you listed:
    - Clustering  reduces readability in therefore should never be done. Additionally, it requires timeout cases in most places which is not recommended.
    - If you have such many events and interactions in your "sequence", it is a clear indication that you chose the wrong architecture for your application.
    Please see attached example. Since i am not used to program with more than one event structure (except if i have different dedicated event sources), the example is "constructed" and therefore may lack of "realism". Nevertheless, it shows some issues which might occur:
    - Blocking calls within the events lead to the fact that the UI is not responsive for the event time (FuncA). Nevertheless, interaction is still enqueued and if the blocking call is over, all those interaction are executed. In the example, please press FuncA and then press FuncC immediatly. You will see that nothing happens and after the 5s blocking call, the FuncC dialog appears. You also can switch tabs, but the visual display will update only after the 5s blocking call.
    - In order to keep the UI responsive, FuncB is configured not to block the UI. But this is no solution: Press FuncB (on page 2) and the change to page 1 and press FuncA. Additionally, press FuncC. What happens? Just to mess things up, press Stop as well......do this combination several times. It is possible that only the lower loop is finished and the VI is still running even if Stop has been pressed.
    Please note everyone that the attached example shoudl strictly be seen as "NEVER DO IT LIKE THIS". This is a negative example and shows the approach which is not recommended by any means!
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.
    Attachments:
    Never EVER86.vi ‏10 KB

  • I need help PLEASE!!  I need to transfer a license for Adobe CS6 Master Collection and I know what to do BUT how do I get a case number?  I cannot get a SINGLE HUMAN BEING on the phone and when I somehow got to my account, it said the case number I had wa

    Please someone on this Earth tell me how to obtain a CASE NUMBER so I can transfer a license...
    For the LOVE of God, please someone, anyone tell me

    Thank you for your help are you aware of any apps that will work the iso 4.2.1 system that will let you watch movies on the phone. Also I tried to down load something else the other day and got message that Safari wont let you open this is ther any to see if i have the latest safari on my phone?

  • Limiting Number of connections from a single user

    Hi ,
    I am using 9.2.0.6 DB, i need to restrict the number of connections from a single user to 100.
    Currently the user is having DEFAULT profile, this profile is having several other users associated to it.
    What are all the available options to create restriction for a single user.
    Create a new profile and add the user to the New profile is the option i have.
    In that case can i create a copy of the Default profile and changing the SESSIONS_PER_USER to 100? will it work.
    Appreciate your suggestion.
    Thanks,
    Sathis
    Edited by: user7043544 on Feb 22, 2010 9:46 PM

    Hi,
    Since it is a default profile you can just create a new profile with the resource type you are interested it.
    And if you want to copy the existing profile extract its ddl through below command, change the profile name and required resource and run against the db.
    select dbms_metadata.get_ddl('PROFILE','<Profile_name>') from dual;Regards
    Anurag

  • Search for records in the event viewer after the last run (not the entire event log), remove duplicate - Output Logon type for a specific OU users

    Hi,
    The following code works perfectly for me and give me a list of users for a specific OU and their respective logon types :-
    $logFile = 'c:\test\test.txt'
    $_myOU = "OU=ABC,dc=contosso,DC=com"
    # LogonType as per technet
    $_logontype = @{
        2 = "Interactive" 
        3 = "Network"
        4 = "Batch"
        5 = "Service"
        7 = "Unlock"
        8 = "NetworkCleartext"
        9 = "NewCredentials"
        10 = "RemoteInteractive"
        11 = "CachedInteractive"
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0""
    or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>" -ComputerName
    "XYZ" | ForEach-Object {
        #TargetUserSid
        $_cur_OU = ([ADSI]"LDAP://<SID=$(($_.Properties[4]).Value.Value)>").distinguishedName
        If ( $_cur_OU -like "*$_myOU" ) {
            $_cur_OU
            #LogonType
            $_logontype[ [int] $_.Properties[8].Value ]
    #Time-created
    $_.TimeCreated
        $_.Properties[18].Value
    } >> $logFile
    I am able to pipe the results to a file however, I would like to convert it to CSV/HTML When i try "convertto-HTML"
    function it converts certain values . Also,
    a) I would like to remove duplicate entries when the script runs only for that execution. 
    b) When the script is run, we may be able to search for records after the last run and not search in the same
    records that we have looked into before.
    PLEASE HELP ! 

    If you just want to look for the new events since the last run, I suggest to record the EventRecordID of the last event you parsed and use it as a reference in your filter. For example:
    <QueryList>
      <Query Id="0" Path="Security">
        <Select Path="Security">*[System[(EventID=4624 and
    EventRecordID>46452302)]]</Select>
        <Suppress Path="Security">*[EventData[Data[@Name="SubjectLogonId"]="0x0" or Data[@Name="TargetDomainName"]="NT AUTHORITY" or Data[@Name="TargetDomainName"]="Window Manager"]]</Suppress>
      </Query>
    </QueryList>
    That's this logic that the Server Manager of Windows Serve 2012 is using to save time, CPU and bandwidth. The problem is how to get that number and provide it to your next run. You can store in a file and read it at the beginning. If not found, you
    can go through the all event list.
    Let's say you store it in a simple text file, ref.txt
    1234
    At the beginning just read it.
    Try {
    $_intMyRef = [int] (Get-Content .\ref.txt)
    Catch {
    Write-Host "The reference EventRecordID cannot be found." -ForegroundColor Red
    $_intMyRef = 0
    This is very lazy check. You can do a proper parsing etc... That's a quick dirty way. If I can read
    it and parse it as an integer, I use it. Else, I just set it to 0 meaning I'll collect all info.
    Then include it in your filter. You Get-WinEvent becomes:
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624 and EventRecordID&gt;$_intMyRef)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0"" or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>"
    At the end of your script, store the last value you got into your ref.txt file. So you can for example get that info in the loop. Like:
    $Result += $LogonRecord
    $_intLastId = $Event.RecordId
    And at the end:
    Write-Output $_intLastId | Out-File .\ref.txt
    Then next time you run it, it is just scanning the delta. Note that I prefer this versus the date filter in case of the machine wasn't active for long or in case of time sync issue which can sometimes mess up with the date based filters.
    If you want to go for a date filtering, do it at the Get-WinEvent level, not in the Where-Object. If the query is local, it doesn't change much. But in remote system, it does the filter on the remote side therefore you're saving time and resources on your
    side. So for example for the last 30 days, and if you want to use the XMLFilter parameter, you can use:
    <QueryList>
    <Query Id="0" Path="Security">
    <Select Path="Security">*[System[TimeCreated[timediff(@SystemTime) &lt;= 2592000000]]]</Select>
    </Query>
    </QueryList>
    Then you can combine it, etc...
    PS, I used the confusing underscores because I like it ;)
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • How to cause them to associate my Case Number 185689167 with the real phone number I need to be called at:

    I purchased a one year subscription to Acrobat Pro, and after installation on my MacBook, in the LaunchPad (aside from the normal Adobe Acrobat Pro, Acrobat Distiller, and Forms Central for Acrobat) a folder containing two icons.  The first was (I forgot the name) and the second entitled AAMLauncherUtil.  Shortly after installation I ran the AAMLauncher Util, and it downloaded and "updated" Acrobat Pro and installed Creative Cloud.  I was told by some person in Tech Support that I didn't need these two additional icons in LaunchPad, and I could just drag them to the trash.
    The folder would not go in the Trash, so I dragged them out of the folder and then the one whose name I don't remember was able to go to the Trash, but not the AAMLauncherUtil icon.
    I called Tech Support again, and got a technician whose name I will withhold, but although he tried to solve the problem, basically he was clueless and I could hear him asking other people in the background what to do and they were giving him suggestions, mucking around my library and deleting anything that sounded like it was associated with AAMLaucher, and in the end all he succeeded in doing was making my Creative Cloud not work anymore and produce messages that it was corrupted and had to be removed and reinstalled.  Finally he gave up and said that he was referring my Case 185689167 to the next level higher of tech support, who would call me within 24 hours.  Of course they never did that so I called Apple Support and a representative there went way beyond what he needed to do and we were able to uninstall and reinstall Creative Cloud and make it work again, although the AAMLaucherUtil icon remains there.  Currently, it doesn't update anything like it did the first time I ran it, or act like it is trying to update anything, but it does open Creative Cloud if you have closed it. 
    Several days later (not the promised 24 hours) I got an email from my Voicemail Service with a  transcribed message from Adobe Tech Support saying that they had tried to call me... at the number listed in my subscription payment details... NOT at the number I had told them to call me at, and since I am 7000 miles away from my billing number I didn't get the call.  The message requested me to call them back.  I did so, and the message on the VRU said I would have to wait approximately 30 minutes. Two and one half hours later (not 30 minutes) someone answered who was not Second Level Tech Support, and reiterated that it was not possible to transfer me to them, and he would note that I had called back and they would call me within 24 hours.... yeah right.  By then after waiting all that time to speak to someone I was so mad that I forgot to mention the correct number to call me at... although I had mentioned it previously.  Several days later (not 24 hours) they called the wrong number again, and when I didn't answer it then sent me an email that they were considering the case solved and closing it, and I could reopen it within 14 days. 
    I then called back and this time waiting 3 hours on hold, and the person who I spoke with (whose name I withhold for now) said he would reopen the case and they would call me within 24 hours... again he couldn't transfer me to them.  Again I forgot to reiterate the correct phone number that I had told them the first time since I was so mad about waiting 3 hours on hold.
    The next day, I realized that I had not reiterated the correct phone number, and I went into my account settings and changed the phone number in both places it exists, and then tried calling back to make sure they would call the correct phone number.  This time I waited on hold for 4 hours, and finally gave up without ever being able to speak to a person.
    The next day... still no call even to the wrong number since my Voice Mail would have informed me it there was a call.... I called Sales since that seemed to be the only way to talk to a real person, and screamed at them about this issue and was informed they couldn't do anything about Tech Support, or about associating my phone number with my case number, but he would put me in the queue for tech support since nobody was in the queue so they should call me back right away. 
    I did get a call in a few minutes, which said "If Valued Customer is available, press 1" so I pressed 1 and it went to music.  I then waited for 15 minutes of music with no answer, after which I got an email from my Voicemail Service transcribing the message saying:
    "Reschedule this call back for a later time press three to cancel this call back press nine. Your response was not recognized. Please try again. When valued customer is on the line press one to speak to a support specialist. If you need time to get valued customer on the line press two. To reschedule this call back for a later time press three to cancel this call back press nine. Your response was not recognized. Please try again. When valued customer is on the line press one to speak to a support specialist. If you need time to get valued customer on the line press two. To reschedule this call back for a later time press three to cancel this call back press nine."
    ... more. Please listen to your voicemail for the remainder of this message.
    They can't recognize me pressing 1?????  So who know... I was listening to music but did that mean I was really ever going to reach a real person, or was the Voicemail message correct and I would be listening to music forever?
    So this morning I tried calling again only to receive message the the Tech Support Telephone Lines were down for scheduled maintenance until August 10th... I tried chatting... that is offline also.
    Is there a way to associate my actual phone number with my case number... maybe somebody from Adobe actually reads these diatribes?  I need to be called at or after 17:00 Pacific time.... I was told the hours are on Pacific Time.... although  one representative who I was trying to coordinate the timing of the call with was very confused about the time zones. He was trying to tell me that the current time was 09:00 Pacific Time, which I knew to be wrong, and he finally admitted, after I challenged him to look on www.timeanddate.com, that it was  09:00 in Bangalore, and Pacific time was 20:00.

    Thanks for your answer TSN!
    I did try Chat yesterday and it didn't work.... said unavailable.  I'll will try it again. 
    I do understand that this is a Community Forum, but it appears that some Adobe staff persons do read and respond to some messages, so since all other avenues of contact seem to not work, I thought I would try this just in case somebody from Adobe happened to read it and could do something.
    A secondary reason I posted the whole explanation is that I thought maybe somebody else had experienced this issue as well and might comment on it.
    As for it being a problem or not, maybe it is not.  Adobe did work when I installed it.  When I invoked that icon "AAMLauncherUtil" the first time, it updated Acrobat Pro and Installed Creative Cloud (which the original trial subscription had not installed).
    I then noticed that these two icons didn't seem to do anything useful.  The first time I called and was able to connect to support, the rather poor attitude person who answered just said to delete both icons in the folder... that they weren't needed.  When I found that one of them could be deleted and not the other one "AAMLauncherUtil" could not be deleted, and since the tech support person had suggested deleting them both, I called back.
    The next rather clueless person in tech support spent a lot of time trying to help get rid of it, but couldn't.  When he was mucking around in the "Library" he deleted everything named "AAMLauncherUtil" from the Library (but left some stuff I would have imagined could have been deleted like references to my previous trial subscription.
    After he got done, Creative Cloud no longer worked and he couldn't figure out how to fix it... we were getting messages the Creative Cloud was corrupted and needed to be uninstalled.  He said he was going to refer the problem to a  higher level tech support, and that he couldn't transfer me there... they would have to call me which would be in 24 hours.
    The next day (since the higher level tech support failed to call back) I called Apple Support, and they helped me find a Creative Cloud Uninstaller and we ran that and re-downloaded and installed Creative Cloud again.
    I would expect from the name "AAMLauncherUtil" that this icon would Launch Adobe Application Manager and perhaps try to update my product(s) like it did the first time, OR report that my software is up to date... as most other software update attempts would do.  However what it really does now when I invoke the "AAMLauncherUtil" icon is just to open Creative Cloud just as if I had clicked on the icon in the top menu bar of my Apple Menu Bar.  The Apple person suggested that MAYBE it is supposed to do that if you have shut down Creative Cloud for some reason, and want to start it up again without restarting the computer.  Maybe that is so, but if it is, then I would have expected that they would have renamed the icon to Creative Cloud or something more descriptive of what it is supposed to do.
    As is is now, I am not sure if it is a leftover remnant of my original updated installation that should have gone away when I updated and it installed Creative Cloud, or if everyone else running Adobe Acrobat Pro XI has this icon in their Launchpad as well and it is supposed to be there for some unknown reason to perform some unknown function.
    After all that happened, I did update Creative Cloud, but that was within Creative Cloud itself when it reported having an update available, and not using the "AAMLauncherUtil" icon at all, so that would appear to negate it's possible update functionality wouldn't it?
    Assuming you are using a Mac, do you have such an icon in LaunchPad?
    Thanks for your help!

  • How can I use the same event case for different controls dynamically

    OS: Linux 2.6.24-1-686 #1 SMP Sat Apr 19 00:37:55 UTC 2008 i686 GNU/Linux
    LabVIEW: Version 8.2
    I have a lot of (about 50) controls (numeric, boolean) on my front panel. If a "Value Change" event will be fired by any of them the same event case shall be executed. As I do not want to add all 50 controls to the same event case manually I am looking for a way to do it at run time. Additionally the VI is still under contruction, i.e. controls will be added and removed.
    Thanks for any help here.
    Regards,
    Johannes
    Solved!
    Go to Solution.

    Hi Johannes,
    collect all your control references (you can use the FP property for it) and create a user event. Connect this user event to your event structure. Now you have one event case for all your controls. See the attached picture.
    Mike
    Attachments:
    Unbenannt1.PNG ‏11 KB

  • When I get an ICS from Outlook that is a multi-day event it populates my iCal as a single day and since I am not the owner I cannot edit the ICS.

    When I get an ICS from Outlook Express (Office is PC based) that is a multi-day event, it populates my iCal as a single day and since I am not the owner I cannot edit the ICS. I have to delete it and send a "decline notice" to the sender and re-enter it so I can put in multiple day events. Help!

    If you are running Tiger, you don't have time machine. 
    You need to get something like SuperDuper! or Carbon Copy Cloner (sorry, I don't have a handy link for CCC but you can Google it to get their site) to make a clone of your drive on the external and then do incremental backups.  The free versions do a lot and you can upgrade to the full-service versions for small change if you need more.  The one time I used SuperDuper! for cloning a volume it worked just fine. 
    (My backup application is the last PPC capable version of Retrospect, which does a credible job, or has over the past ten-twelve years.)

  • How to run more then 1 event at a same time.

    Hello,
    i am looking for logic about how to make start/reset switch.
    in my case i have made one switch name start by pressing that one can start operation ,now i want to make same switch for reset means during one execution one can reset the operation any time.
    means i have to design one switch which gives two function simentaniously that start and reset.
    here in attachment i attach simple program in that i want that i can reset my operation  any time ,and i can stop execution at any time.
    please help me...
    thank you.
    Solved!
    Go to Solution.
    Attachments:
    general.vi ‏9 KB

    To put it simply, you need to rearchitect.  You should not have a test or sequence running inside of the event structure.  You should have another loop that runs a state machine or the like and send commands to it using a queue.  You can have a Start, Stop, and Reset commands.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • OCR Capture not working - Case Number:0186493066 - Still have not heard back

    Your Case Number:0186493066
    On March 30th I spent over 3 hours on two separate chats and screen shares with your tech team trying to fix the OCR problem.  I was told my case was being elevated and I would hear back.  It has been 8 days and I have not heard anything.  If you read the notes on my file you will see I originally had Acrobat 9 Pro and updated to 11 Pro in order to get my OCR working properly.  Since it was downloaded it has not worked.  Two separate techs have tried several things some duplicate and have not been able to get it running.  Please contact me asap to get this fixed.
    We have tried uninstalling and re-installing, we have tried renaming files and copy and pasting them else where.
    Here is the last i heard from anyone in our transcript from chat support call:
    Shraha MUller: ok it installed
    Ankit Verma: Now try to OCR the document.
    Shraha MUller: still unable to locate the Paper Capture recognition service
    Ankit Verma: Ok no issue's i am going to escalate the case.
    Ankit Verma: The case has been escalated we will get back to you as soon as possible.
    Shraha MUller: ok
    Shraha MUller: So I wait for someone to call me?
    Shraha MUller: or??
    Ankit Verma: Yes.
    Shraha MUller: lovely... thanks.
    As you can see the name on our account was wrong and has been fixed several times.  hopefully it is corrected now as well.
    Thank you
    Katie Gonzalez

    nope I'm not saying that at all. I was delicately trying to suggest that you may have been mistaken, and that the audio preview in HDV log & capture was never there, not even before.
    Audio Preview is a feature of the non HDV Log & Capture window
    ... try it. change your Easy Setup to DV/DVCPRO NTSC and then open Log & Capture . look familiar? this is the standard L&C tool and does indeed feature a Preview checkbox, for Audio, in the Clip Settings tab. now close the L&C window and then change your Easy Setup back to HDV, open up L&C again ... the Preview checkbox is not there ... my contention (although I may well be wrong!) is that it never was.

Maybe you are looking for

  • Is there a jabber client for windows users that's working?

    hello all, i've just deployed os x server 10.5 (standard configuration, upgraded to 10.5.3) and i have some users that are using ms windows. i can't seem to get google talk or any other windows jabber clients to successfully connect to the ichat serv

  • Export a pdf in Indesign CS4 grayscale cropmarks not register

    I export a high quality pdf from indesign CS4 and I noticed that my crop marks are coming out in grayscale not register. Any Ideas

  • Code Insight Issue - SQL Developer 1.1 (1.1.0.23 Build Main 23-64)

    Dear SQL Developer Team, I have a slight issue with the Code Insight. I have created a package with three procedures create or replace PACKAGE PACKAGE1 AS procedure test1 (inpar varchar2); procedure test2 (inpar varchar2); procedure test3 (inpr varch

  • Combining AIFF files

    I'm curious since I only really use Soundtrack Pro for audio, how you would string together a series of songs, or videos. Assuming that you have quite a large batch like an album. Talking in terms of Pro quality here not that combining the Au lowpass

  • Aggregated data for quatrter and year

    Hi,      I have created a input schedule by using any by any template, I have account on row and time dimension on column, I input some test data for each month for some accounts, it work ok and I send the data successfully.     I create another repo