Not enabled items

Not enabled items displays with GRAY Foreground color... I want this items to displays with BLACK foreground color, how can I do this?
thanks to all.
Ricardo

thanks a lot, I think this will work very well...
"No, I want it to be NOT ENABLED, but I want it to look like ENABLE. "
Now that's a cruel trick to play on the users :)
Seriously, I think you will have to have the item enabled, but with insert/update/query disallowed and keyboard navigable off. You may also need a 'PRE_TEXT_ITEM' containing 'RAISE FORM_TRIGGER_FAILURE'
As I understand it, windows puts it's own colour scheme into play for disabled items.

Similar Messages

  • Poplist items not enabled for creating new records

    In a multirow block where you can create a new record by clicking an item in an empty record, you can't click a poplist item: they are not enabled until a record is created. I's not a big deal but it makes the user experience somewhat inconsistent and awkward especially when the poplist item is the first one in the record. You also can navigate to it by tabbing from the last item of the previous record, only the mouse click doesn't work.
    Any workarounds? This is Forms 10.1.2.3.0 and the behavior is the same using Jinitiator or Sun JRE.

    Hi,
    Okk, you will have to do two things. Create two trigger on block level on which you want to do your changes.
    1. First trigger. (PRE-UPDATE)
    In pre-update trigger u will have to write the complete insert statement into the same table with new req id. like
    DECLARE
    vReqNo DATA_TYPE;
    BEGIN
    SELECT MAX(REQ_ID)
    INTO vReqNo
    FROM your_table;
    INSERT INTO your_table
    (req_no, fields....)
    VALUES
    (vReqNo, :forms_values);
    END;
    2. Create 2nd trigger on block level (ON-UPDATE)
    write in this trigger
    NULL;
    for viewing the inserted record. What u have to do is in ON-UPDATE after null; create one timer NO_REAPEAT.
    and in timer u will have to set the block property to req_id = generated_req_id_from_pre_update_trigger and
    execute_query;
    hope it will work...
    -Ammad

  • Camera Raw editing not enabled

    I had to do a system restore only to find on return that
    I get a message saying  "Camera Raw editing is not enabled. Camera Raw
    editing requires that a qualiftyjing product has been launched at least once to enable this
    feature"
    I can open and work on my ORF's via the mini bridge but not the big one, very frustrating. Can anyone help please without me having to reinstall the whole of CS5?
    Thank you in advance,
    RonB

    Hi Curt,
    I did the uninstall, run the adobe script cleaner and re-install the whole CS5 suite. I even uninstalled all my other adobe software such as the flash player and the acrobat reader to make sure that there are no other parent application to run but I still get the same error message.
    I can also send to you the log of the adobe cleaner if needed. I encountered an error when I run it first but I followed the instructions to manually delete the folder in the path: C:\Program Files\Common Files\Adobe/OOBE
    Then after I deleted the folder I rerun the cleaner and found no other items related to the CS5 suite.
    After that, I re-installed the C5 suite, updated it to the current ones you have in the website. Then I restarted my computer. Then I opened PS first and from there I opened Bridge. When I try to open an image directly to camera raw from Bridge or copy the settings of an image it still gave the errir message indicated above.
    I'm sure I am not the only one encountering this problem thus it would really help a lot if we can find a resolution to this issue since the CS5 suite is really a good application, a cut above the rest, except for thisparticular issue.
    Thank you very much for your continued assistance.
    Regards,
    Kio

  • Delete button not enabled on Inbox Search List

    We are using CRM 2007 sp4.  In one of our Web Interaction Centers we want to allow certain end users the ability to delete certain transactions from the inbox search list.  At present when an item in the result list on the inbox [Component ICCMP_INBOX (Inbox Items)] the delete button is not enabled whilst the Edit, Display and Interact are all enabled.  how do we enable the delete button.
    Thanks in advance

    Hey corrines,
    Here is an article for you that will help you troubleshoot this issue with your keyboard:
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/TS1381
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • MenuActions not enabling in InDesign CS5.5

    Hi Scripters,
    InDesign CS4/CS5 is able to invoke menuActions using the below mentioned javascript code.
    var myMenuAction = app.menuActions.item("$ID/Go to Item");
    try {
        myMenuAction.invoke();
        }catch (err){exit();};
    However when I use the same code in InDesign CS5.5 version, we are encountering  "Action not enabled" error.
    Note: Please select the required XML element from the Structure Panel before running this code.
    Thanks & Regards
    csm_phil

    A related issue, perhaps.  I am trying to toggle Menu options via script, to set a user environment.  To make sure that Window->Tools is checked, this always works:
    try {
         var myTools = app.menuActions.item("Tools").checked;
         catch (e) {}
    if (myTools ==false) {
        try {
         app.menuActions.item("Tools").invoke();
         catch (e) {}
    But I also want to toggle things that lack a checkmark, such as Hide Hidden Characters.
    This returns different results depending on whether a document is open, and sometimes does not toggle the selection (Show/Hide) and returns different values for the .checked call.
    try {
         var myHidden = app.menuActions.item("Hide Hidden Characters").checked;
         catch (e) {alert("Error"); }
      if (myHidden ==false ) {
         try {
          app.menuActions.item("Hide Hidden Characters").invoke();
         catch(e) {}
    Sometimes this returns false, sometimes undefined.  I have done many iterations, also looking for ("Show Hidden Characters").checked
    The original code was written for InCopy.  Any menu item that is truly checked is easily controlled.  The ones that toggle Show/Hide are a mess in both InCopy and InDesign. 
    Am I using the wrong syntax?
    Dick Conrad

  • Commit operation not enabled after createinsert in detail table

    Hi Everybody,
    After clicking createinsert operation for detail table in master detail, i got unique contraint error from db.after rectifiying the data for newly created row..commit operation not enabled to save the data.
    Please find the code i used in my jsf.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelBox text="PanelBox2" id="pb2">
              <f:facet name="toolbar">
                <af:group id="g2">
                  <af:commandButton actionListener="#{bindings.Delete1.execute}"
                                    text="Delete1"
                                    disabled="#{!bindings.Delete1.enabled}"
                                    id="cb4"/>
                  <af:commandButton
                                    text="CreateInsert1"
                                    disabled="#{!bindings.CreateInsert1.enabled}"
                                    id="cb3"
                                    action="#{backingBeanScope.MyIndustryBean.cb3_action}"/>
                  <af:commandButton actionListener="#{bindings.Commit.execute}"
                                    text="Commit"
                                    disabled="#{!bindings.Commit.enabled}"
                                    id="cb5"/>
                  <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                    text="Rollback"
                                    disabled="#{!bindings.Rollback.enabled}"
                                    immediate="true" id="cb6">
                    <af:resetActionListener/>
                  </af:commandButton>
                </af:group>
              </f:facet>
              <af:table value="#{bindings.IndustryEOView1.collectionModel}"
                        var="row" rows="#{bindings.IndustryEOView1.rangeSize}"
                        emptyText="#{bindings.IndustryEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.IndustryEOView1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.IndustryEOView1Query.queryDescriptor}"
                        queryListener="#{bindings.IndustryEOView1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.IndustryEOView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.IndustryEOView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t1" width="448"
                        inlineStyle="height:193px;" partialTriggers="::cb3 ::cb4">
                <af:column sortProperty="IdDesc" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                           id="c2">
                  <af:inputText value="#{row.bindings.IdDesc.inputValue}"
                                label="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                                required="#{bindings.IndustryEOView1.hints.IdDesc.mandatory}"
                                columns="#{bindings.IndustryEOView1.hints.IdDesc.displayWidth}"
                                maximumLength="#{bindings.IndustryEOView1.hints.IdDesc.precision}"
                                shortDesc="#{bindings.IndustryEOView1.hints.IdDesc.tooltip}"
                                id="it2">
                    <f:validator binding="#{row.bindings.IdDesc.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="IdPlace" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                           id="c1">
                  <af:inputText value="#{row.bindings.IdPlace.inputValue}"
                                label="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                                required="#{bindings.IndustryEOView1.hints.IdPlace.mandatory}"
                                columns="#{bindings.IndustryEOView1.hints.IdPlace.displayWidth}"
                                maximumLength="#{bindings.IndustryEOView1.hints.IdPlace.precision}"
                                shortDesc="#{bindings.IndustryEOView1.hints.IdPlace.tooltip}"
                                id="it1">
                    <f:validator binding="#{row.bindings.IdPlace.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelBox>
            <af:panelBox text="PanelBox1" id="pb1">
              <f:facet name="toolbar">
                <af:group id="g1">
                  <af:commandButton actionListener="#{bindings.Delete.execute}"
                                    text="Delete"
                                    disabled="#{!bindings.Delete.enabled}"
                                    id="cb2"/>
                  <af:commandButton
                                    text="CreateInsert"
                                    disabled="#{!bindings.CreateInsert.enabled}"
                                    id="cb1"
                                    action="#{backingBeanScope.MyIndustryBean.cb1_action}"/>
                  <af:commandButton actionListener="#{bindings.Create.execute}"
                                    text="Create"
                                    disabled="#{!bindings.Create.enabled}"
                                    id="cb7"/>
                </af:group>
              </f:facet>
              <af:table value="#{bindings.IndustryRatinEOView1.collectionModel}"
                        var="row" rows="#{bindings.IndustryRatinEOView1.rangeSize}"
                        emptyText="#{bindings.IndustryRatinEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.IndustryRatinEOView1.rangeSize}"
                        rowBandingInterval="0"
                        filterModel="#{bindings.IndustryRatinEOView1Query.queryDescriptor}"
                        queryListener="#{bindings.IndustryRatinEOView1Query.processQuery}"
                        filterVisible="true" varStatus="vs"
                        selectedRowKeys="#{bindings.IndustryRatinEOView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.IndustryRatinEOView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t2"
                        partialTriggers="::t1 ::cb1 ::cb2 ::cb7">
                <af:column sortProperty="RatingId" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingId.label}"
                           id="c5">
                  <af:selectOneChoice value="#{row.bindings.RatingId.inputValue}"
                                      label="#{row.bindings.RatingId.label}"
                                      required="#{bindings.IndustryRatinEOView1.hints.RatingId.mandatory}"
                                      shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingId.tooltip}"
                                      id="soc2" autoSubmit="true">
                    <f:selectItems value="#{row.bindings.RatingId.items}" id="si2"/>
                  </af:selectOneChoice>
                </af:column>
                <af:column sortProperty="RatingSubId" filterable="true"
                           sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingSubId.label}"
                           id="c6" partialTriggers="soc2">
                  <af:selectOneChoice value="#{row.bindings.RatingSubId.inputValue}"
                                      label="#{row.bindings.RatingSubId.label}"
                                      required="#{bindings.IndustryRatinEOView1.hints.RatingSubId.mandatory}"
                                      shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingSubId.tooltip}"
                                      id="soc1" partialTriggers="soc2">
                    <f:selectItems value="#{row.bindings.RatingSubId.items}"
                                   id="si1"/>
                  </af:selectOneChoice>
                </af:column>
                <af:column sortProperty="Place" filterable="true" sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                           id="c4">
                  <af:inputText value="#{row.bindings.Place.inputValue}"
                                label="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                                required="#{bindings.IndustryRatinEOView1.hints.Place.mandatory}"
                                columns="#{bindings.IndustryRatinEOView1.hints.Place.displayWidth}"
                                maximumLength="#{bindings.IndustryRatinEOView1.hints.Place.precision}"
                                shortDesc="#{bindings.IndustryRatinEOView1.hints.Place.tooltip}"
                                id="it3">
                    <f:validator binding="#{row.bindings.Place.validator}"/>
                  </af:inputText>
                </af:column>
                <af:column sortProperty="RatingDesc" filterable="true"
                           sortable="true"
                           headerText="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                           id="c3">
                  <af:inputText value="#{row.bindings.RatingDesc.inputValue}"
                                label="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                                required="#{bindings.IndustryRatinEOView1.hints.RatingDesc.mandatory}"
                                columns="#{bindings.IndustryRatinEOView1.hints.RatingDesc.displayWidth}"
                                maximumLength="#{bindings.IndustryRatinEOView1.hints.RatingDesc.precision}"
                                shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingDesc.tooltip}"
                                id="it4">
                    <f:validator binding="#{row.bindings.RatingDesc.validator}"/>
                  </af:inputText>
                </af:column>
              </af:table>
            </af:panelBox>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

    Hi,
    Need to set partialSubmit true for CreateInsert and partialTrigger attribute for Commit button(Select Createinsert button for partialTrigger )

  • Check Information not enabled in FB03

    Hi,
    Check information in the environment is not enabled to view the check details in the T.Code FB03. Where in the GL account line item display (FS10N), it is showing the check details.
    Can anyone guide me on this.
    Regards
    Sunanda

    hi ,
    Kindly note that in FS10N only payment method and correpsonding document is displayed in the line item report but check information include check nuymber ,depository bank .Further FB03 is display of payment document it will display the payment methiod for display of check informationFCH1

  • Enabling item level security

    Hi,
    We are using portal version 3.0.9. We are trying to implement security at the item level and have super-user rights. According to <http://portalstudio.oracle.com/help/sblgrapi.htm>, if you scroll all the way to the bottom it says that "You cannot enable item level security for items in the Portlet Repository content area." I am assuming that this Portlet Repository content area is referring to the Administer->Display Portlet Repository ->Seeded Providers -> Portal Content Area -> Content Areas
    The items that we want to secure are currently in the folder called "other providers" but I can also access the items from within the portal repository content areas.
    So far I have been specifying access to the page, the category, the folder, and the item, and when I log in as a view only user I still can see things that I shouldn't. Perhaps, it is because it is somehow still in the repository?
    I think that I am missing a step somewhere. I have cleared inherit privileges and enable item level security wherever I could find that option while editing. Has anyone successfully added security to even a folder?
    Thanks in advance.
    Best Regards,
    Lindsay

    Lindsay,
    I'm not sure if this is what you are looking for, but you can secure access to portlets that are shown in the portlet repository
    through the Access tab that is available when you "Edit" the portlet entry in the Edit Folder view of the Portlet repository.
    [ol]
    [li]Go to the portlet repository
    [li]Navigate to the appropriate folder
    [li]Edit the folder
    [li]Click on the Edit link beside the portlet of interest
    [li]Click on the Access tab
    [li]Turn on access control and specify privileges on the portlet.
    [ol]
    See if this is what you are looking for, or let me know if I'm off base.

  • Java Script Disable/Enable Items Problem

    Hi,
    I followed the directions to disable/enable items from http://www.oracle.com/technology/products/database/htmldb/howtos/htmldb_javascript_howto2.html#disable.
    And I'm getting an error.
    I have fields like :
    Issue Summary
    Issue Description
    Identified By
    Identified Date
    Status (Values: Open, On-Hold, In-Process, Closed)
    Priority
    Target Resolution Date
    Whenever the Status changes to 'In-Process' I would like to disable 'Issue Summary and Issue Description'.
    Both the fields (Issue Summary and Issue Description) are being disabled when the Status changed to 'In-Process'
    but when I click the 'Apply Changes' button I'm getting the error: 'Issue summary cannot be null.'
    I do have a Not Null validation on Issue Summary field, but I'm only updating the Status field.
    Following is the JavaScript:
    In the Page Attribute (HTML Header)
    <script language="JavaScript" type="text/javascript">
    <!--
    //htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    // This function takes in:
    // 1. A string expression to evaluate. For example:
    // 'document.getElementById(\'P125_STATUS\').value=InProcess'
    // Notice the quotes are escaped using a "\"
    // 2. One or more arguments which are item ID's as strings. For example:
    // ...,'P1_ENAME','P1_SAL'...);
    // Notice the ID's are the item names, NOT item labels
    function disFormItems(testString,P125_ISSUE_SUMMARY,P125_ISSUE_DESCRIPTION){
    theTest = eval(testString);
    if(theTest){
    for(var i=1;i<4;i++){
    if (arguments){
    disItem = document.getElementById(arguments[i]);
    // disItem.style.background = '#cccccc';
    disItem.disabled = true;
    else{
    for(var i=1;i<4;i++){
    if (arguments[i]){
    disItem = document.getElementById(arguments[i]);
    disItem.disabled = false;
    // disItem.style.background = '#ffffff';
    //-->
    </script>
    In the Footer:
    <script language="JavaScript1.1" type="text/javascript">
    disFormItems('document.getElementById(\'P125_STATUS\').value==\'In-Process\'','P125_ISSUE_SUMMARY','P125_ISSUE_DESCRIPTION');
    </script>
    In the Status field HTML Form Element Attributes:
    onChange="javascript:disFormItems('document.getElementById(\'P125_STATUS\').value == \'In-Process\'','P125_ISSUE_SUMMARY','P125_ISSUE_DESCRIPTION');"
    Can somebody let me know what's wrong?
    Any help is greatly appreciated.
    Thanks in advance

    FYI: I used the following JavaScript to make it work:
    In the Header Text
    function SetReadOnly()
    var status = document.forms[0].p_t09.value;
    if(status == 'In-Process')
    document.forms[0].p_t02.readOnly = true;
    document.forms[0].p_t03.readOnly = true;
    //-->
    In the Footer
    <script language="JavaScript1.1" type="text/javascript">
    SetReadOnly();
    </script>
    In the HTML Form Element Attributes
    onChange="javascript:SetReadOnly();"
    Thank you very much for your suggestion

  • Lot enabled items-counting

    Hi guys
    If item is lot controlled, cycle count entry form obliges user to enter lot number. When the number of lots for each item is many, user has to count items per lot and then enter the results per item per lot. It's a very time consuming process.
    Does anybody have any suggestion to count items only per item code(even if they are lot-controlled) and only in case of discrepancy enter the lot number?
    Any idea might help.
    Thanks

    thanks a lot, I think this will work very well...
    "No, I want it to be NOT ENABLED, but I want it to look like ENABLE. "
    Now that's a cruel trick to play on the users :)
    Seriously, I think you will have to have the item enabled, but with insert/update/query disallowed and keyboard navigable off. You may also need a 'PRE_TEXT_ITEM' containing 'RAISE FORM_TRIGGER_FAILURE'
    As I understand it, windows puts it's own colour scheme into play for disabled items.

  • Render  not-editable item

    Hi ,
    i use oracle forms 10g, win xp pack2 ..
    hi ,
    how to render not-editable item(its value unchanged) when i press a boutton ??
    Edited by: 979155 on 1 janv. 2013 16:27
    Edited by: 979155 on 1 janv. 2013 18:43

    so you have two options.
    you can disable the item:
    SET_ITEM_PROPERTY('YOUR_ITEM',ENABLED,PROPERTY_FALSE);or you can disable the navigation for that item (keyboard navigation):
    SET_ITEM_PROPERTY('YOUR_ITEM',NAVIGABLE,PROPERTY_FALSE);Hope this helps you :)
    Regards
    Carlos

  • Enable Item Check-Out

    In "Checking an item in and out" topic of help:To check in and check out an item, the Enable Item Check-Out attribute must be selected for the item.
    But I can not find the option of "Enable Item Check-Out".

    You should edit the item's properties and in the 'Secondary' tab you can find a checkbox for 'Enable Item Check-Out'.
    Thanks,
    Vanathi

  • Adobe Bridge will not show items in subfolder even when this option is checked.

    Adobe Bridge will not show items in subfolder even when this option is checked. It works on one computer but not the other-both working on the same system/ version of adobe cc.
    How can I fix this bug?

    Check to see what is different between setups.  You may want to reset prefences in the balky computer.

  • Can not add item to the shopping Cart with FireFox 8.0

    I can not add items to the shopping cart with Firefox 8.0. Switch to IE everything works then.

    Such details are stored in a cookie, so make sure that you do not block cookies on that site.
    *Tools > Page Info > Permissions
    You can inspect and manage the permissions for all domains on the <b>about:permissions</b> page via the location bar.
    *http://kb.mozillazine.org/Cookies
    *http://kb.mozillazine.org/Websites_report_cookies_are_disabled

  • Mercury CUDA not enabling when using NVIDIA GeForce GTX 285 on Apple Mac Pro after Mavericks install

    Been using the same setup since CS5 with the Mercury CUDA running perfectly. After recent upgrade of OS X to 10.9 Mercury CUDA is no longer available and only lets me run with the OpenGL or software options. Im using a NVIDIA GeForce GTX 285 for apple computers. Here are the results for the GPUSniffer program in the latest Premiere Pro 7.1.0 files. The LAST line make me chucle because it the first on the list of supported card in the "cuda_supported_cards.txt" file. Anybody else seen this?
    --- OpenGL Info ---
    Vendor: NVIDIA Corporation
    Renderer: NVIDIA GeForce GTX 285 OpenGL Engine
    OpenGL Version: 2.1 NVIDIA-8.18.27 310.40.05f01
    GLSL Version: 1.20
    Monitors: 1
    Monitor 0 properties -
       Size: (0, 0, 1920, 1080)
       Max texture size: 8192
       Supports non-power of two: 1
       Shaders 444: 1
       Shaders 422: 1
       Shaders 420: 1
    --- GPU Computation Info ---
    Found 1 devices supporting GPU computation.
    OpenCL Device 0 -
       Name: GeForce GTX 285
       Vendor: NVIDIA (Apple platform)
       Capability: 1.2
       Driver: 1
       Total Video Memory: 1024MB
       * Not enabled by default because it did not match the named list of cards.

    found a link from a couple of days ago on a creative cow forum post one of the poster saying they are from adobe stating this
    Re: Mercury Playback Engine MacPro
    by Peter Garaway on Nov 12, 2013 at 9:49:16 am
    Hi Wendell,
    Sorry for the inconvenience. NVIDIA is currently working on drivers that support CUDA on Mavericks 10.9 with some of the older NVIDIA cards such as the GTX 285 and the Quadro 4800.
    For others interested, the Quadro 4000, K5000 and GTX 680 ect... work with CUDA in 10.9.
    Best,
    Peter Garaway
    Adobe
    Premiere Pro
    I have latest CUDA drivers, so i guess i am just waiting till a proper update that have the fixes to support my card.

Maybe you are looking for

  • Wacom Tablet Mapping Bug Only in Photoshop

    I am using a Graphire Wireless Wacom Tablet on a Windows 7 PC at work. I installed the most recent drivers, and it works flawlessly in a duel monitor setup, and I have no trouble mapping it however I would like. This is all great until I launch Adobe

  • Sub totals and Sort Text issue in ALV report

    Hi, I have requirement for list of Purchase orders. 1st. sort the list by vendor (This i did by using sort) 2nd. Vendor name should be display after sorting the lines. 3rd  should count the no lines which has mark 'X' in field ELIKZ and sum the total

  • Flash button play over sound in both over and down states?

    I have created a button and set a sound on it for the over state. The sound plays correctly when the button enters the over state, but it plays again when the button enters the down state. Here's what I did as a test: In an empty Flash9/ActionScript3

  • AVCHD editing with CS4 works fine for me

    I saw a couple of threads discussing AVCHD with CS4. I was waiting quite a long time for Premiere Pro CS4 - tried some other applications in the meantime with no success - but now I can say it was worth waiting. I have a Quad Core Intel 2,4 GHz, 8 GB

  • Need to adjust this thumbnail gallery

    Trying to figure this out. I am trying to load the images that are being displayed into a scroll pane. HEre is where you can download the source for the file. http://www.kirupa.com/forum/attachment.php?attachmentid=30984&d=1132576428 I have tried usi