Only two events catching

Hi All!
I'm an absolute beginner in making programs to SBO.
I wrote any little trial program in VB6 (and Delphi5), but I have a problem the events handling (of course...).
By the samples I use the code as below:
Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, pVal As SAPbouiCOM.IItemEvent, BubbleEvent As Boolean)
    If pVal.FormType <> 0 Then
        Select Case pVal.EventType
            Case et_ITEM_PRESSED:
                SBO_Application.MessageBox ...
            Case et_KEY_DOWN:
                SBO_Application.MessageBox ...
            Case et_GOT_FOCUS:
                SBO_Application.MessageBox ...
            Case et_FORM_LOAD:
                SBO_Application.MessageBox ...
            Case etc...           
        End Select
    End If
End Sub
Every time only two event catching: et_GOT_FOCUS and et_FORM_LOAD after the start, and not others.
How can I get to catch the et_ITEM_PRESSED (there is a button on the form), etc. event?
(Note1: This programs not registered as add-on.)
(Note2: We have not yet SDK, the media is coming soon.)
Best regards
Gabor
PS.: Sorry my terrible english!

Gabor,
the program needs to be registered with SBO, otherwise SBO cannot hand over the events (as far as I know). You probably just need to wait for your SDK ;(
When you start, make sure that your first if- clause is
If pVal.Before_Action = True
otherwise you will get a lot of events twice (once before and once after event).
Here is a quick sample of a handler I use.
HTH Lutz Morrien
Public Overrides Sub HANDLE_FORM_EVENTS(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean)
    Try
      If pVal.Before_Action = True Then
        Select Case pVal.EventType
          Case SAPbouiCOM.BoEventTypes.et_FORM_ACTIVATE
            'update display
            DisplayLabels()
        End Select
        'AFTER ACTION
      Else
        Select Case pVal.EventType
          Case SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED
            Select Case pVal.ItemUID
              Case "btnPRINT"
                PrintLabels(True, False)
              Case "btnPRNTS"
                SBO_Application.Desktop.State = SAPbouiCOM.BoFormStateEnum.fs_Minimized
                PrintLabels(False, False)
                SBO_Application.Desktop.State = SAPbouiCOM.BoFormStateEnum.fs_Maximized
              Case "btnEDIT"
                EditMarkedLabel()
              Case "btnDELETE"
                DeleteMarkedLabel()
              Case "chkALL"
                SwitchMarkOnAllRows()
              Case "btnPREVIEW"
                SBO_Application.Desktop.State = SAPbouiCOM.BoFormStateEnum.fs_Minimized
                PrintLabels(True, True)
                SBO_Application.Desktop.State = SAPbouiCOM.BoFormStateEnum.fs_Maximized
            End Select
        End Select
      End If
    Catch excE As Exception
      SBO_Application.MessageBox(excE.ToString)
    End Try
  End Sub

Similar Messages

  • [svn:fx-trunk] 10446: Event handlers defined in MXML can no longer be only two slashes.

    Revision: 10446
    Author:   [email protected]
    Date:     2009-09-20 19:09:35 -0700 (Sun, 20 Sep 2009)
    Log Message:
    Event handlers defined in MXML can no longer be only two slashes.
    Modified Paths:
        flex/sdk/trunk/samples/explorer/explorer.mxml
        flex/sdk/trunk/samples/ja_JP/explorer/explorer.mxml

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Two events getting trigered even though only one is being raised !

    I am creating a workflow for TRIP approval. In Start events I have added following two events :
    1. CREATED
    2. CHANGED
    Whenever a trip gets created or changed both the events get triggered thus two workflows start.
    I can customize my workflow for only one event but the issue is why two events are getting triggered ?

    Hi AD,
    not dealt with TRIP object,
    but the CHANGED event, is it created by you thru SWEC?
    If yes, check if the entry has OnChange and not Create.
    Hope it helps.
    Aditya

  • Please help : two events on one button

    Hi there
    I set up a simple Flash banner with the following code to click through  to a web page:
    function buttonClickHandler(event:MouseEvent):void {
    navigateToURL(new URLRequest("**URL**"));
    trace("You clicked me.");
    This worked fine, no problems.
    However, I was then asked to include a click counter by using this code:
    btn.buttonMode = true;
    btn.addEventListener(MouseEvent.CLICK, goOut);
    function goOut(e:Event){
    var url:String = root.loaderInfo.parameters.clickTag;
    var request:URLRequest = new URLRequest(**URL**);
    try {
    navigateToURL(request);
    catch (e:Error) {
    I've tried various ways to combine the two events, but it just doesn't  seem to work. I'm only used to one simple action at a time(!) and this  is needed urgently.
    Can anyone please help me resolve this problem? I will keep an eye on  the forum to update with any necessary info asked for.
    Many thanks in advance.

    You can just call two different functions by adding two listeners:
    btn.addEventListener(MouseEvent.CLICK, goOut);
    btn.addEventListener(MouseEvent.CLICK, buttonClickHandler);
    If you want to combine them though, you do have one error - the goOut function needs to accept a MouseEvent, not a regular Event:
    function goOut(e:MouseEvent){
    Also, you shouldn't need the root when grabbing the FlashVar:
    var url:String = loaderInfo.parameters.clickTag;
    You should put a trace in there to make sure it's working as expected.
    And you didn't really say what isn't working. Do you get any errors?

  • To configure an event catch attached to an operation

    hi
    Using help in "Adobe LiveCycle Workbench ES" version 8.0.3187.1 I found this topic (for which I don't seem to be able to find an online equivalent) :
    > Creating Processes > Implementing Business Logic > Configuring events to control flow in a process > Configuring events attached to an operation
    Configuring event catches attached to an operation
    Asynchronous events and timer events can be directly attached to an operation. You cannot attach exception events to an operation, but many operation types have built-in exception events. (See Handling an exception event attached to an operation.)
    When an event is directly attached to an operation, it is called an event catch and it listens for events while the operation it is attached to is running.
    To configure an event catch attached to an operation:
    (1) Right-click an event attached to an operation and select Event Properties. The Event Catch Configuration dialog box appears.
    (2) (Optional) In the Name box, modify the name of the event.
    (3) Create a filter for the event. (See Creating filters and data maps for events.)
    (4) Create a data map for the event. (See Creating filters and data maps for events.)
    (5) Click OK.
    If I try step (1), I don't see an "Event Catch Configuration dialog box".
    I was hoping to be able to combine the "FaultMessage" (which is what I think I need),
    documented here http://livedocs.adobe.com/livecycle/es/wb_help/00001140.html ,
    with step (4) in the above scenario.
    How can I work with an exception, so that I have the "exception message" available to do something (like log, mail, etc.)?
    many thanks
    Jan Vervecken

    Thanks for your reply Scott.
    You write "There is no way to capture the exception message at run time using the event data.".
    Please consider the documentation for:
    "Creating Processes" > "Event Type Reference" > "Exception event types" > "Exception"
    at http://livedocs.adobe.com/livecycle/es/wb_help/00001140.html
    This documentation refers to a FaultName, a FaultSource and a FaultMessage as event data.
    Do you know what that means and how these could be used?
    You also write "As far as I know, the best you can do is to determine the type of exception that was thrown.".
    Do you agree that only "the type of exception" would not be very informative in a log or e-mail about what went wrong? Typically the most interresting information about an exception is in the exception message or even in the causing exception.
    About "... you would find the exception information in the server logs ...", yes, but from my experience only when there is no fault route for the exception from an event catch.
    So, it seems to be kind of "contradictory" (mutually exclusive):
    (1) or no fault route, and exception details in the log but no e-mail notification possible
    (2) or a fault route, but no exception details available (not even in the logs) but e-mail notification (without details) possible
    regards
    Jan Vervecken

  • I just purchased Aperture and have 20,000  photos in my iPhoto Library. Can I import only certain events from iPhoto into Aperture or do I have to merge the whole iPhoto library?

    I just purchased Aperture and have 20,000 + photos in my iPhoto Library. I see that I can create a unified library between the two. I am wondering if I can import only certain events from iPhoto (like only 2014 events) into Aperture or do I have to merge the whole iPhoto library? Are there any benefits to bringing the whole iPhoto library over to Aperture (iPhoto is SO SLOW for me, I wonder if it is because I have so many photos). Or, any detriment to only bring a few events over?
    And, if I don't merge the two libraries, I assume that means I cannot do it at a later date?
    Help. My local Apple store has had very few Aperture workshops, and the next one is like 2 months away.

    Thank you so much for this information. Here are some responses/comments:
    Disk space - it says 114.43 GB out of 499.25 GB free. I have no idea if that is enough.
    iPhoto version is 9.5.1
    Again, I am not sure how to know if I have 3rd party software...but I don't think I do. Is 3rd party software anything non-apple?
    I will try rebuilding the library. if that doesn't help, maybe I need more memory...? That is what Apple suggested, but that, of course, means buying something else. I've already bought APERTURE, on their recommendation...
    It wasn't, and they told me it was slow because I had too many photos for iPhoto to handle and that I should buy Aperture. Which I did.
    What is your iPhoto version? Are you using the most recent version 9.5.1?
    iPhoto can handle 20000 photos, no problem.  Your computer can be slow for several reasons:
    The most common problem for slowness - insufficient disk space. Don't let your free disk space drop below 20 GB of free space, better more. If the operating system does not have enough working space and the applications you are using, you will notice a very lagging behaviour.
    Older or incompatible softweare can cripple your mac. Do you have any older third-party software installed, that might have installed incompatible kernel extensions?
    Aperture might be slow or keep crashing, if you imported a corrupted image or incompatible video,  that cannot be processed. Then Aperture will try over and over again to create previews and never succeed.  You could test for this situation, by launching Aperture with the Shift-key held down. This will defer the generation of previews. If Aperture will launch and work better this way, you probably have some bad media in your photo library.
    Another problem to check for is a corruption of your Aperture/iPhoto library. You have run the First Aid Tools to repair the iPhoto Library, but have you ever tried to rebuild the library? See this post by Old Toad: Rebuild iPhoto Version 11

  • Drag and Drop game with only two targets

    I created a drag and drop activity where their are five boxes that are supposed to go in to two columns in any order. I found a tutorial online that I based this activity off of.
    The problem is that the tutorial shows you how to make a target for each mc which has worked for all the activities I've made except for this one where I need only two targets. How would I change it so I can have multiple mc's drop on to one target?
    This is my AS:
    var score:Number = 0;
    var objectoriginalX:Number;
    var objectoriginalY:Number;
    growing_mc.buttonMode = true;
    growing_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickupObject);
    growing_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    gorging_mc.buttonMode = true;
    gorging_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickupObject);
    gorging_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    dormancy_mc.buttonMode = true;
    dormancy_mc.addEventListener(MouseEvent.MOUSE_DOWN  , pickupObject);
    dormancy_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    cystform_mc.buttonMode = true;
    cystform_mc.addEventListener(MouseEvent.MOUSE_DOWN  , pickupObject);
    cystform_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    hosttrans_mc.buttonMode = true;
    hosttrans_mc.addEventListener(MouseEvent.MOUSE_DOW  N, pickupObject);
    hosttrans_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function pickupObject(event:MouseEvent):void {
    event.target.startDrag(true);
    event.target.parent.addChild(event.target);
    objectoriginalX = event.target.x;
    objectoriginalY = event.target.y;
    function dropObject(event:MouseEvent):void {
    event.target.stopDrag();
    var matchingTargetName:String = "target" + event.target.name;
    var matchingTargetisplayObject = getChildByName(matchingTargetName);
    if (event.target.dropTarget != null && event.target.dropTarget.parent == matchingTarget){
    event.target.removeEventListener(MouseEvent.MOUSE_  DOWN, pickupObject);
    event.target.removeEventListener(MouseEvent.MOUSE_  UP, dropObject);
    event.target.buttonMode = false;
    event.target.x = matchingTarget.x;
    event.target.y = matchingTarget.y;
    score++;
    scoreField.text = String(score);
    } else {
    event.target.x = objectoriginalX;
    event.target.y = objectoriginalY;
    if(score == 5){
    response_mc.gotoAndStop(2);

    var matchingTargetName:String =(event.target.name).substring(0, 1);
    Change the name of the target to A and B and the mc A1, A2, A3, A4... and B1, B2,B3...

  • Two event handler

    I am using two event handler
        CLASS-METHODS:
            handle_data_changed_finished
                FOR EVENT data_changed_finished OF cl_gui_alv_grid
                    IMPORTING e_modified
                              et_good_cells.
        CLASS-METHODS: catch_doubleclick
               FOR EVENT double_click OF cl_gui_alv_grid
               IMPORTING e_column   es_row_no sender.
    And after I call them like that 
        SET HANDLER ci_events_grid->handle_data_changed_finished
                FOR ci_grid .
        CALL METHOD ci_grid->register_edit_event
          EXPORTING
            i_event_id = cl_gui_alv_grid=>mc_evt_enter.
       SET HANDLER ci_events_grid->catch_doubleclick FOR ci_grid.
    There is a problem that when the changes finish on grid , it can handels handle_data_changed_finished
    truely but when the user double click it couldnt gets true row id .
    But when I do not use handle_data_changed_finished method there wasnt problem occurs ,
    How can I use two methods together ?

    No I dont catch with user-command
    Please below the code method implementations.
          CLASS lcl_event_receiver IMPLEMENTATION
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_data_changed_finished.
        PERFORM data_changed_finished TABLES et_good_cells.
    ENDMETHOD.                    "HANDLE_DATA_CHANGED_FINISHED
      METHOD catch_doubleclick .
        IF e_column-fieldname NE 'REASON_ICON'.
          EXIT.
        ENDIF.
        READ TABLE gt_itab  INDEX es_row_no-row_id INTO gt_ch_itab.
        CASE e_column.
          WHEN 'REASON_ICON'.
            IF gt_ch_itab-changed = 'X'.
              CALL SCREEN 200 STARTING AT 40 8
                            ENDING AT 80 20.
            ENDIF.
        ENDCASE.
      ENDMETHOD.                    "handle_double_click
    ENDCLASS.                    "LCL_EVENT_RECEIVER IMPLEMENTATION
    FORM data_changed_finished  TABLES et_good_cells STRUCTURE lvc_s_modi.
      DATA ls_good_cells TYPE lvc_s_modi.
      LOOP AT et_good_cells INTO ls_good_cells.
        AT NEW row_id.
          READ TABLE gt_itab INDEX ls_good_cells-row_id.
          IF sy-subrc = 0.
            IF gt_itab-pwmt1   NE gt_itab-old_pwmt1 OR
               gt_itab-pwtt1   NE gt_itab-old_pwtt1 OR
               gt_itab-dlvcnt  NE gt_itab-old_dlvcnt.
              gt_itab-changed        = 'X'.
              gt_itab-status         = icon_led_yellow.
             gt_itab-reason_icon    = icon_system_help.
            ELSE.
              CLEAR : gt_itab-changed,gt_itab-status.
            ENDIF.
            MODIFY gt_itab INDEX ls_good_cells-row_id.
          ENDIF.
        ENDAT.
      ENDLOOP.
      CALL METHOD ci_grid->refresh_table_display
        EXPORTING
          i_soft_refresh = 'X'.
    ENDFORM.                    " data_changed_finished

  • How can I see and edit two Events?

    Hi, I am using iPhoto 11 [9.4.3] and can't find the help section for this operation. I did siccessfully get all the photos and events back by using a message from Old Toad, but I still need to move photos from one event to another. I read somewhere it was possible to view two Events in vertcai columns, is this still possible in this new version?

    For what it's worth,  you can always browse a second event or album in your iPhoto Library by browsing the library in Preview's Media Browser at the same time - only you can only browse but not edit. This can be useful, if you need to find a certain item, and are no sure which event to open next.
    For example - an iPhoto library open in iPhoto (left) and viewed in Preview (right) at the same time:

  • How to synchronize two Event Dispatcher threads?

    I have two applications running in the same jvm. The flow should go like--
    a) First application (A1) has a swing window containing componets like buttons, text boxes etc.
    b) On click of this button, Event Dispatcher thread (T1) , calls the other application (A2).
    c) The second application A2, creates a swing window using EventQueue.invokeLater method and in the mean time Thread T1 should wait for this new A2 window to get some results from the database.
    Is it possible to stop thead T1 in between without freezing the GUI components of application A2.
    Thanks

    I think what tjacobs01 is getting at, is that there is only one Event Dispatcher Thread per JVM. So your question does not make sense. If there really is two EDT threads, then you are dealing with inter-process communication (since there would be two JVM processes, one for each application).
    It sounds like there is only one JVM, one EDT and two instances of a java.awt.Window. You probably think of the window == an application. In that case, you can probably solve your problem by executing the DB access (the long-running task) in the doInBackground() method of a SwingWorker.
    http://java.sun.com/products/jfc/tsc/articles/threads/threads1.html

  • Alarm generates two events

    I have a shared variable with a lower and upper alarm level.
    I am generating a user event when the alarm threshold is exceeded (see attached jpg). However, when returning back into the 'valid' region two events are generated. What could be the source of those two events and how can I avoid this behavior (I need only one event when passing the threshold again).
    VPS
    Attachments:
    alarm_events.jpg ‏67 KB

    Hi VPS,
    The events triggering twice could possibily due to a redundant notification, on which you should do nothing in your code. 
    If you notice, the events are triggered twice when only shared variable is changed its state to the alarm state, but it would trigger only once when it changes to the normal state. 
    Check for the time stamp to make a comparison. When the alarm is triggered, the two events would have different timestamps,
    Timestamp on 1st event trigger        -00:00:00 MM/DD/YYYY - is a redundant notification just ignore it.
    Timestamp on second event trigger  - Current time and date   - is your Alarm do your action here.
    It also makes no sense for the time stamp being 0 for a new alarm triggered.
    You can have a look at the example vi DSC Alarm Demo.lvproj, DSC Alarm Event structure supprt.vi shipped with DSC module for a better understanding.
    Hope this helps.
    Message Edited by Vsh on 09-15-2009 04:08 AM

  • Form Auto Save event catch

    Hello:
        I have addon that catch event at the time someone add or update a transaction and check coupel of things...etc. However as I found that if you use the X on the right upper column of the form to close the form. Form will ask you if you want to save, if you choose yes, it will by pass my event catch! I tried to use event log to identify the event handling, however the only thing I can see is a messagebox pop up. It doesn't allow me to stop it or anything. What can I do?
    sincerely Yours

    Bo,
    I would think that you would want to catch the et_FORM_DEACTIVATE event.  This is the event that occurs when your active form is closed.  If you download the EventLogger tool from SDN for Business One that may assist you.  You can find it here ...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ede3be37-0e01-0010-1883-cd1b5293473e
    You can also look at the sample code that comes with the SDK for catching events at ...
    ..Program FilesSAPSAP Business One SDKSamplesCOM UIVB.NET 2.CatchingEvents
    HTH,
    Eddy

  • Cant add Rows In a Matrix (Child) and No event catching

    Hi,
    I created a Master File and its Child. Registered as an UDO. Created an UDO Form with the UDO Form Generator.
    I Can Add, find, update, records to de Master File, but The Matrix related to the Child Table Only allows me enter information in the first Row.
    I Have tried the addrow command in every place possible, but It doesnt work.
            Dim oXmlDoc As Xml.XmlDocument
            oXmlDoc = New Xml.XmlDocument
            Dim sPath As String
            sPath = IO.Directory.GetParent(Application.StartupPath).ToString
            oXmlDoc.Load(sPath & "" & FileName)
            SBO_Application.LoadBatchActions(oXmlDoc.InnerXml)
            oForm = SBO_Application.Forms.Item("F_MX_C071")
    The last thing I tried was include this next lines after
            oItem = oForm.Items.Item("mtx_0")
            oMatrix = oItem.Specific
            oMatrix.AddRow(3)
    I Also Cant catch the AddRow Event Button. I Set the filters and the event handling for menus and
            oFilters = New SAPbouiCOM.EventFilters
            oFilter = oFilters.Add(SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED)
            oFilter.AddEx("F_MX_C071")
            SBO_Application.SetFilter(oFilters)
    If (pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED) Then
    Events are catched before oForm = SBO_Application.Forms.Item("F_MX_C071"). After that, there´s no event catching
    Can anyone help me? I have a lot of time spent in this issue.
    Thanks a lot.

    I dont know if Is it clera for me now, but i try it.
    You have matrix on user form. The matrix contains child data. This child data are inserted to matrix manualy or bounded to some datatable, i think with datatable?
    When you add new line to matrix, Im using
    omatrix.AddRow(1, 0) - 1 is that I want to add 1 row, 0 is position, where the new line will be in matrix
    When the matrix is filled with code, Im doing it as
    I update usertable
    oUserTable.UserFields.Fields.Item("U_Popis").Value = ""
    oUserTable.UserFields.Fields.Item("U_PATH").Value = ed.String
    then update the form to affect changes to db
    oOrderForm.Update()
    and then I make new bounding to datatable.
    Undestand I correctly it now?

  • How to correlate two events into 1 action

    I am trying to build at eem trigger that takes two events and only runs the action once if the either one of them is true,   but I can't seem to figure out the syntax
    my simple script for testing,  produces two syslog message if both events are true.    I would like it to just run the "action" once for each occurs
    no event manager applet check_wireless_stats
    event manager applet check_wireless_stats
    event tag n1 snmp oid 1.3.6.1.4.1.9.9.661.1.3.4.1.1.1.18  get-type exact entry-op le entry-val 0 poll-interval 30 maxrun 1000
    event tag n2 snmp  oid 1.3.6.1.4.1.9.9.661.1.3.4.1.1.2.18 get-type exact entry-op le entry-val 0 poll-interval 30
    trigger occurs 1
    correlate event n1 or event n2
    action 002 syslog msg "the event occurred"
    I need to be able to run the script once if any of these events occurs or both events occur and not have it trigger the actions twice.
    i.e. something like
      correlate [event n1 andnot event n2] or [event n2 andnot event n1] or [event n1 and event n2]

    Try adding this to your applet to emulate a mutex:
    action 1.0 cli command "enable"
    action 2.0 cli command "show event manager scheduler thread queue-type applet detailed | incl check_wireless_stats"
    action 2.1 set instances 0
    action 3.0 foreach line $_cli_result "\n"
    action 3.1  regexp "name: check_wireless_stats" $line match
    action 4.0  if "$_regexp_result" eq 1
    action 5.0   increment instances
    action 6.0  end
    action 7.0 end
    action 8.0 if "$instances" ge 2
    action 9.0  exit 0
    action 9.1 end
    action 9.2 syslog msg "the event occurred"

  • Can I switch calendars (Ex. "night shift" to "day shift" cal) with a repeating event, but ONLY for that one event??  It asks "for all events or only this event" if i change the time.  But it changes ALL events when i try and switch calendars.  Any help??

    I have 2 calendars set up for my work schedule, a "night shift" and "day shift" calendar.  I've set up repeating events fro Fri/Sat/Sun 3-11pm "night shifts" and Mon/Tues 7am-3pm "day shifts".  But lets say for example that I swap shifts and instead of working nights on Saturday like I normally would, I am now working days.  I want to change that in my calendar.  When I go to change the event, if i change the TIME it asks if i want to change all event or ONLY this event.  no problem....just this single event.  but when i go to change the event from the "night shift" calendar to the "day shift" calendar, it changes ALL the repeating events, and not just that one single event.   can anyone help with this???  am i doing something wrong?  is there a way to do this or not with the new iCal program???  i used to do this and never had any problems.    Thank you!

    You need to follow iPhoto terms since we only know what you tell us
    what are you calling folders - in iPhoto folders can not hold photos - albums hold photos and folders hold albums or other folders
    The basic default view of photo is by event (iPhoto '08 and later)
    Exactly what you you trying to do?
    LN

Maybe you are looking for

  • Delete files from directory?

    I've ripped songs from CD's into a folder on my hard drive and named the folder "Ripped". I ripped them as MP3 files. Then I added those songs into my iTunes library. Are those songs copied into the iTunes library into some directory somewhere? Or ar

  • How to consume the Calendar Exception details from Project Server 2013 to an SSRS report using PSI ?

    Hello, Can anyone guide me how to access the calendar exception details from Project Server using PSI? I need to extract calendar details of enterprise resources , like exception name, exception type, exception start date and exception end date into 

  • Where can i buy the charging cord for headset?

    i got my cords all mixed up and cant find the charging cord for headset. where or how do i find a new one?

  • Getting kicked out of aperture

    I was comparing colorsync profiles by choosing the profile in the menu, then going to color mode in print settings. I wanted to see what the sample original/preview looked like for each profile. If I return to the main printer menu and choose another

  • How to delete photos or songs from iPhone?m by deleting photos or songs

    The Apps store tells me I can get an update on an App I downloaded, but to make room for it, I must first delete songs or photos. I have no clue how to do this without also deleting photos or songs from my Mac computer. Is there an easier (or smarter