Unable to drag drop from grid to tree

Hi,
I am ablel to drag but unable to drop to a grid.
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="initVars()">
<!--STEP 2 WRITE ACTION SCRIPT to populate data and perform action-->
<mx:Script>
<![CDATA[
    import mx.events.DropdownEvent;
    import mx.events.DragEvent;
import mx.collections.XMLListCollection;
import mx.controls.List;
import mx.events.DataGridEvent;
import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
[Bindable]public var selectedcareplan: XMLList;
[Bindable]public var selectedBCXML: XMLListCollection;
[Bindable]public var businesscentertype: String;
[Bindable]public var selectedBCPerformers: XMLList;
[Bindable]public var selectedPerformerDetail: XMLList;                  
[Bindable]public var originator: String;
[Bindable]public var service: String;
[Bindable]public var performer:String;
[Bindable]public var dataFeedxml:XML;
[Bindable]var careplans:XML ;
[Bindable]var selectedplanproblem:String;
[Bindable]var selectedplanname: String;
[Bindable]var selectedplanid:String;
[Bindable]var selectedplanresult: String;
[Bindable]var selectedplansummary:String;
[Bindable]var selectedplancomments:String;
          var xmltemplate: String = '';
<!--STEP 3 write a function to populate data-->
private function initVars():void
careplans = <careplanlist>
<careplan id = '1' name = 'plan name 1' result = 'Good Health' comments = 'Good' summary = 'Here isthe a summary'>
    <issue>
    this is a problem
    </issue>
        <steps>
        <step id ='11' action = 'action1' output = 'out' outcome = 'outcome1'/>
        <step id ='12' action = 'action2' output = 'out' outcome = 'outcome2'/>
        <step id ='13' action = 'action3' output = 'out' outcome = 'outcome3'/>
        <step id ='14' action = 'action4' output = 'out' outcome = 'outcome4'/>
        </steps>
</careplan>
<careplan id = '2' name = 'plan name 2' result = 'Good Health2' comments = 'Good' summary = 'Here isthe a summary'>
    <issue>
    this is a problem
    </issue>
        <steps>
        <step id ='21' action = 'action21' output = 'out21' outcome = 'outcome21'/>
        <step id ='22' action = 'action22' output = 'out22' outcome = 'outcome22'/>
        <step id ='23' action = 'action23' output = 'out23' outcome = 'outcome23'/>
        <step id ='24' action = 'action24' output = 'out24' outcome = 'outcome24'/>
        </steps>               
</careplan>                       
</careplanlist>;
//selectedBCXML = new XMLListCollection(selectedcareplan);
//tree1.dataProvider = selectedBCXML;
//Alert.show("Init Variables: Care plans = " + careplans, "Alert Box", Alert.OK);
private function ViewCarePlanDetail(event: Event):void
var careplanid: String;
careplanid =  XML(DataGrid(event.currentTarget).selectedItem).@id;
//            Alert.show("ViewCarePlanDetail = " + careplans, "Selected Care Plan", Alert.OK);
selectedcareplan= careplans.careplan.(@id ==careplanid);
Alert.show("ViewCarePlanDetail = " + selectedcareplan, "Selected Care Plan", Alert.OK);           
//selectedBCXML = new XMLListCollection(selectedcareplan);
selectedplanname = selectedcareplan.@name;
selectedplanproblem = selectedcareplan.issue;
selectedplanid = selectedcareplan.@id
selectedplanresult = selectedcareplan.@result
selectedplansummary = selectedcareplan.@summary
selectedplancomments = selectedcareplan.@comments
Alert.show("ViewCarePlanDetail = " + selectedplanname, "Selected Plan name", Alert.OK);
private function dragDropComplete(event: DragEvent):void
selectedBCXML = new XMLListCollection(selectedcareplan);
//tree1.dataProvider = selectedBCXML;
private function treeLabel(item:Object):String
var node:XML = XML(item);
if( node.localName() == "issue" )
  {return "Medical Issue: "+node.toString();}
if( node.localName() == "careplan" )
   return "careplan: " +node.@name;
if( node.localName() == "steps") return "steps:";
if (node.localName()=="step") return "[ step : " + node.@id +"    action:   " + node.@action + "    output:   " + node.@output +  "   outcome:   " + node.@outcome +" ]";
return null;
]]>
</mx:Script>
<!-- STEP 1- Create data grid with columns and tree view-->
<!-- to fill data grid columns with data, you need to bring in a DATA PROVIDER to provide data to columns-->
<mx:VBox width="100%" height="100%" paddingTop="0">           
<mx:Canvas width="100%" height="100%"   horizontalScrollPolicy="off"
    verticalScrollPolicy="off" cornerRadius="14" backgroundAlpha="0.28" backgroundColor="#C6ACAC" borderStyle="solid" borderColor="#EBF1F5" alpha="1.0">
