I can't drag and drop text objects onto a report

now i cant seem to insert anything on to an existing report, i am very new to crystal and have searched a couple of forums, i will keep searching the forums, but if someone has a link or any advice that would be great, maybe its a setting i unknowingly have checked?

If you selected Read only option for the report. Change the option using :
File->Report options-> (un check "Read only")
If you are not able to drag fields on only sections. then go to section expert and if a particular section is selected as read only,then remove the read only option there.
I hope this may help you.
Regards,
Parsa.

Similar Messages

  • Can't drag and drop music to iphone5

    I updated to the latest Itunes, plugged my new Iphone5 in and "restore from previous Iphone back up"  It did it fine, then i went to manage music manually and  checked the boxes for all the artists I wanted on my new phone. Sync it to my phone and all seemed ok.  Prior to this I downloaded 250 songs off the cloud so I had some music while I updated my computer so I could run Itunes for Iphone5.  When I sync everything it doubled up the 250 songs that were on there.  then some worked and some just skipped over and went to the next song.  I want to delete the doubles off my phone and re-enstall the music which i can't do from Itunes and when i do it from my phone its gone on the phone but still on the "on this phone" in itunes.  I can't drag and drop any music onto my phone and when i go to "music" on my phone from itunes it says i have to erase all content and sync with this computer.  this is the only computer and only account it has ever seen.

    Tried that, I can get almost all my music except one album (the album I want).  I deleted it off my phone by swiping then hitting delete.  It does not show up on my phone but it does say that it is on my phone when i plug into itunes.  I can't drag and drop it, I checked the box for that album and it didn't transfer.  No idea what to do.  How can I even just use Itunes to delete music off my phone?  Used to be able to highlight and then right click and then delete, not anymore. 

  • How do I create a text style in CC libraries? Every time I drag and drop text into library form Photoshop or illustrator it turns it into a graphic.

    How do I create a text style in CC libraries? Every time I drag and drop text into library form Photoshop or illustrator it turns it into a graphic.
    If I select the text layer and click the text style button in the library it just creates a new text style for Myriad Pro 12pt - I'm not using that anywhere in my document.
    Can anyone help? Seems like a bug to me as I'm trying what the video tutorials are saying.
    Thanks

    I realize AI is an illustration program.
    Do you realize it is an object-based vector-based program? Do you know the difference between raster-based and vector-based content?
    My question seems to be all over the forum but no one has been able to answer other than exporting to these file formats, which make text look awful and of no use....
    And yet everyone else in the world makes proper web images every day using a plethora of programs, including these...go figure.
    Am I missing something?
    Yep. Pretty much.
    Hello Adobe! People use transparency on website logos.
    Hello, cocteau! What you're calling "transparency" is inherent to object-based vector artwork. But web browsers don't support object-based vector artwork, except via file formats like Flash and SVG, or by viewing as a PDF in a plug-in version of Reader. Raster imaging in general only supports "transparency" by either indexing a specific color (i.e.; "don't display this color", as in GIF) or including an alpha channel (i.e.; "blend all the pixels with existing pixels, based on values from this extra channel", as in PNG). It's all in the raster file format you use, cocteau; it has little-to-nothing to do specifically with Adobe software. Such things are among the most basic matters understood by someone doing web design.
    When I export an eps from .ai file, and open the eps in photoshop,...I save as a gif for the web, it goes back to the original problem...creates jagged text. I"m giving up on this garbage...Thanks a lot adobe! Lower the price of this software if this is all that can be done.
    Once it leaves Photoshop (or Illustrator, or whatever) as a non-proprietary raster image format, it's all about what the format can do re "transparency". You can do this stuff with most any graphics program. You should read about basic web design and the differences between raster and vector content, rather than rant.
    JET

  • Drag and drop text fields

    Hey.  trying to drag and drop a text field.  So I have created a text field, and saved it as a swf.  I then load it in using xml and the loader class.  When I go to pick it up, i get the error
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.text::TextField@10d59b51 to flash.display.Sprite.
        at GalleryNew_fla::MainTimeline/pickUp()[GalleryNew_fla.MainTimeline::frame1:81]
    It is specifically pointing to
    function pickUp(event:MouseEvent):void {
        getPosition(event.target);
        stage.addChild(event.target as DisplayObject);
        Sprite(event.target).startDrag(true);
    Should I be casting it to something else or something?
    cheers

    I will try and explain what I am doing better, because I am problably doing this tottally wrong, I am just mixing a lot of code to get something together.
    Basically, I have several buttons.  If a button is pressed, it displays objects in a sort of holder.  These objects might be images, animations etc.  When these are placed in the holder, they can be dragged and dropped.  If they are not dropped in the right location, they go back to their position in the holder.
    So, my first two buttons work great.  These just deal with images.  button5, which I am working on now, is dealing with textfields.  So, it should load my textfield swfs, place them in the holder, and made to be drop and draggable.  Problem is, I am using the code which i used for the images, which is where I might be going wrong.
    If I show you the code, maybe you could suggest a better way to do things
    Cheers
    import caurina.transitions.*;
    var xml:XML;
    var xmlList:XMLList;
    var urlLoader:URLLoader;
    button1.addEventListener(MouseEvent.CLICK, click_handler);
    button2.addEventListener(MouseEvent.CLICK, click_handler2);
    button5.addEventListener(MouseEvent.CLICK, click_handler5);
    function click_handler(event_object:MouseEvent) {
         removeChildren(photoContainer);
         while (arrayThumb.length > 0) {
              arrayThumb.pop();
         loadXML("pics.xml");
    function click_handler2(event_object:MouseEvent) {
         removeChildren(photoContainer);
         while (arrayThumb.length > 0) {
              arrayThumb.pop();
         loadXML("pics2.xml");
    function click_handler5(event_object:MouseEvent) {
         removeChildren(photoContainer);
         while (arrayThumb.length > 0) {
              arrayThumb.pop();
         loadXML("pics5.xml");
    function removeChildren(doc:DisplayObjectContainer):void {
         while (doc.numChildren > 0) {
              doc.removeChildAt(0);
    function loadXML(xmlS:String):void {
         var urlRequest:URLRequest=new URLRequest(xmlS);
         urlLoader = new URLLoader();
         urlLoader.load(urlRequest);
         urlLoader.addEventListener(Event.COMPLETE,urlLoaded);
    var arrayThumb:Array=[];
    var photoContainer:Sprite = new Sprite();
    addChild(photoContainer);
    photoContainer.mask=thumb_holder;
    function urlLoaded(event:Event):void {
         urlLoader.removeEventListener(Event.COMPLETE,urlLoaded);
         xml=XML(event.target.data);
         xmlList=xml.children();
         for (var i:int=0; i<xmlList.length(); i++) {
              var thumb:Thumbnail=new Thumbnail(xmlList[i].url);
              arrayThumb.push(thumb);
              arrayThumb[i].y=150.5;
              arrayThumb[i].x=i*110+280;
              photoContainer.addChild(thumb);
              arrayThumb[i].addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
              arrayThumb[i].addEventListener(MouseEvent.MOUSE_UP, dropIt);
    var xPos:int;
    var yPos:int;
    function getPosition(target:Object):void {
         xPos=target.x;
         yPos=target.y;
    function pickUp(event:MouseEvent):void {
         getPosition(event.target);
         stage.addChild(event.target as DisplayObject);
         Sprite(event.target).startDrag(true);
    function dropIt(event:MouseEvent):void {
         Sprite(event.target).stopDrag();
         if (event.target.hitTestObject(getChildByName("movie"))) {
              var my_loader:Loader = new Loader();
              var myString:String=event.target.url;
              var newString:String=myString.replace("pics/","");
              my_loader.load(new URLRequest("pics2/" + newString));
              movie.addChild(my_loader);
              this.photoContainer.addChild(event.target as DisplayObject);
              event.target.x=xPos;
              event.target.y=yPos;
         } else {
              this.photoContainer.addChild(event.target as DisplayObject);
              event.target.x=xPos;
              event.target.y=yPos;
    var minScroll:Number=0;
    var maxScroll:Number=track.width-handler.width;
    var draging:Boolean=false;
    var bounds:Rectangle=new Rectangle(handler.x,handler.y,maxScroll,0);
    handler.buttonMode=true;
    handler.addEventListener(MouseEvent.MOUSE_DOWN,beginDrag);
    function beginDrag(event:MouseEvent):void {
         handler.startDrag(false,bounds);
         draging=true;
         handler.addEventListener(Event.ENTER_FRAME,checkingProgress);
         stage.addEventListener(MouseEvent.MOUSE_UP,endDrag);
    function endDrag(event:MouseEvent):void {
         handler.stopDrag();
         draging=false;
    function checkingProgress(event:Event):void {
         var procent:Number=handler.x/maxScroll;
         if (draging) {
              Tweener.addTween(photoContainer,{x:(475-procent*(photoContainer.width-thumb_holder.width)),time:1});

  • Can't drag and drop after update

    can't drag and drop after update

    hi Dustin, maybe with a bit more info someone will be able to help with this:
    what Mac OS System version are you using?
    what is it you are 'dragging and dropping'? : Is this drag and drop of text in InDesign? Or are you dragging and dropping from the Mac OS (e.g. a file from a folder) into InDesign?
    If you are referring to drag and drop from OS into InDesign: I'm thinking this 'might' be a Mac OSX issue. If you look over at https://discussions.apple.com/index.jspa there seem to be plenty of issues with drag and drop across different OS versions.
    Next time it stops working whilst you are in InDesign, does it still work in other programs? That is one way of determining if this is caused by InDesign or the operating system. If it is the OS, my guess is that it stops working in other applicaitons as well.
    Hope this helps,
    Cari
    twitter: carijansen
    facebook: carijansen.au

  • Can't drag and drop files into Indesign.

    My ability to dragon and drop files into InDesign has stopped. I also cannot copy and paste. I have tried dropping previously used jpg's and PDFs as well as copying text from Acrobat, Chrome and Word. I reset the prefrences with control option command shift, but still no luck - I can't drag and drop files. Also, I cannot move files with my mouse in the program.

    Nobody can help you without system information. Could be anything from graphics driver issues to a defective mouse to a busted operating system...
    Mylenium

  • Drag and Drop Text in FrameMaker 10

    I just installed TCS 3 with Frame 10.  Prior to this release I could triple-click a paragraph and select the following (or previous) paragraphs by dragging the mouse.  Now in Frame 10 after I triple-click, Frame thinks that I want to drag and drop text rather than simply selecting text.  It only selects the one word on which the mouse cursor rests and insists on prompting me to drag the text somewhere.  If I triple-click and release the mouse button, then the whole para is selected, but I cannot select any more text because I have already released the mouse.
    How do I turn off the drag and drop text feature?  I'm finding this "enhancement" frustrating at best.

    AFAIK, the drag'n drop facility is hardwired into the code, so you can't change the behaviour. However, if you've made a paragraph selection using a triple-click, you can select additiona paragraphs by holding down the shift key and single-clicking at the point that you wish your selection to extend to.

  • Can not drag and drop or copy and paste

    It is as simmple as the title. I can not drag and drop icons or text or folders. Nothing. As for cut, copy, and paste they do not work either. I am trying to back up my files so I can do a clean install of snow leopard. I have leopard currently.

    So Copy/Paste, etc. isn't working in say Text Edit?
    On the Drag & Drop, where are you trying to drop them, & does the icon move but just not copy?

  • Drag and Drop | Text | Submit | PLEASE HELP

    Hi. I really need help.  THANK YOU in advance.
    I am building a voting contact from in flash profession with AS3. The functionality will allow users to drag and drop choices OR add their own allow them to submit their TOP 5 choices.
    PROBLEM:
    1. Drag and drop text is not submitted when it is dragged into the editable text field.
    HOW CAN I DO THIS TO ALLOW FOR DRAG AND DROPPED ITEMS TO BE SUBMITTED or TEXT THAT IS MANUALLY ENTERED.
    This can be seen HERE: http://pttdt.com/winnipegcafes.php
    AS3 Code used thus far:
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_1.buttonMode = true;
    choice_1.mouseChildren = false;
    choice_1.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag);
    function fl_ClickToDrag(event:MouseEvent):void
                choice_1.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop);
    function fl_ReleaseToDrop(event:MouseEvent):void
                choice_1.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_2.buttonMode = true;
    choice_2.mouseChildren = false;
    choice_2.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);
    function fl_ClickToDrag_2(event:MouseEvent):void
                choice_2.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_2);
    function fl_ReleaseToDrop_2(event:MouseEvent):void
                choice_2.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_3.buttonMode = true;
    choice_3.mouseChildren = false;
    choice_3.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_3);
    function fl_ClickToDrag_3(event:MouseEvent):void
                choice_3.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_3);
    function fl_ReleaseToDrop_3(event:MouseEvent):void
                choice_3.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_4.buttonMode = true;
    choice_4.mouseChildren = false;
    choice_4.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_4);
    function fl_ClickToDrag_4(event:MouseEvent):void
                choice_4.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_4);
    function fl_ReleaseToDrop_4(event:MouseEvent):void
                choice_4.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_5.buttonMode = true;
    choice_5.mouseChildren = false;
    choice_5.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_5);
    function fl_ClickToDrag_5(event:MouseEvent):void
                choice_5.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_5);
    function fl_ReleaseToDrop_5(event:MouseEvent):void
                choice_5.stopDrag();
    /* Mouse Click Event
    Clicking on the specified symbol instance executes a function in which you can add your own custom code.
    Instructions:
    1. Add your custom code on a new line after the line that says "// Start your custom code" below.
    The code will execute when the symbol instance is clicked.
    send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
    function fl_MouseClickHandler(event:MouseEvent):void
                // Start your custom code
                // This example code displays the words "Mouse clicked" in the Output panel.
                trace(box_1.text);
                trace(box_2.text);
                trace(box_3.text);
                trace(box_4.text);
                trace(box_5.text);
                trace(theName.text);
                trace(theEmail.text);
                // End your custom code
    PLEASE HELP

    It can be fairly involved once you realize how many aspects need to be dealt with.  You'll need to find a tutorial that teaches you how to use drag and drop involving targets so that when you drop something you check if it hit a valid target (textfield in your case) and then process your text into that target.  You should try searching Google using terms like "AS3 drag drop tutorial" and "AS3 dropTarget tutorial"   Here's a link from the latter of the two that has links to tutorials that might help.
    http://forums.adobe.com/post!reply.jspa?message=3462293

  • How can I drag and drop an icon/image into a panel??

    Dear Friends:
    How can I drag and drop an icon/image from one panel into another target panel at any position in target panel at my will??
    any good example code available??
    I search for quite a while, cannot find a very good one.
    please help
    Thanks
    Sunny

    [url http://java.sun.com/developer/JDCTechTips/2003/tt0318.html#1]DRAGGING TEXT AND IMAGES WITH SWING

  • Drag and dropping database objects in Jdev

    I evaluated Visual Cafe and deciding wheather to go with VC or JDev. One of the cool things I noticed in VC is that one can drag and drop database objects in the form using DBNavigator. I haven't seen anything similar in JDev 3.1. Does this or something similar exist in JDev?
    Regards,
    Mark

    Mark,
    Yes, the DB Navigator in Visual Cafe may provide a nice simple look at the database Tables - but so does JDeveloper's Database Navigator - VC may excel in the Drag and Drop functionality - but this is not the real objective. Let me explain...
    When creating a real enterprise level application in Visual Cafe, you begin to discover that DB Navigator along with it's nifty Drag & Drop is no match for JDeveloper's unprecedented level of database integration. JDeveloper's Database related integration includes (but not limited to):
    - JDevelopers Database Navigator
    - Integrated SQLJ environment
    - Tight Business Components for Java (BC4J) integration
    - Wizard driven Form generation (thin & thick)
    - DAC Controls / InfoSwing components
    - Named Connections / Connection Manager
    - WebBeans / JSP Element Wizard
    The closest thing in JDeveloper to what you are referring to in VC is JDeveloper's support for the Design mode which allows you to design both graphical and non-graphical elements. In particular, JDeveloper allows you to design your InfoSwing and InfoProducer components using the Designer - by selecting the component (JavaBean) from the Component Palette and then [Dragging Optional] Dropping it on either the Design Canvas or the Structure pane (lower pane of Navigator window).
    For non-visual elements (such as InfoProducer elements), the Structure pane allows for Creation via Drag & Drop and allows for property setting by using the Property Inspector (Since it is a JavaBean...).
    There are many reasons why JDeveloper provides a much richer and more productive development environment than Visual Cafe. Most have to do with seeking a complete enterprise level solution. JDeveloper adresses the enterprise level application developers needs directly with integration of elements from Tools & Wizards to the integration of a complete application development framework - Oracle Business Components for Java - No other tool can provide you with such a rich and productive development environment.
    John - JDeveloper Team
    null

  • Drag and drop text to Pages doc without formatting

    Pages '06 allowed me to 'drag and drop' text from another application into a cell in a Pages table, without disturbing cell formatting. i.e. the text would lose all its own styles, and take on those set for the cell. This is just the same as using the Edit item 'Paste and Match Style', but avoids several intermediate steps. This doesn't work in Pages '08, so my question is:
    Is there a modifier key or some other way of setting Pages '08 to work the old way?
    I would also like to do the same thing into main body text, but even Pages '06 wouldn't do that -- not for me, anyway. Any suggestions would be gratefully received.

    What you can do is right-click on your selected text, choose "Copy" from the contextual menu, then go to the app where you want to paste the text and right-click again, choosing "Paste and Match Style" from that contextual menu.......no keyboarding involved, no modifier keys.

  • Upgraded to Adabe 10.1x reader and drag and drop text problems

    I cannot drag and drop text from my saved PDF files to word files or for example, into online forms since upgrading to Adobe new reader version today. How can this problem be resolved?

    So after a month of trying to figure all this out I FINALLY fixed the problem!
    Before you do anything just go to your destop > right click personalize (this is for windows 7 - might be different for XP; I honestly forgot, but same idea) > find "window color" > select "advance appearance settings
    (I think can be found by just typing "window color and appearance" in the search from the start menu).
    Finally select "active title bar" (If the font is SEGOE UI, then following the link is the best thing to do; IF ITS NOT, I would think you can just follow the same steps and modify accordingly to how you want your fonts to look in iTunes). http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/how-to-change -system-default-font-in-all-parts/dfce15db-7337-420a-a42e-517521a8502e
    Hopefully this helps!!! Worked for me!

  • Can't drag and drop or copy paste

    I have an iMac with a fusion drive using yosemite.  It started a couple weeks ago where the progress bar would not show up during copying files.  It seems I can not drag and drop files between folders, drives, or jump drives.  I also notice some files that are grayed out that appear to be some of the files I wanted to move or copy on my external drives.  They say they were created in 1969 and modified in 1984.  I cannot delete these at all.  I fixed permissions, restarted, and reinstalled Yosemite.  I tried deleting a file in the library/preferences called com.apple.finder, which did not do anything either.  Any Ideas?

    Select the item in the Finder and open the Info window. If the Created date is January 24, 1984, see below.
    Back up all data before proceeding.
    Select the text on the line below by dragging across it. Don't include the blank space at the end of the line. Only the text should be highlighted.
    touch -t 198001010000
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V, then press the space bar.
    Now switch to the Finder and and select the item(s) in question. Drag into the Terminal window. More text will be added to what you entered.
    Click in the Terminal window to activate it, then press return.
    Wait for a new line ending in a dollar sign ($) to appear. You can then quit Terminal.
    Relaunch the Finder.

  • I can't drag and drop iTunes music files into Roxio Jam 6 anymore and, now I have to import music one song at a time by using the " " or "-" buttons on the bottom. What is going on? G5 Dual 2 Ghz and OS 10.4.11

    Hi. I have not used Roxio Jam for quite a long time and I just wanted to make a few CDs. Jam used to work easily and well. I have a problem. I can't drag and drop iTunes music files anymore and, now I have to import music one song at a time by using the "+" or "-" buttons on the bottom. What is going on? I trashed the preferences file and restarted Jam to no avail. I also have selected that Jam should open files with iTunes in the Jam preferences. I have a G5 DP 2Ghz PPC  machine with OS 10.4.11, iTunes 9.2.1 and Quicktime's version is 7.6.4. I have 2 GB of RAM and the machine has dual 1.25 Ghz. processors plus a 500 GB HD. Can anybody give me any suggestions?
    Thanks in advance,
    Larry

    I found an solution.
    Uninstalling AirParrot as well as the two offending AirParrotDriver.kext and APExtFramebuffer.kext files in System>Library>Extensions was the fix. All problems disappeared.

Maybe you are looking for

  • How can I remove a non=working windows partition from my mac?

    Alright so when I got my computer around 3 years ago my mom installed Windows on it. Sadly it didn't work and there was an uninstall so it uninstalled it, but now I have this 10 GB windows partition that's still there but I can't boot up on it and it

  • Purchase Order Line items

    Hello Everybody, I just wanted to know, How many line Items will be the maximum number of entries for a particular Purchase Order & whether its for all the Po's or Po's of specific document type? Can we change if it is standard? Regards Chaitanya

  • Master Detail Page

    Hi, I'm new at JDeveloper (using it for 3 weeks now), and I need some assistance in a little problem that I have. Let me give a description: I need to develop a master-detail page (I've tried several examples that I've found in this forum and blogs,

  • Sharing a dvd studio pro project

    I have a co-worker that recently move to the United States. He works independent for the same company that I am working. We both use Final Cut Studio for our work and it is easy if we both have the same projects with the same raw video so he can do a

  • Nokia 5530 Xpress Music Firmware v32 to v40

    Hello, i wanted to ask, Quite a few friends of mine have had their 5530 phone updated through Nokia Suite to v40, Whereas, this update has not appeared for me so far. Can anyone help me solve this and get my phone updated to v40? I know the version h