Sustainable Rectangle for Region Selection In Charts

There is a built in feature in Charts which can be used to select items by mouseselected area ,even multiple selection can be made.
But my requirement is that  i want that selected region which is shown as a transparent rectangle to exist even after mouse button is released.
So that a rectangle is shown and inside that selected items are highlighted. I am not sure if there is any direct way [ to make that selected region a RECT].
currently i am trying to  draw rectangle with graphics.drawrect after getting co-ordinates on mouse Down an Up events. but am not able to add it to chart.
If Anyone has done or know ,please let me know the suitable way.
thnkx n REgards,
Prad.

Prad, there's an example here that shows something similar to what you are trying to do:
http://demo.quietlyscheming.com/ChartSampler/app.html
Under Customization, look at the Annotation example. You can combine the logic from this with your selection logic to make a persistent rectangle of selected chart items.
hth,
matt horn
flex docs

Similar Messages

  • How to make the Region and Language | Location | Current Location selected by "country or region" selection

    Hi,
    I have built a Windows Embedded Standard 7 image that includes multiple language packs for the countries that we support.  When I sysprep this image and reboot, I am prompted for my language (a screen appears with many selections like "My language
    is English").  Once I select my language and select next, I am prompted for "Country or Region", Currency and Keyboard.  For some unknown reason the "Country or Region" selection only affects the setting under "Region
    and Language" | Administrative | "non-Unicode programs", it does not affect the setting setting under "Region and Language" | Location | "Current Location". 
    Is there a way to modify my image such that the "Country or Region" selection is used for the location setting?
    Thanks,
    Brent

    Hi,
    You can follow the content of these link below to set system location during Windows Deployment:
    Configure International Settings in Windows:
    https://technet.microsoft.com/en-us/library/hh825705.aspx
    Regional settings default to English when deploying a virtual machine using a template on System Center 2012 Virtual Machine Manager:
    https://support.microsoft.com/en-us/kb/2709539
    Windows Deployment sample OOBE.xml file:
    https://technet.microsoft.com/en-us/library/dn621901.aspx
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • ExportFile for multiple selection

    CS5.5 - Javascript, I would like to know the exportFile method for multiple selection, for example if i have selected 4 rectangles and want to export these four objects as single jpg without grouping it. Thanks in advance.

    Hi,
    If your recs are inside a group already a possible solution is to:
    duplicate them - group - export - remove.
    Assuming recs are selected:
    var
              mDoc = app.activeDocument,
              mFile = File("~/Desktop/test1.jpg"),
              len = app.selection.length,
              tempGroup = [], mTarget;
    while (len-->0) {
              tempGroup.push( app.selection[len].duplicate() );
    mTarget = mDoc.groups.add( tempGroup );
    mTarget.exportFile(ExportFormat.JPG, mFile);
    mTarget.remove();
    Assuming a group is selected and each rec child is a target:
    var
        mDoc = app.activeDocument,
        mFile = File("~/Desktop/test2.jpg"),
        mTarget = mDoc.groups.add(app.selection[0].rectangles.everyItem().duplicate());
    mTarget.exportFile(ExportFormat.JPG, mFile);
    mTarget.remove();
    Jarek

  • For all the Illustrator chart gurus

    I work in the financial industry and I have to add data labels to all bars that appear in my performance graphs (see http://fundinvestor.calamos.com/ClosedEndFunds/CEFund.aspx?name=CHI under the "Performance" tab as an example). What's a way to do this without keying these numbers in per data point? I saw there's this technique that Adobe offers for column totals: http://livedocs.adobe.com/en_US/Illustrator/13.0/help.html?content=WS714a382cdf7d304e7e07d 0100196cbc5f-619e.html but that's not working. What am I doing wrong? Adding data labels to bars is ridiculously simple in Excel, why can't I find the way to do it easily in Illustrator?

    Not a guru, but that link does explain it, in all its relative rube goldberginess.
    draw a rectangle for the column, color it etc; using the text tool, type % and then 0 followed by a digit that represents how many numbers you wish to appear after the decimal (%03 would get you 4.123 for instance); format the text as you will; place the text where you want it relative to the rectangle; group the rectangle and the text; select design under object>graph; make new design.
    make graph; enter data; close data window; select graph; under object>graph>column select column design and column type (I like sliding the best)
    You can color individual columns using direct select tool.
    Excel probably works better

  • How to make a rectangle around activeDocument.selection?

    Hi,everyone!
    Recently I met a awful problem. I want to make a rectangle around current selection, but Not success.
    Could you help me or give some clues? Thanks!

    Try the following code.
    Cheers Daniel
    boundingbox();
    function boundingbox()
        // zet nulpunt linksonder
        app.activeDocument.pageOrigin = Array(0,0);
        app.activeDocument.rulerOrigin = Array(0,0);
        // set variable
        var breedte = app.activeDocument.width;
        var hoogte = app.activeDocument.height;
        var doc = app.activeDocument;
        // omrekenfactor
        var omf = 2.834645;
        // maak lijnkleur aan
        var newRGBColor = new RGBColor();
        newRGBColor.red = 0;
        newRGBColor.green = 255;
        newRGBColor.blue = 0;
        var black = new GrayColor();
        black.gray = 100;
        var layercheck = 0;
        var targetDocument = app.activeDocument;
        var layerCount = targetDocument.layers.length;
        var a=1;
        for (var i=1 ; i < 2; i++) {
            if (a==1){var txt = ''; var layname = 'BB';};
            var layercheck = 0;
            for (u = layerCount -1; u >= 0; u--){
                targetLayer = targetDocument.layers[u];
                var layerName = new String (targetLayer.name);
                    if (layerName.indexOf(layname) == 0){
                    targetDocument.layers[u].visible= true;
                    targetDocument.layers[u].locked= false;
                    var layercheck = 1;
            if (layercheck == 0){
                newlayer = documents[0].layers.add();
                newlayer.name = (layname);
                newlayer.color = newRGBColor;   
        alignType = 'top';
        mySelection = activeDocument.selection;
            if (mySelection.length > 0) {
                anchorBounds = getPosition(mySelection[0]);
                var artLayer = doc.layers['BB'].groupItems.add();
                targetDocument.layers['BB'].preview = false;
                var breedte = bnds[2] - bnds[0];
                var hoogte = bnds[1] - bnds[3];
                var rect = artLayer.pathItems.rectangle ((bnds[1] + (20*omf)),(bnds[0] - (20*omf)), breedte + (40*omf), hoogte + (40*omf));
                rect.filled = false;
                rect.stroked = false;
            } else {
                anchorBounds = getDocPosition();
                var doc = app.activeDocument;
                var omtrekartwork = app.activeDocument.geometricBounds;
                var leftartwork = omtrekartwork[0];
                var topartwork = omtrekartwork[1];
                var rightartwork = omtrekartwork[2];
                var bottomartwork = omtrekartwork[3];
                var origin = doc.rulerOrigin;
                var leftpage    = -origin[0];
                var toppage    = -origin[1] + doc.height;
                var rightpage    = -origin[0] + doc.width;
                var bottompage    = -origin[1];
                var centerxpage    = -origin[0] + doc.width/2;
                var centerypage    = -origin[1] + doc.height/2;
                var bleedleft = leftpage - leftartwork;
                var bleedright = rightartwork - rightpage;
                var bleedtop = topartwork - toppage;
                var bleedbottom = bottompage - bottomartwork;
                var breedteartwork = rightpage - leftpage;
                var hoogteartwork = toppage - bottompage;
                if (bleedleft <= 0 && bleedright <= 0 && bleedtop <= 0 && bleedbottom <=0){
                        var artLayer = doc.layers['BB'].groupItems.add();
                        targetDocument.layers['BB'].preview = false;
                        var rect = artLayer.pathItems.rectangle ((toppage + (20*omf)),(leftpage - (20*omf)), (breedteartwork + (40*omf)), (hoogteartwork + (40*omf)));
                        rect.filled = false;
                        rect.stroked = false;
                } else {
                        if    (bleedleft >= bleedright){
                            var bleedx = bleedleft + (20*omf);
                        } else {
                            var bleedx = bleedright + (20*omf);
                        if    (bleedbottom >= bleedtop){
                            var bleedy = bleedbottom + (20*omf);
                        } else {
                            var bleedy = bleedtop + (20*omf);
                        var artLayer = doc.layers['BB'].groupItems.add();
                        targetDocument.layers['BB'].preview = false;
                        var rect = artLayer.pathItems.rectangle ((toppage + bleedy),(leftpage - bleedx), (breedteartwork + (2*bleedx)), (hoogteartwork + (2*bleedy)));
                        rect.filled = false;
                        rect.stroked = false;
    function getBounds(obj) {
        var vbounds = new Array();
        if( obj.typename == 'TextFrame' ) {
            objcopy=obj.duplicate().createOutline();
            vbounds = objcopy.visibleBounds;
            objcopy.remove();
        else if( (obj.typename == 'GroupItem') && !obj.clipped ) {
            vbounds = getBounds(obj.pageItems[0]);
            for( n=1; n<obj.pageItems.length; n++  ) {
                vgb = getBounds(obj.pageItems[n]);
                if( vbounds[0] > vgb[0] ) vbounds[0] = vgb[0];
                if( vbounds[1] < vgb[1] ) vbounds[1] = vgb[1];
                if( vbounds[2] < vgb[2] ) vbounds[2] = vgb[2];
                if( vbounds[3] > vgb[3] ) vbounds[3] = vgb[3];
        else if( (obj.typename == 'GroupItem') && obj.clipped && (obj.pageItems.length > 1) ) {
            vbounds = getBounds(obj.pageItems[0]);
            cvgb = getBounds(obj.pageItems[1]);
            objleft = cvgb[0];
            objtop = cvgb[1];
            objright = cvgb[2];
            objbottom = cvgb[3];
            obj.pageItems[0].stroked ? so = 0 : so = 1;
            for( n=so; n<obj.pageItems.length; n++ ) {
                cvgb = getBounds(obj.pageItems[n]);
                if( objleft > cvgb[0] ) objleft = cvgb[0];
                if( objtop < cvgb[1] ) objtop = cvgb[1];
                if( objright < (cvgb[2]) ) objright = cvgb[2];
                if( objbottom > (cvgb[3]) ) objbottom = cvgb[3];
            if( vbounds[0] < objleft ) vbounds[0] = objleft;
            if( vbounds[1] > objtop ) vbounds[1] = objtop;
            if( vbounds[2] > objright ) vbounds[2] = objright;
            if( vbounds[3] < objbottom ) vbounds[3] = objbottom;
        else {
            vbounds = obj.visibleBounds;
        return vbounds;
    function getPosition(obj) {
        var b = new Array();
        bnds = getBounds(obj);
        b['left']    = bnds[0];
        b['top']    = bnds[1];
        b['right']    = bnds[2];
        b['bottom']    = bnds[3];
        b['centerX']    = bnds[0] + (bnds[2]-bnds[0])/2;
        b['centerY']    = bnds[1] - (bnds[1]-bnds[3])/2;
        return b;
    function getDocPosition() {
        var b = new Array();
        doc = activeDocument;
        var origin = doc.rulerOrigin;
        b['left']    = -origin[0];
        b['top']    = -origin[1] + doc.height;
        b['right']    = -origin[0] + doc.width;
        b['bottom']    = -origin[1];
        b['centerX']    = -origin[0] + doc.width/2;
        b['centerY']    = -origin[1] + doc.height/2;
        return b;

  • Scripting Background color for DDlist selections

    Hello,
    I'm working on a form and am attempting to script a change in background color. I've done some scripting before, but I'm a fairly new user of LiveCycle Designer.
    I have a drop-down list in my form.  The selections made in the drop-down form correspond to a list of procedures for that selection - I have each of these "check lists" bordered by a rectangle object type.
    I would like to make it so that when a certain selection is made, the corresponding rectangle object changes it's fill color to gray (RGB 153,153,153), so that the procedures are easily identified.
    I've read several forum listings for similar procedures, but I must be missing something in my script - because it's not working.
    A better example of what I'm trying to do:
    When I choose "Duplicate Payment" from the "Remediation Reason" drop down list, I want the corresponding rectangle (Object name "DupPmt") to change color to gray, so it appears that the entire list of procedures for "Duplicate Payments" is shaded.
    I would like this change for each of the different choices in the drop down list.
    I attempted to post alink to a sample of my form, but I'm unable to log in to Acrobat.com (it keeps giving me an unexpected error after I log in).
    Can anyone help me with this, please?
    Thanks!

    Niall - thank you for your help.
    I'm still in need of help, as I haven't quite got it figured out yet.
    I reviewed another forum posting of yours that gave a user a more complete scripting, and I hope that you can do the same for me.
    That posting was as follows:
    You can change the background colour at runtime with this script in the exit event:
    var vName = this.somExpression;
    var fieldObj = xfa.resolveNode(vName + ".ui.#choiceList.border.fill.color");
    if (this.rawValue == "January") {
         fieldObj.value = "255,255,225";
    else if (this.rawValue == "February") {
         fieldObj.value = "255,225,225";
    else if (this.rawValue == "March") {
         fieldObj.value = "225,225,255";
    else {
         fieldObj.value = "255,255,255";
    /* Check the type of object and change the .ui reference:
         Date field =      #dateTimeEdit 
         Dropdown =      #choiceList 
         Checkbox =      #checkButton 
         Text field =      #textEdit 
         Numeric field =     #numericEdit
    I think this is similar to what I want - except that I want to run it on a change event and I'm trying to make a selection in the drop down list object that will change the color in the rectangle object.
    Here's what I have, but it didn't work when I previewed it:
    <
    event activity="change" name="event__change"><
    script contentType="application/x-javascript">if (this.rawValue == "Duplicate Payment"){Rectangle1.value.rectangle.fill.color.value = "153,153,153"; }
    </
    script></
    event>
    I'm at a pretty low beginner level for javascript, so I'd appreciate if anyone can give me a more complete example.
    Thanks!

  • Dimension selection on Chart

    Hello Experts,
    I am new to Design Studio and trying out few things to get acquainted with the tool. I have a query regarding the dimension selection on chart component in Design Studio.
    e.g. I added a data source DS_1 with State, City and Store in Rows and Revenue in Columns in Initial Data View. Now I put the Column chart component on the canvas and when I assigned DS_1 to chart it shows State, City and Store everything on the same chart whereas I wanted to show only State wise Revenue on it. Is there anyway I can select dimensions to be shown on the chart? Only way I am aware of till now is to change the Initial Data View of data source DS_1. But that means if I have multiple charts on dashboard, I need to create separate data sources for each?
    Please let me know.
    Regards,
    Abhijit

    Abhijit,
    You will have to create multiple data sources in this case and use techniques mentioned in the Section 3 of the blog below to optimize performance.
    Optimize the performance of your SAP BusinessObjects Design Studio solutions – tips and tricks
    Also note that DS loads data sources sequentially and not parallel, so the more data sources you have that will impact the performance.
    Deepu

  • Y axis max ignored for horizontal stacked bar chart (SVG)

    G'day,
    I'm using the standard SVG horizontal stacked bar chart (multi-series). I have set the Y axis maximum value but it is ignored - bars are plotted to their maximum height.
    I've had no such problem with vertical stacked bar charts.
    We're running v2.2.0.00.32.
    Is this a known bug?
    Regards,
    Chris.

    I don't understand why you are soying it is not possible.
    Actually I think it is and quite easily but maybe i missunderstand the question.
    But anyway, here is what I would do:
    In the spreadsheet, you can calculate the percentage of each status per project:
         Completed     Pending     Partially completed     Not Started
    Project 1     78.10%     6.46%     10.51%     4.93%
    Project 2     51.01%     2.62%     39.21%     7.15%
    And then select these data for the stacked bar chart. Here you get the graph you are looking for.
    Oli

  • Ghost image for multiple selection in JTree while drag and drop.

    I am unable to create a Ghost image for drag and drop with in the JTree for multiple selection, i got some examples but all are for single selection ,
    Idea of creating buffered image is good , but unable to create it for multiple selection , tried a lot but got weird results.... can any body give me any clue about this , if got any example that will be fantastic.
    Thanks & Regards
    Sandeep Mandori

    sandeep_mandori wrote:
    I am unable to create a Ghost image for drag and drop with in the JTree for multiple selection, i got some examples but all are for single selection ,
    Idea of creating buffered image is good , but unable to create it for multiple selection , tried a lot but got weird results.... can any body give me any clue about this , if got any example that will be fantastic.
    Thanks & Regards
    Sandeep MandoriTry this:
        private TreePath[] dragPath;
        private BufferedImage[] image;
        private void createDragImage(JTree tree) {
            if (dragPath != null) {
                try {
                    image = new BufferedImage[dragPath.length];
                    for (int i = 0; i < dragPath.length; i++) {
                        Rectangle pathBounds = tree.getPathBounds(dragPath);
    TreeCellRenderer r = tree.getCellRenderer();
    DefaultTreeModel m = (DefaultTreeModel)tree.getModel();
    boolean nIsLeaf = m.isLeaf(dragPath[i].getLastPathComponent());
    MutableTreeNode draggedNode = (MutableTreeNode) dragPath[i].getLastPathComponent();
    JComponent lbl = (JComponent)r.getTreeCellRendererComponent(tree, draggedNode, false ,
    tree.isExpanded(dragPath[i]),nIsLeaf, 0,false);
    lbl.setBounds(pathBounds);
    BufferedImage img = new BufferedImage(lbl.getWidth(), lbl.getHeight(),
    BufferedImage.TYPE_INT_ARGB_PRE);
    Graphics2D graphics = img.createGraphics();
    graphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.5f));
    lbl.setOpaque(false);
    lbl.paint(graphics);
    graphics.dispose();
    image[i] = img;
    } catch (RuntimeException re) {}

  • Pse 13 keeps asking for region

    Photoshop elements 13 keeps asking for region. Tried opening as administrator , running editor and organizer separately, added reg key and most things on other forums. Win 7 32bit

    Moving this discussion to the Photoshop Elements forum.
    Kevb65767276 have you tried making the region selection in a newly created local administrator account?  You can find additional details on how to set up a new local administrator account at Log in using built in-administrator | Create local administrator account | Windows 7, 8, Vista.

  • GAMECENTER DOES NOT CONTAIN BRASIL OPTION ON REGION SELECT

    WHY BRASIL IS NOT AN OPTION ON THE GAMECENTER IN REGION SELECT ?

    Lawrenz wrote:
    One of the reasons as to why I am not a GREAT fan of Itunes; their products (apps, and etc.) are limited to certain regions, like U.S.A [>:(]. I find this to be a somewhat stupid thing to do, as I believe that apps should be distributed worldwide, not some focused in one country, while excluding others....
    Then you need to address this with the rights holders. Apple can only sell what and where the content rights holders will agree to let them. In the U.S., for example, there are some Canadian recording artists I can't access because they are only available on the Canadian iTunes Store. and the BBC, as another example, only offers it's player app to residents of the U.K. So, not only os Brazil not being singles out, but other companies have similar polices.

  • Suggest: FM Broadcasting region selections in China Mainland (about Muvo N2

    AS we know, the FM Broadcasting region selections of Creative MP3 Players are: International and Japan. International Region is FM 87.5-08.0 MHz, Japan Region is FM 75.0-90.0 MHz?
    I have a Muvo N200 mp3 player, and the firmare version is .20.04. If I want to listen "Music Radio" station at GuangZhou in GuangDong Provinve of China, I must change the language to Japanese, then select Japan FM region, and tune to 87.4 MHz. Oh, it's terrible!
    In China Mainland, the public FM Broadcasting uses 87.0-08.0 MHz, and campus FM Broadcasting uses 76.0-87.0 MHz. Campus FM Broadcasting is used in college and uni'versity. YES, it's different with many countries.
    So, I strong Creative update the firmware to let China Mainland customers can listen FM Broadcasting that uses less than 87.5MHz. At least, in Chinese language mode of mp3 player, let us can choose "Japan Region". Certainly the bset way is change "Japan Region" to "Extended Region", and this region is not 75.0-90.0 MHz but 75.0-08.0 MHz.
    In fact, many mp3 player producers have made this default.
    I expect Creative can do this, too.

    Today a.m., I sent a customer support request to Creative Labs. Then at p.m., Creative Labs Asia Customer Support Services have answered it. :-)
    This is the answer :
    Thank you for your valuable feedback.
    As regard to your request, what we can assist you is to feedback the
    information to the relevant development department. As such it will be
    up to the development team to determine if it is needed to make such
    changes. If this is possible then, perhaps they may be able to implement
    in the firmware update.
    We do not have information on whether this request will be implemented.
    In case if you need any clarification, please do not hesitate to contact
    us. Thank you.

  • Regions selection continues to come up every time a disc is inserted into computer

    I have an old Mac A1185 that I am trying to fix. The DVD player seems to have a mind of its own. Every time a disc is inserted into the drive the 'region' selection appears - I have selected the appropriate region and then the DVD player closes. Is there a patch or something i would be able to use to stop this from occurring?

    Try googling to see what are the available softwares for burning DVDs apart from Nero. You can also post in AUS(Anything Under the Sun) Forum, since many members who are using different DVD writers can give you better suggestions than me .

  • How To... Change the Data Type for a SELECT-OPTIONS at run time.

    Hello,
    I am trying to restrict the values available for entry into a SELECT-OPTIONS at run time depending on user input.
    The logic is as follows. The user has two input fields. A PARAMETER field which has the type RSDIOBJNM and allows them to choose an InfoObject. And the user has a SELECT-OPTIONS field to allow them to select the Characteristic values for that InfoObject.
    I would like the following example to be possible:
    The user enters 0MATERIAL into the PARAMETER. When the user clicks on the SELECT-OPTIONS control code will derive a list of possible options the user can enter in the SELECT-OPTIONS. In this case only values found in the master data or at least no values greater than 18 characters.
    I have looked at the following function module SELECT_OPTIONS_RESTRICT and this do not appear to be helpful as they only restrict on the signs allowed for the values (unless I misunderstand, it is a complex function module!).
    The code I have so far is (thus the user enters a InfoObject into p_char1 and the select options so_char1 should only accept active values of that InfoObject):
    declaration of variables for user interface
      DATA c_char(32) TYPE c.
    declaration of count variable
      DATA i_count TYPE i.
    declaration of user interface
      SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.
        PARAMETERS: p_ipack TYPE RSLOGDPID.
      SELECTION-SCREEN END OF BLOCK a1.
      SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-002.
        PARAMETERS: p_char1 TYPE RSDIOBJNM.
        SELECT-OPTIONS: so_char1  for c_char NO INTERVALS.
        PARAMETERS: p_char2 TYPE RSDIOBJNM.
        SELECT-OPTIONS: so_char2  for c_char NO INTERVALS.
        PARAMETERS: p_char3 TYPE RSDIOBJNM.
        SELECT-OPTIONS: so_char3  for c_char NO INTERVALS.
      SELECTION-SCREEN END OF BLOCK b1.
    Is what I am trying to do possible???
    Thanks for any help. Ross.

    You really want to restrict possible values of a select-option based on another field, not change the length of type of the select-option field, right?
    Here is what you do:  Code a custom F4 value help for the select-option at event AT SELECTION-SCREEN ON VALUE REQUEST FOR..  The first thing you do here is read the value of the parameter field (p_ipack in your example).  You can use function module DYNP_VALUES_READ.  Based on this value, you can propose values for the select-option fields.  Note that the use can still enter whatever s(he) wishes in to the select-option field without pressing F4. In this case, you will have to code some input validations taking into account the value in the p_ipack field.

  • No data Exists for this selection in PSA.

    Hi Guys,
    I received an Error message with loading of 2lis_03_bf datasource..
    Error message when processing in the Business Warehouse
    Diagnosis
    An error occurred in the SAP BW when processing the data. The error is documented in an error message.
    System response
    A caller 01, 02 or equal to or greater than 20 contains an error meesage.
    Further analysis:
    The error message(s) was (were) sent by:
    PSA Table
    DETAILS Tab: Processing (data packet): Errors occurred
                       : Data Package 6 ( ? Records ) : Errors occurred
                       : Update PSA ( 0 Records posted ) : Errors occurred
                       : No data exists for this selection in PSA
    For DataPacket 6 (Records sent :21572 - Records Received : 0) 
    All other datapackets are updated fine with almost 10,00,000 records..Any help on this ,guys..
    Manythanks
    Arun

    Hi,
    While the load was in progress some one might have deleted the data in PSA or there might be a PSA deletion job running or there might be a PSA deletion chiain which includes this table. Check all these to find out how it got deleted.
    In order to load the data again you can do a reload and probably it works fine this time.
    Anup.

Maybe you are looking for

  • Can no longer sync with Outlook 2007

    Hi all, I recently updated the software for my iPhone 3G, and now I get the following error (partial): Error 1402. Setup cannot open the registry key HKEYLOCALMACHINE\SOFTWARE\Microsoft\Exchange\Client\Mac File Types. Verify that you have sufficient

  • How do i open pictures in Camera Raw Window?

    How do i open pictures in this window?

  • MDS WebSite error HttpWebRequest_WebException_RemoteServer] Arguments: NotFound

    Hi, This is getting extremely irritating. When I click on the Master Data Services (MDS)-> Entities tab or the 'Explorer' tab the error pops up, I spend more than a day now to fix the error 'httpWebRequest_webexception_RemoteServer' .  The non Silver

  • RMAN leaves database in mount state

    Hi, Since recently we are experiencing situation where RMAN leaves the database in mount state and manual open is necessary. I don't recall it happened before... (Linux RH ES3; 10gR2). Recovery Manager: Release 10.2.0.2.0 - Production on Sun May 27 1

  • KASKhmerScript - looking for direction

    Hello everyone, I've been unsuccessful in finding the proper header and code file that would produce the Khmer language in Acrobat. Has anyone solved adding the kASKhmerScript and if you have what header and code file(s) did you use? Thanks, Mike