How to set a keyboard event, which can response to dropdown list?

Hi every one
Can you set a keyboard keydown event for select the dropdown list item?
Thanks
Regard
John
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
var
  w = new Window('dialog {orientation: "row", alignChildren: ["", "top"]}',"Indesign Tricks Wizard_Beta_V3", undefined, {closeButton: false}),  
  stringList = ["01   Close and SAVED",                                                        //       0
        "02   Close WITHOUT save",                                                   //       1
        "03   Save all files",                                                                //       2
        "04   Reverse",                                                                        //       3
        "-",                                                                                          //       4
        "05   Remove empty pages",                                                  //       5
        "-",                                                                                          //       6
        "06   Update years on Master in all opening Doc",               //       7
        "07   Years + 1 in Specific cells",                                          //       8
        "08   Copy and paste to Next Master",                                 //       9
        "-",                                                                                         //       10
        "09   Bring Styles and Swatches to next Doc",                      //       11
        "10   DEL and Replace Color",                                               //       12
        "11   Remove unused color",                                                 //       13
        "-",                                                                                         //       14
        "12   Remove missing link in all open files",                         //       15
        "13   Remove layer and missing link ",                                  //       16
        "14   Batch import styles from source document",               //       17
        "-",                                                                                         //       18
        "15   Gen Revised PDF",                                                        //       19
        "16   Report empty return at top",                                       //       20
        "17   Find-Change Paragraph Names",                                //       21
        "-",                                                                                         //       22
        "18   Break link from story",                                                //       23
        "19   Joint link to story",                                                       //       24
        "20   Extract pages",                                                            //       25
        "21   Joint text fame together",                                           //       26
        "22   Resize selected text"],                                                //       27
  mReminderString = "\"Batch import styles from source document\" usually cause indents problem.",
  lastSelected = Number(app.extractLabel("dialogWizard") ),
  p = w.add("panel", undefined, "Choose a job to do:"),
  s = p.add("group"),
  mDD = p.add("dropdownlist", undefined, stringList),
  mRem = p.add("statictext", undefined, mReminderString, {multiline: true} ),
  b = w.add('group {orientation: "column"}');
     mDD.preferredSize = [320,20];
     mRem.preferredSize = [320,30]; // set reminder height as 20 * line count (here 2 lines)
     if ( !lastSelected ) mDD.items[0].selected = true;
     else mDD.items[lastSelected].selected = true;