<!--<mx:TextInput x="11" y="22" width="252" editable="false" text="{selectedBC}" color="#800000" borderStyle="inset" cornerRadius="20" fontSize="11" fontFamily="Arial" fontWeight="bold"/> -->
<!--dataProvider ="{careplans.careplan}"-->
<mx:DataGrid id = "bcs" x="10" y="83" height="96" width="663" 
      fontFamily="Arial" fontSize="11" color="#352525" itemClick="ViewCarePlanDetail(event);"
      editable="false" enabled="true" fontWeight="bold"  cornerRadius="10" dragEnabled="true"
      dataProvider ="{careplans.careplan}" >
    <mx:columns>
    <mx:DataGridColumn headerText="Plan Name" dataField= "@id"/>   
    <mx:DataGridColumn headerText="Plan Id" dataField="@name"/>
    <mx:DataGridColumn headerText="Result" dataField="@result"/>
    <mx:DataGridColumn headerText="Comments" dataField="@comments"/>
    <mx:DataGridColumn headerText="Summary" dataField="@summary"/>
    </mx:columns>
</mx:DataGrid>
<mx:Label x="10" y="55" text="Available care plans" width="240" fontSize="11" fontFamily="Arial" fontWeight="bold" color="#7D4343"/>
<!--dataProvider="{selectedBCXML}"-->
<mx:Tree id="tree1"  labelFunction="treeLabel" showRoot="true"  width="761" height="132"  x="10" y="348"
       alpha="0.87" borderThickness="2"  fontFamily="Arial" fontSize="11" color="#121213"  cornerRadius="6"
       fontWeight="bold" enabled="true" dropEnabled="true"  dragDrop="dragDropComplete(event);"
       dataProvider="{selectedBCXML}"/>
<mx:Label x="10" y="300" text="Selected Plan Details" width="192" fontSize="12" fontFamily="Arial" fontWeight="bold" color="#090808"/>
<mx:Label x="10" y="196" text="Care plan name" width="95"/>
<mx:Text x="115" y="196" width="135" text="{selectedplanname}" />
<mx:Label x="283" y="196" text="Problem/Issue" width="77"/>
<mx:Text x="400" y="196" width="140"  text="{selectedplanproblem}"/>
<mx:Label x="10" y="222" text="Plan ID"/>
<mx:Text x="115" y="222" width="135" text="{selectedplanid}" />
<mx:Label x="283" y="235" text="Result"/>
<mx:Text x="349" y="235" width="135" text="{selectedplanresult}" />
<mx:Label x="10" y="258" text="Comments"/>
<mx:Text x="100" y="258" width="150" text="{selectedplancomments}" />
<mx:Label x="283" y="276" text="Summary"/>
<mx:Text x="349" y="276" width="148" text="{selectedplansummary}" />
</mx:Canvas>
</mx:VBox>
</mx:Canvas>
<!-- end of STEP 1-->
Help?

Can anyone shed somelight into this problem please.

Similar Messages

  • :Drag Drop From Panel to Tree

    I have two panels in a page.  I am creating a Tree control dynamically and adding to a Panel1.  I have to drag an image from panel2 to the Tree on Panel1.
    I set the Tree property to accept the drop. When I drop the image on the Tree,  the DragDropComplete Event is not executing but the DragDropComplete Event of the Panel (Which is Tree parent container)  is executing. 
    The DragEnter event on Tree is executing but the DragDropComplete not executing. 
    How can I invoke the DragDropComplete event on Tree. Pl show some pointers. I appreciate your help.

    instead of dragComplete
         use dragDrop event
    and at the end wirte event.stopImmediatePropagation
    <Tree dragEnter="treeDragEnter(event)"   dragDrop="treeDragdrop(event)" />
    protected function treeDragEnter(event:DragEvent):void
         if(event.dragSource.hasFormat('items'))
              DragManager.acceptDragDrop(DataGrid(event.currentTarget));
    protected function treeDragdrop(event:DragEvent):void
         var items:Array = event.dragSource.dataForFormat("items") as Array;
         var str:String = new String(items[0]);var cols:Array = DG.columns;
         if(cols.indexOf(str)<0) {
         event.stopImmediatePropagation();

  • Drag & Drop from JTree (String) to JTextArea (Graphics2D)

    Hi everyone,
    I want to create a Drag & Drop from a JTree node to any location in a JTextArea. Upon dropping the node onto the JTextArea, I would want to draw a rectangle and the node name.
    I've created a custom transfer handler which allows the transferring of text from the tree node to the JTextArea.
    Any general ideas on how I can do that are wlecomed.

    I've managed to get hold of the JPanel via TransferHandler.TransferSupport.getComponent()
    the source seems a bit more tricky. I've tried this
    Transferable tr = support.getTransferable();
                   DataFlavor f = new DataFlavor();
                   f = new DataFlavor(MyTreeNode.class,"MyTreeNode");
                   try {
                        Object o = tr.getTransferData(f);...
    but the source does not provide a MyTreeNode instance, but something else (a String, I guess)
    how can I change this?

  • Drag & Drop from Outlook into SAP BDS (sales order, deliveries, etc.)

    Hello everyone,
    I have some problems with Email archiving between SAP ECC 6.0 and Outlook 2007. The overall scenario should look like:
    Outlook (drag&drop) --> SAP object like e. g. sales orders as Business Document --> third party archive.
    The problem we are facing starts with the false or maybe non existing drag & drop function for Outlook. The direct drag&drop from Outlook only creates a textline in SAPs Business Document. There ist no problem at all if we store the Email on the hard drive in .msg format and afterwards drag&drop it to the Business Document.
    Is there any way to skip the latching on the hard drive and communicate directly between  SAP and Outlook? Otherwise how do you handle this problem?
    Thank you.

    Is there no one else who got this problem?

  • New to muse doing kate tutorial, unable to drag anything from libary to page

    new to muse doing kate tutorial, unable to drag anything from libary to page
    cc getting started katies colur sample
    window user

    hi thank you for replying
    I can drag widget forms, menu
    I just can't drag anything from cc getting started katies

  • I am unable to drag songs from a shared music library between computers.  This was working until about a month ago.  I have updated to the newest versions of Itunes on both computers (a macbook and an older Toshiba satellite).  I have also rebooted both.

    I am unable to drage songs from a shared music library between computers.   This used to work perfectly until a month ago.   I have installed the newest version of Itunes on both computers and have rebooted them, but nothing happens when I try to drag a song to another playlist or another shared folder.  Any ideas how to fix this?   

    Have you:
    - Restore from backup. See:                                                
    iOS: Back up and restore your iOS device with iCloud or iTunes
      - Restore to factory settings/new iOS device.            
    If a PC
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8

  • Unable to drag & drop emails

    I've suddenly been unable to drag and drop emails from one inbox to another. For example, from my junk mailbox to the trash. This was the way I was doing it yesterday but after a update, unable to do so today.

    I have the same annoying issue. The open email is stuck in the middle of the page and I cant see 2 open emails at the same time. How many times did you need to restart to fix this please? Thanks

  • Drag&Drop from Lightroom to Premiere doesn't work! Programming an alternative?

    Unfortunally the is no working Drag&Drop ability to drag a videofile from the Lightroom Library into the Premiere Project View.
    (This Problem appears only on a Windows machine not on Mac)
    This is becaus if you send a (valid) filepath to "Adobe Premiere Pro.exe" as a parameter it doesn't do anything! Why that?!?!?
    It makes no difference if you drop a file on "Adobe Premiere Pro.exe" or if you use the windows command shell like "C:/...<path to premiere>.../Adobe Premiere Pro.exe" "myfile.avi"  , simply nothing happens - at least with Premiere Pro CS5...
    So the Idea is to build an Lightroom Plug-In, that opens an exe-file with the filepaths of the currently selected Viedeos from the Lightroom Library as parameter.
    The exe-file should pass the information to an opened Project in Premiere an load the Videos into the Project.
    With ExtendScript Tool i can get this behaviour with this code:
    var myFiles = ["C:\\01.avi, ..."];
    app.project.importFiles(myFiles);
    I don't think that the Premiere SDK will help me out, because with that I can only build Plug-Ins that work INSIDE Premiere. I need a Executable that can send information/files to Premiere from Outside. The only thing I can think of is to load the right dll-file and call the function() for importing files to Premiere (I think this is what ExtendScript Tool does ), but I don't know how to start, because nothing is documented about the dlls...
    Any Ideas

    EDIT:
    Ok, I identified the dll which is importing Video-Files to Premiere:  HSL.dll
    At my pc it is located in:
    "C:\Program Files\Adobe\Adobe Premiere Pro CS5\"
    The function that is called is named ImportFiles(...)
    That's the whole code, reverse engineered:
    HSL::ImportFiles
        std::vector <
                    std::basic_string <unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >,
                    std::allocator <std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > >
                    >
        const&,
        bool,
        bool,
        std::vector <
                    ASL::InterfaceRef<BE::IProjectItem, BE::IProjectItem>,
                    std::allocator<ASL::InterfaceRef<BE::IProjectItem, BE::IProjectItem> >
                    >&,
        std::vector <
                    std::pair<int, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > >,
                    std::allocator<std::pair<int, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > >
                    >&,
        ASL::InterfaceRef<BE::IProjectLoadStatus, BE::IProjectLoadStatus>&,
        DLG::ImportFromEDL::ImportFromEDLDialog*,
        std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const*,
        DLG::ImportFromEDL::ImportNewSequenceMediaParamsDialog*
    Can anybody "read" that , or anybody know how to get this working with c++?

  • Windows Storage Server 2008 - unzip with drag & drop from Windows 7 client fails

    Hello.
    As i asked this question in German and got no answer so i try it in English now.
    I have the following problem:
    We have a Windows SBS 2008, where we store our files. If somebody opens a ZIP-file on a network share from a Windows 7 Client (64 Bit) it is possible to drag & drop the content (multiple files) to a directory. So far everything works as expected.
    We now have an additional Windows Storage Server 2008 integrated in our domain (Buffalo Tera Station WS-QV8/R5), where we also store files. If somebody opens the same ZIP-file on a network share of this server from a Windows 7 Client and tries to drag &
    drop the content the following happens:
    1. only one file is extracted and to display the file a refresh of the explorer view is needed.
    2. when the drag & drop action is repeated a second file is extracted
    Not alle files are extracted and there is no error message or indication why this happens.
    The behaviour is reproducible from another Windows 7 Client (32 Bit).
    If we try to drag & drop the files from the ZIP-file on the Windows Storage Server network sahre to a directory on the SBS network share all files are extracted correctly.
    On the Windows Storage Server itself all files are extracted without problmems. Therefore it must be a problem with the combination of Windows Storage Server und Windows 7 Client accessing the files via network shares.
    Are there any ideas where this problem could be located? Has anybody the same phenomenon and maybe a solution for it?
    Thanks in advance
    Michael Pruss

    Hi Michael,
    Thank you for clarifying the issue for us.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Regards
    Kevin
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback
    on our support quality, please send your feedback here.
     

  • Drag&Drop from Browser to AIR App

    Hi there,
    i wonder how it is possible to drag an element from a flash
    page in my browser to an air app on my desktop. i've seen the
    showcase
    of the nickelodeon jigsaw game on adobe.com, but the videos
    looks kind of post-processed.
    do you have any tipps on how to enable flash/AIR
    drag&drop trespassing the browser borders?

    Thanks for your answer.
    i already tried something like this, but i still have
    problems with getting the newly created entity dragged. how can I
    position the new entity from my air app directly under the mouse
    cursor? so far i didn't find any screen mouse position functions or
    properties. If I use a fullscreen, always on top window with mostly
    transparent parts, I can't capture the mouse position using
    MOUSE_MOVE all the time. Besides, how can I change the focus from
    my browser to my air app? I already tried calling
    nativeWindow.orderToFront() and nativeWindow.activate(), but the
    focus doesn't change when I click the entity in my flash page.
    Maybe somebody knows an answer to this ...

  • Home Sharing between Mac & PC - Can't drag & drop from one to the other.

    I have a Mac & a PC. I turned on home sharing and it works well, except that I want to copy all of the music on the Mac over to the PC. With Home Sharing active, you should be able to drag & Drop, but I can't. I read the help article and it says that the computer icon of the remote computer that you are sharing from should be in the left pane under Shared in iTunes. I don't see this. I only see my library.
    Any suggestions?

    these reads may be helpful:one and two.
    JGG

  • Unable to Drag & Drop Files/Icons

    Suddenly I am unable to drag and drop icons/files. I can right-click/control-click on icons and files, but I cannot drag them anywhere.
    How did this happen? I wish I knew. All I can tell you is that I restarted my PowerBook, logged in, and -- bam. No more dragging and dropping.
    I've restarted the PBook. I've restarted the Finder numerous times. I've repaired permissions. I've verified the HD. Nothing has worked so far.
    Any ideas?
    Thanks in advance.

    OOPS, silly me!
    At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 5 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!

  • Issue with Drag&Drop between table and tree component

    I want to drag table rows and drop it on the tree node. I use following code to achieve this:
    <af:table value="#{bindings.pricingObjects.collectionModel}"
    var="row"
    rows="#{bindings.pricingObjects.rangeSize}"
    emptyText="#{bindings.pricingObjects.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.pricingObjects.rangeSize}"
    selectionListener="#{workspaceBean.onTableSelect}"
    rowBandingInterval="0" id="poTable"
    partialTriggers=":::csTree :::cbRefresh"
    columnStretching="column:c4"
    displayRow="selected"
    contentDelivery="immediate"
    clientComponent="true"
    binding="#{workspaceBean.table}"
    rowSelection="multiple">
    <af:dragSource actions="MOVE" defaultAction="MOVE" discriminant="rowmove"/>
    </af:table>
    <af:tree value="#{bindings.privateChangeSets.treeModel}"
    var="node" displayRow="selected"
    selectionListener="#{workspaceBean.onTreeSelect}"
    rowSelection="single" id="csTree"
    expandAllEnabled="false"
    binding="#{workspaceBean.tree}">
    <af:dropTarget dropListener="#{workspaceBean.dropListener}" actions="MOVE">
    <af:dataFlavor flavorClass="org.apache.myfaces.trinidad.model.RowKeySet"
    discriminant="rowmove"/>
    </af:dropTarget>
    </af:tree>
    With this code I am getting the data of dragged rows but I am not able to get the tree node where rows are dropped. Dropevent.getDropSite() always returns NULL.
    Strangely, I tried to use deprecated tags <af:collectionDragSource> and <af:collectionDropTarget> and everything works fine. Dropevent.getDropSite() returns me the correct rowkey of tree node.
    Any idea why am I not getting desired result with <af:dropTarget>?

    Hi,
    +" Please note that dropSite==null is a legal value for collection components. dropSite=null and DropOrientation==ON indicates that the drop has happened outside the data portion of the collection component and should be treated as a drop on the entire component Also note that dropSite==null and DropOrientation==AFTER indicates that the drop has happened on an empty collection component and the user intends to append the data."+
    http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e10684/oracle/adf/view/rich/event/DropEvent.html#getDropSite__
    List dropRowKey = (List) dropEvent.getDropSite();
            //if no dropsite then drop area was not a data area
            if(dropRowKey == null){
                return DnDAction.NONE;
            }Frank
    Edited by: Frank Nimphius on Feb 18, 2011 11:18 PM

  • Can't drag & drop from iPhoto into iMovie 10

    Am trying to add some photos from my iPhoto library into an iMovie 10 project.  I access the iPhoto library and the pictures show up, but when I try to drag/drop or add to the timeline, nothing happens.  The little hand shows up over the photo, and even the + sign, but when I try to move or add it, nothing happens.
    And, once I select one photo, it seems stuck until I deselect all. 
    Dragging of clips from the event library doesn't seem to be a problem.
    Any advice or help is appreciated.

    With a picture selected from the iPhot Library as it shows up in iMovie, if you select a photo by clicking on it once, then click the plus sign, what happens?

  • Drag drop from bridge to InDesign.

    I am having problems with getting drag drop to work from bridge to InDesign. I have made an extension that reads information from ouer dam and shows it in bridge. I wont to bee able to drag a node from that data from bridge(It shows fine in bridge with thumbs) to InDesign. I have enabled:
                   if(infosetName == "item" || infosetName == "all")
                        infoset.cacheData.status = "good";
                            if(!currentNode.isContainer())
                                infoset.canBeDragSource  = true;
                                infoset.canBeDropTarget  = true;
    in
            dbiModel.refreshInfoset = function(infosetName)
    And made
            dbiModel.addToDrag = function(pointerToOsDragObject)
                return true;
            dbiModel.wouldAcceptDrop = function(type, sources, osDragRef)
                return false;
    And are able to drag the node but other applications dosent accept it as valid.
    Whot am i missing?

    cynglas wrote:
    ... so I don't see why it couldn't do it directly from within ID through CTRL+D. The fact that it has never done it before is no reason why it couldn't or shouldn't be able to do it...
    ...... It would just mean that I wanted faster as well as  etter intergrated software.
    It has just never worked that way and I've never seen a request for it either.
    In the Control Panel you have got a Bridge Icon
    At the bottom of the document window you have the Browse in Bridge
    The Default Shortcut for Bridge is CTRL+ALT+o (CMD+OPT+o)
    In Edit>Keyboard Shortcuts under
    Product area : Panel Menus
    Layout Window Status: Reveal in Bridge --- [none defined]
    or
    Layout Window Status: Reveal in Mini Bridge --- [none defined]
    to add your own shortcut to Reveal in Bridge command
    But I just don't see a way to go "Place from Bridge"
    In fact - in all the years I've been on the forums I have never seen the request.
    However you can make feature requests here
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    And there's a feature request forum
    http://forums.adobe.com/community/indesign/indesign_feature_requests
    And in the end - someone might be able to script an option to go to Bridge for File>Place
    http://forums.adobe.com/community/indesign/indesign_scripting

Maybe you are looking for

  • How to install and configure WebLogic 10.3 to use 64-bit JDK?

    Hi, Is there a preferred/supported way to configure WebLogic to use the 64-bit JRockit that comes with JRockit Mission Control? I can't find any official documentation about how to configure WebLogic to use a 64-bit JDK. From other forum posts I can

  • My contacts will not be shown i icloud

    My contacts from my iphone will not be shown in icloud. I understand that it´s an installation problem, but I can´t understand how I will do. My contacts are in hotmail account, outlook. How do I get them to be shown in icloud?? Please help med someo

  • APEX_ITEM select_list is not working

    Hi, I am using the below query in my sql select statement . select htmldb_item.HIDDEN(1,ID) HIDDEN, APEX_ITEM.SELECT_LIST(49,DECODE("VERSION",NULL,'-Select-',"VERSION"),decode(get_lov_values(PROD_LEVEL_1),null,'not available',get_lov_values(PROD_LEVE

  • MDB / application deployment

              Hi,           I am using MDB (WLS6.1/ sp-3). The MDB further delegates the processing to stateless           session beans.           Consider the scenario           - Send messages to persistent Queues           - Stop weblogic server. (No

  • The iTunes Store is currently unavailable

    Just started having this issues on my 2nd Gen Apple TV since I bought South Park Season 10. Since then everytime I try to watch an episode of series (I own several seasons) I get the message "The iTunes Store is currently unavailable". I'm able to wa