// |||||||||||||||||||||||||||||||||||||||||||||||| modify reminder font here |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
         w.graphics.backgroundColor = w.graphics.newBrush (w.graphics.BrushType.SOLID_COLOR, [1, 0.26, 0.2]);
     mRem.alignment = "left";
     mRem.graphics.font = ScriptUI.newFont ("Arial", "Bold", 11);
     mRem.graphics.foregroundColor = mRem.graphics.newPen (w.graphics.PenType.SOLID_COLOR, [1, 1, 1], 1);
     p.graphics.font = ScriptUI.newFont ("Arial", "Bold", 10);
     p.graphics.foregroundColor = mRem.graphics.newPen (w.graphics.PenType.SOLID_COLOR, [1, 1, 1], 1);
     mDD.graphics.font = ScriptUI.newFont ("Arial", "Bold", 11);
     mDD.graphics.foregroundColor = mRem.graphics.newPen (w.graphics.PenType.SOLID_COLOR, [1, 0.26, 0.2], 1);
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
        var myIcon = "";
        var ib = b.add ('iconbutton', undefined, myIcon);
              ib.onClick = function() {
                     w.close(1);
        w.addEventListener ("keydown", function(k) {if (k.keyName == "Enter") w.close(1);})
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
        b.add ('button', undefined, "取り消す", {name: "Cancel"}); 
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
w.show();
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Hi Peter
look into script as below:
//======================================================================================== =======================================================
var
  w = new Window('dialog {orientation: "row", alignChildren: ["", "top"]}',"Indesign Tricks Wizard_Beta_V3", undefined, {closeButton: false}),  
  stringList = ["01   Close and SAVED",                                                        //       0
        "02   Close WITHOUT save",                                                   //       1
        "03   Save all files",                                                                //       2
        "04   Reverse",                                                                        //       3
        "-",                                                                                          //       4
        "05   Remove empty pages",                                                  //       5
        "-",                                                                                          //       6
        "06   Update years on Master in all opening Doc",               //       7
        "07   Years + 1 in Specific cells",                                          //       8
        "08   Copy and paste to Next Master",                                 //       9
        "-",                                                                                         //       10
        "09   Bring Styles and Swatches to next Doc",                      //       11
        "10   DEL and Replace Color",                                               //       12
        "11   Remove unused color",                                                 //       13
        "-",                                                                                         //       14
        "12   Remove missing link in all open files",                         //       15
        "13   Remove layer and missing link ",                                  //       16
        "14   Batch import styles from source document",               //       17
        "-",                                                                                         //       18
        "15   Gen Revised PDF",                                                        //       19
        "16   Report empty return at top",                                       //       20
        "17   Find-Change Paragraph Names",                                //       21
        "-",                                                                                         //       22
        "18   Break link from story",                                                //       23
        "19   Joint link to story",                                                       //       24
        "20   Extract pages",                                                            //       25
        "21   Joint text fame together",                                           //       26
        "22   Resize selected text"],                                                //       27
  mReminderString = "\"Batch import styles from source document\" usually cause indents problem.",
  lastSelected = Number(app.extractLabel("dialogWizard") ),
  p = w.add("panel", undefined, "Choose a job to do:"),
  s = p.add("group"),
  mDD = p.add("dropdownlist", undefined, stringList),
  mRem = p.add("statictext", undefined, mReminderString, {multiline: true} ),
  b = w.add('group {orientation: "column"}');
     mDD.preferredSize = [320,20];
     mRem.preferredSize = [320,30]; // set reminder height as 20 * line count (here 2 lines)
     if ( !lastSelected ) mDD.items[0].selected = true;
     else mDD.items[lastSelected].selected = true;
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
            mDD.active = true;                 //this syntax work in PC, but not work in MAC
            mDD.addEventListener ("keydown", function (k)
                    k = k.keyName.toLowerCase();
                            var i = 0;
                                    while (i < numbers.length-1 && numbers[i].charAt(0).toLowerCase() != k)
                                               {++i;}
                                            if (numbers[i].charAt(0).toLowerCase() == k)
                                                            mDD.selection = i;
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
// |||||||||||||||||||||||||||||||||||||||||||||||| modify reminder font here |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
         w.graphics.backgroundColor = w.graphics.newBrush (w.graphics.BrushType.SOLID_COLOR, [1, 0.26, 0.2]);
     mRem.alignment = "left";
     mRem.graphics.font = ScriptUI.newFont ("Arial", "Bold", 11);
     mRem.graphics.foregroundColor = mRem.graphics.newPen (w.graphics.PenType.SOLID_COLOR, [1, 1, 1], 1);
     p.graphics.font = ScriptUI.newFont ("Arial", "Bold", 10);
     p.graphics.foregroundColor = mRem.graphics.newPen (w.graphics.PenType.SOLID_COLOR, [1, 1, 1], 1);
     mDD.graphics.font = ScriptUI.newFont ("Arial", "Bold", 11);
     mDD.graphics.foregroundColor = mRem.graphics.newPen (w.graphics.PenType.SOLID_COLOR, [1, 0.26, 0.2], 1);
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
        var myIcon = ""
        var ib = b.add ('iconbutton', undefined, myIcon);
              ib.onClick = function() {
                     w.close(1);
        w.addEventListener ("keydown", function(k) {if (k.keyName == "Enter") w.close(1);})
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
        b.add ('button', undefined, "取り消す", {name: "Cancel"}); 
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||
w.show();
//======================================================================================== =======================================================
Thank you
Regard
John

Similar Messages

  • How to create a Z* table which can maintain through SM30?

    How to create a Z* table which can maintain through SM30? Thanks!

    This question had been asked millions of times...you just need to search the forums...
    Quick hint...goto SE11...the utilities menu and then Table Maintenance Generator.
    Greetings,
    Blag.

  • How to set "All day event " as default in Calendar in 9630

    In BB 9630 how do I set "All day event " as the default in Calendar?

    Hello,
    You asked the same question twice, albeit the first time in the wrong place:
    http://supportforums.blackberry.com/t5/BlackBerry-Curve-BlackBerry-8300/How-to-check-as-default-quot...
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to set fire action event for particular rows in a table

    HI All,
    I have a requirement in which I want to set fire action event for particular rows in a table based on some condition.
    The table has columns like fullname,employee id etc.
    So i want to set fire action event for particulars rows only which will saisfy some condition.

    Atanu,
    Your approach(setting fire action for few rows) seems not possible. Better to go ahead with workaround.
    Do you want this functionality in processRequest(while page loading) or processFromRequest(on some event) method ? Give more explanation regd. your requirement ?
    In either case loop through the rows and when your condition is met write the action to be performed in controller.
    Regards,
    Anand

  • How do I find an event which is triggered on line selection for ALV grid?

    Hi,
    I'm trying to find an event which is triggered when a user selects a row in the ALV grid. I want to add my own code in to add up the total values of selected lines, but can't find any event which will trigger my method.
    I found CLICK_ROW_COL but it's protected so when I try and add a method for it:
      PROTECTED SECTION.
        METHODS:
        select_row
            FOR EVENT click_row_col OF cl_gui_alv_grid.
    I get the syntax error:
    Access to protected event "CLICK_ROW_COL" is not allowed.
    Am I using the right event? Am I implementing it correctly?
    Any help appreciated. Thanks in advance.
    Gill

    I chose to solve this by removing the line select buttons from the ALV and replacing them with a checkbox defined as a hotspot.  I then used EVENT hotspot_click FROM cl_gui_alv_grid to highlight the line and change my totals on a single click.

  • How to set up reoccurring events in ical

    how do you set up reoccurring events in ical?

    Read this entry from the iCal help menu under "recur": http://docs.info.apple.com/article.html?path=iCal/4.0/en/9865.html
    Hope that helps.

  • How to receive a keyboard event (arrowkeys)

    Hi,
    I'm a bit confused about how to setup event-handling for keyboard event. I have created a window with a File's Owner called "MyDocument". But if I implement the method
    <pre>
    -(void)sendEvent: (NSEvent *)theEvent {
    printf("Called\n");
    </pre>
    it wont be called. Does anyone know what else I have to do in order to receive keyboard events when a user presses an arrowkey inside my application ?
    Macbook Pro 15''   Mac OS X (10.4.8)   2GHz, 2GB

    You most likely need to implement -(void)keyDown:(NSEvent *)event to catch keyboard events and then query event for the key pressed. This method is defined in NSResponder together with mouseDown:, mouseDragged, keyUp:, etc.
    Here's a couple of examples from two sample apps:
    'Dicey' (online sample code):
    <pre>
    -(void)keyDown:(NSEvent *)event {
    // If the space bar was pressed, toggle hold on the first responder
    if ([[event characters] isEqualToString:@" "]) {
    [[dice objectAtIndex:firstResponderIndex] toggleHold];
    [self setNeedsDisplay:YES];
    } else {
    // We do care about our superclass dealing with tab shift-tab for first responder changes
    [super keyDown: event];
    </pre>
    'Worm' (From: /Developer/Examples/AppKit/Worm):
    <pre>
    - (void)keyDown:(NSEvent *)event {
    NSString *keys = [event charactersIgnoringModifiers];
    wormHeading = kGameHeadingStraight;
    if (keys && [keys length] > 0) {
    unichar c = [keys characterAtIndex:0];
    if (c == NSLeftArrowFunctionKey) {
    wormHeading = kGameHeadingLeft;
    } else if (c == NSRightArrowFunctionKey) {
    wormHeading = kGameHeadingRight;
    </pre>
    Note the use of NSLeftArrowFunctionKey for example in Worm. These and many other 'special' key constants are defined in NSEvent.

  • How to create a function/procedure which can take optional parameter?

    Hi,
    I want to create a function or a procedure which can take optional parameters. For example, I want to create fun1() or fun1(param1) like this. Only one function will act differently when different number of parameters are passed to it. Something like the substr() function in oracle. It can be called with 2 parameters, as well as three parameters.
    Thanks in advance,
    Kiran

    There are two ways of doing this. The regular way would be to add a DEFAULT clause to your function declaration:
      -- Function can be called with 1 or 2 parameters
      FUNCTION xxxx
        ( param_one  NUMBER
        , param_two  VARCHAR2  DEFAULT NULL )
      RETURN VARCHAR2;Or, if your functions are declared in a package you can do some over-loading:
      PACKAGE yyyy
      IS
        -- Function with 1 parameter
        FUNCTION xxxx
          ( param_one  NUMBER )
        RETURN VARCHAR2;
        -- Function with 2 parameters
        FUNCTION xxxx
          ( param_one  NUMBER
          , param_two  VARCHAR2 )
        RETURN VARCHAR2;
      END;If you are calling server-side functions from client-side tools (like OracleForms) you may need to use this second method.

  • How to set condition in CFL which are alredy assign in EditText

    Hi
      All
    I create a Screen Printer Form where i assign a edit text to ChooseFromList as follow-
    1)1st create a CFL using Collection Tab in screen printer and set the Object type=2 and Unique Id=CFL_2
    2)Then assign CFL_2 to EditText in Item Tab window.
    In that case CFL show All the Business partners. so my question is how i set the Condition in CFL_2 according to CardType.
    thanks
    Subhas

    Hi,
    Give a new Unique Id and assign that to edittext
                Dim oCons As SAPbouiCOM.Conditions
                Dim oCon As SAPbouiCOM.Condition
                oCons = New SAPbouiCOM.Conditions
                oCon = oCons.Add()
                 oCon.Alias = "U_CLEARED"
           'oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                oCon.CondVal = val        
                Dim oCFL As SAPbouiCOM.ChooseFromList
                Dim oEdit As SAPbouiCOM.EditText
                Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                oCFLs = oForm.ChooseFromLists
                oitem = oForm.Items.Item(ItemUID)
                oEdit = oitem.Specific
                Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                oCFLCreationParams.MultiSelection = False
                oCFLCreationParams.ObjectType = "AUCTIONS"
                Try
                    oCFLCreationParams.UniqueID = "CFL1_ACV" & val
                Catch ex As Exception
                End Try
                Try
                    oCFL = oCFLs.Add(oCFLCreationParams)
                Catch ex As Exception
                End Try
                Try
                    oCFL.SetConditions(oCons)
                Catch ex As Exception
                End Try
                oEdit.ChooseFromListUID = "CFL1_ACV" & val
                oEdit.ChooseFromListAlias = "Code"

  • How to get the keys for a field in the dropdown list?

    The dropdown list of payment terms on an account is unfortunately very big, containing al lot of different values, in our system and therefore very confusing for the user working with Web UI version 5.2 to pick the right one. The keys (code like e.i Z077 or ZO23) are not stated in the list available for user. Is there any way in the system to flag if the different fields should show boths the keys(codes) and the description of the values in the field as Payment terms, etc.
    In the ERP SAP Gui it is possible to activate if you want the keys should be shown in all drop down list.
    If this is not possible for all the fields at one time, what can be a solution to have the keys in the drop down lists, any suggestion will be very valuable for us.
    Kindly regards
    Camilla

    HI Joost
    No it is not that simple, that is not a solution for us. The fields are maintained i our backend system and replicated to CRM, and these fields descriptions are also printed at Order confirmations and invoices, and we do not want the keys that do not give any meaning  to be visible to customers.
    BR
    Camilla

  • Can I set a recurring event which falls on a specific day

    I would like to set events in my Calendar which fall on specific days of the Week or Month e.g. 2nd Monday of each month; or the last Friday on the month.  I would be obliged if anyone can advise on how this can be done.

    That feature does not exist in the built in calendar app. What you see in the settings for recurring events is what you get. There are other calendar apps available in the App Store. Check some of them out and you might find one that suits your needs better.
    Look at this one.
    http://grid.birdsoft.biz/

  • How to set mac KEYBOARD shortcuts (for mac OS and windows OS)

    i am having a bit of an issue.
    i run windows 7 and mac os on the same computer on different hard drives in this computer. i also have a "mac" keyboard. i am not sure how this may be different from a "windows keyboard" but the point is i need to use this keyboard because it matches the one on my laptop which is a mac.
    when i switch to windows on this machine i always end up deleting information because the CMD + X and CMD + V cut and paste shortcuts on Mac OS are not the same in windows. windows requires (currently) CTRL + X and CTRL + V. so when i got to cut and paste in windows CTRL + X (this is my habitual way of working) and then i run a CTRL + V i end up writing /over/ the text i selected with a "x" and i end up pasting /over/ the text i selected to paste over with a "v". this is because instead of running a cut and paste, this set of shortcuts in windows simply enters "x" and "y" respectively since the shortcut is not active.
    does anyone know where i set these in windows OS and in mac OS?
    also, does anyone know if it is possible to set how many UNDOS i can do in either of these OS's or to know how many i can in fact undo?
    THANKS
    long story background:
    1. while i may move to a windows keyboard on the computer i am using (because the mac keyboards these days end up losing keys and they end up very wobbly) i cannot do this for the laptop machine so this may not make a lot of sense if i end up also running windows on the laptop which is my intention at some point.
    2. CTRL + X is a very long stretch on the mac keyboard so rather than switching mac shortcuts to accommodate windows shortcuts i am thinking to switch windows shortcuts to mac ATM.
    3. this is no small issue! i just went to copy and paste this text so i could save it for myself in order to explain to someone else and i ended up overwriting with a "c". if i had not thought fast and remembered to UNDO by hitting CTRL - X and not CMD - X i might have lost all my work.

    You don't necessarily need netcfg to get networking. But I used it before for my wireless on my laptop, so I just used the same on my desktop too. Also if you want to do things like this its easier rather than have to go digging around with macspoof and what not. your netcfg eth0 file could be something like
    PRE_UP='ip link set eth0 address XX:XX:XX:XX:XX:XX'
    CONNECTION='ethernet'
    DESCRIPTION='A basic dhcp ethernet connection using iproute'
    INTERFACE='eth0'
    IP='dhcp'
    If you use a different interface then obviously, you need to change it accordingly

  • How to set custom keyboard layout as default?

    I've downloaded a german keyboard layout for normal PC keyboards from this page: http://www.nullpointer.de/stuff/keylayout/index.de.
    Everything works fine. The layout is showing up in "Input Sources".
    But for some reason I cannot uncheck the default "Apple German Keyboard Layout" as you can see in this screenshot:
    The TickBox next to it is disabled...
    This leads to the problem that in some applications that layout is being used (switched to) automatically instead of keeping the new one...
    How do I set a custom keyboard layout as default and/or deactivate built-in one?
    Thanks in advance!
    MemphiZ

    This has come up before, and I think it is not possible.  The OS always keeps one of its own Latin keyboards active, and unfortunately I have not seen any way that these (located in system/library/keyboard layouts/applekeyboardlayouts.bundle) can be modified by the user.
    PS Another possible source for "PC" layouts for people using that kind of hardware instead of Apple keyboards is the set of Logitech layouts provided when you download Ukelele.

  • How do I create an event which begins at a particular time and finishes on a later date at a particular time

    iCal will only let me have an all day event for something which goes over a day, what about events that begin in the afternoon of one day and go on into the afternoon a few days later, when I have tried inputting this into ical the event only shows up on the first day

    This is a duplicate post.
    I built a basic Checkbox web page.  I want to add a time stamp everytime a check is made on the page.  How do I do that?
    Nancy O.

  • How to delete song on iPhone which can't be wiped?

    Hi there,
    after about one full day of fighting with iTunes Match (including full deletion of iCould Library by using an empty iTunes Library), I finally have a working iCloud Library with all my songs and artwork (tested in my iPhone 4S). Unfortunately, there is one single problem left which i can't solve.
    In one album, there is one single song (out of 9) which is shown twice on my iPhone. It's only shown once in my iTunes Library on the iMac.
    I can't delete the 2nd version of this song on my iPhone. It shows the cloud symbol and when i click it, it shows the download symbol but it actually doesn't download. It returns to the cloud symbol. The wipe function to delete this song is not available for this song. And the song doesn't play.
    All the other files in this album are fine. If i delete the whole album in my iTunes Library on my iMac and update iTunes Match, all songs are deleted from my iPhone except the one which I can't delete.
    It's obvious a corrupt song but how do i get rid of it?
    Thanks,
    Tom

    I am not familiar with a song being greyed out, but with a song that is appearing normally, you can swipe a finger over it from left to right. The red "Delete" button should appear. Just press it and the song should delete. The process is similar to deleting an email. Hope this works with your greyed out song.

Maybe you are looking for

  • PS CS5 for MAC.  Photoshop crashes when I try to print  Any help appreciated

    Am running MAC OS Maverick.  Photoshop CS5 crashes when I press print tab.  Any solutions?

  • IPod switched formats

    I have an iPod nano and a MacBook Pro. The iPod was formatted with Macintosh and has worked fine since I got it at Christmas. Then last night I went to add some music to it and when I connected it said it was in Windows format. I went through the res

  • Form Printing Using Output Type

    Hi, I have a requirement on authorization consideration, it says: Set user parameter NDR =X to Indicates that the output determination function will be activated. In this case, the system checks whether output is to be generated. Where can I see this

  • Performance point services error

    We are trying to configure performance point services in our environment. We have successfully setup the secure store service and after that performance point service but still if we browse the site and start the dashboard designer, we are getting be

  • Audio is messed up

    When I play my music that I imported from CDS into iTunes, the audio seems like it plays too fast. I've tried the following: - reinstalling iTunes 8 - installing older versions of iTunes - deleting iTunes plug-ins I've tried everything. When is apple