Why is the code window deleting strings of characters from my code?

It seems that selection of text in the code window is aggressivley stripping out sections of code text. Also, on returning to the code window it may delete a portion of code thus rendering the code useless.
Very frustrating

1.Version: 3.0.0.322.27519
2.All the time
3.Every file
Text i-bean in key_01
If I click on to another code window
and then return it will insert a space and then immediatly delete it. Sometimes it deletes a section of text. If I have a selection of text it will always delete it.
Sometimes drag selecting the text will delete it on mouse up.
I'm using a Wacom tablet with the latest drivers. I thought it maybe connected having seen a comment on your forums with an issue on using Photoshop with a Wacom.
Selected text example
Returning to code window. Deletes selected text
Obviously, now the Code has a syntax error. When I come to undo it takes several undos to get the code back to its original state. It seems to have inserted a space in the line of code beneath the original selected text and deleted the space - these are now all undo steps.
To get round this I have to park the i-beam on a blank line of code as I move to other code windows
Thanks for your help with this.

Similar Messages

  • Why is the code, in which I know Im right about, isn't retrieving my serial number?

    Why is the code, in which I know Im right about, isn't retrieving my serial number?

    I bought the copy from staples. Opened it and it has two CDs, one Mac and one Windows. Also is a card saying 'look on back for codes' DA DA DA. On the other side it says 'redemption code' exactly. Right below was a letter/nmber code, which fit exactly when entered. I might add that the once grey icon becomes blue after entering the last digit. So I know the type of code is correct, but it appears invalid since that's what's displaying in a yellow caption box after pushing enter

  • Why are the photos I copied onto a DVD from I-Photo not viewable by a Windows PC?

    Why are the photos I copied onto a DVD from iPhoto not viewable on a Windows PC?

    Because you did it wrong? It's hard to know unless you tell us what you did.
    What should work:
    Select the photos you want to share
    File -> Export and export them to a folder on the desktop. Burn that to the disk with the Finder.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • Why does the document window in illustrator cs6 move to the far left when I reopen the file?

    why does the document window in illustrator cs6 move to the far left when I reopen the file?

    Hi John,
    thanks for the fast response.  cs5 remembered the window position.  I like having the window in the middle as I have a 27" monitor.  I just upgraded to cs6 yesterday and I'm sure it was remembering the window document position.  I think.  If i find out how to fix this, I'll post it here.
    And while I'm on the subject of cs6, why the f*** did adobe combine the stroke and swatches pallettes?  Now I forever have to click stroke and swatch tabs all day.  And I love the army and navy file icons of photoshop and illustrator.  I won't comment on Acrobat X.  ; (

  • Delete spaces on the right of a string of characters

    Hi,
    I'd like to know how to delete space on the right of a string of characters and ONLY the ones on the right in order I can get the real length of the string (I don't want to condense the spaces between words even though there's more than one).
    data: text(20).
    text = 'SAP Forum'
    In this case, if I use both DESCRIBE LENGTH and DESCRIBE OUTPUT LENGTH, the result will be 20, but the real length is 9.

    Use STRLEN( ), as described by the other posters.
    To delete space chars on the right of a string, use following static method:
    CALL METHOD cl_abap_string_utilities=>del_trailing_blanks
      CHANGING
         str = lv_text.

  • IOS 7 multitasking  why do the app windows refresh, I can't copy and paste. If the associated app window  keeps refreshing

    iOS 7 multitasking  why do the app windows refresh, I can't copy and paste. If the associated app window  keeps refreshing

    Try. Going to
    Settings
    General
    Background App refresh and turn off the ones giving you problem.

  • Why does the view window all of a sudden expand the content of the page I am viewing so that I have to go to "view" and click actual size??

    Why does the view window all of a sudden expand the content of the page I am viewing so that I have to go to "view" and click actual size??
    Then a few minutes later, it goes back to expanded again, it is driving me crazy.  how can I stop this????
    Thanks for any help.

    There could be a number of reasons, first thing to check is if you are clicking Command + or Command -. The Command 0 keystrokes restore Safari to the actual size. You can also reset Safari by Safari - Reset.

  • Every cut I make in the sequence window leaves one remaining frame from its deleted neighbor clip. How do I turn off this feature - It is driving me mad.

    Every cut I make in the sequence window leaves one remaining frame from its deleted neighbor clip. How do I turn off this feature - It is driving me mad.

    Here are 3 pictures detailing what I'm experiencing.
    Picture 1; clip 1 tail frame.
    Picture 2; clip 2 head frame.
    Picture 3; clip 2 head frame is now tail frame of clip 1.
    does this help describe what is happening? Basically every cut I make
    leaves an unwanted frame as a ghost of the missing cut.
    best,
    Fred
    On Wed, Dec 10, 2014 at 4:50 PM, Kevin Monahan <[email protected]>

  • How to delete first few characters from all the elements of an array of strings

    hi
    I have a 2-dimensional array of strings length 104. I have to delete first 6 characters from all the elements of array and then change the strings to int. how to do it?? plz help

    Attached you can find the screenshot showing how to do so.
    Bye!
    Licia
    Attachments:
    array.jpg ‏14 KB

  • I cannot delete any icon shivering in my iPhone4S. Why do the "X" to delete doesn´t show?

    Hi.  I'm a rookie on all this stuff.  I´ve just updated to iOS 6.0.1, but I cannot delete any icon shivering in my iPhone4S' screen. Why do the "X" to delete doesn´t show?  They keep on shivering,  able to be rearranged,  but cannot delete ANY app, any old game, anything!!
    How can I solve it??
    Thanks in advance...

    Follow these instructions closely: Apple TV (2nd and 3rd generation): Restoring your Apple TV
    You may need a different USB cable. Some are designed to provide power but not data.

  • How to delete string or line from unix file(dataset) of application server

    Hi  All,
    After transfer workarea information or all records into dataset(unix file). When I see the file in application server automatically the last line is shown a blank line. I am not passing any blank line.
    I have tried for single record than also the file generates the last line(2nd line) also a blank line.
    When I m reading the dataset, it is not reading the last blank line but why it is showing the last blank line?
    How to delete string or line from unix file(dataset) of application server?
    Please give your comments to resolve this.
    Thanks
    Tirumula Rao Chinni

    Hi Rio,
    I faced similar kind of issue working with files on UNIX platform.
    The line is a line feed to remove it use
    DATA : lv_carr_linefd TYPE abap_cr_lf VALUE cl_abap_char_utilities=>cr_lf. 
      DATA : lv_carr_return TYPE char1,                                   
             lv_line_feed   TYPE char1.                                          
      lv_line_feed   = lv_carr_linefd(1).
      lv_carr_return = lv_carr_linefd+1(1).
    Note: IMP: The character in ' ' is not space but is a special
    character set by pressing ALT and +255 simultaneosly
      REPLACE ALL OCCURRENCES OF lv_line_feed IN l_string WITH ' '.
      REPLACE ALL OCCURRENCES OF lv_carr_return IN l_string WITH ' '.

  • HT203167 why has the last minute 20 seconds suddenly disappeared from a song?

    why has the last minute 20 seconds suddenly disappeared from a song?

    Welcome to the Apple Community.
    Try deleting the problematic file (electing to remove original file if/when prompted) and then re-downloading the file from the iTunes store.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app (or video app) on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    Hi,
    I would suggest you to uninstall Adobe Reader using the cleaner tool and then re-install the latest version.
    Adobe Cleaner Tool:- Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs.
    Latest version of Adobe Reader:- http://get.adobe.com/reader/
    If you still experience the same issue, please share the following information:-
    - Screenshot of Adobe Reader showing printer options
    - Screenshot of Microsoft Word showing printer options
    - Screenshot of control panel- Control Panel\All Control Panel Items\Devices and Printers
    Regards,
    Nakul 

  • Why does the clone stamp work when I go from a darker colour to a lighter colour but not the other way around. How can I lighten up a dark area? Lasso tool takes from the wrong area too.

    Why does the clone stamp work when I go from a darker color to a lighter color but not the other way around? How can I lighted a dark area? The Lasso tool takes from the wrong area.

    c.pfaffenbichler wrote:
    Why do you use the Blend Modes Lighter and Darker at all in this case and not simply Normal?
    And what kept you from posting a screenshot?
    I borrowed the image below for an HDR workshop I ran at the 2010 PSNZ National Convention, to demonstrate a method of removing halos.  You'll remember that halos were a serious problem with early HDR, and while the halos in this image were caused by over sharpening, they are perfect for demonstrating this technique.
    It relies on the fact that halos so often tend to put a lighter tone between the two areas where sharpening is being applied. Whether that is the sky abutting a dark line of hills, or the rock and little tower as in this image.  I've uploaded it at the size it was supplied to me at (about 2700 pixels wide).  So
    Click to open the full image, right click and copy, and paste into Photoshop.
    Select the clone tool, and set its blend mode to Darken.
    Try to sample on a line horizontal to where you want to clone, to give the best tonal match, and start cloning.
    Because the sky is darker than the halo, it overwrites it. But the rock is darker than the sky, so it has no affect.
    It works even better if you clone on a new layer also set to Darken.  No masking, just Photoshop blend mode magic.
    You can also fix the little tower. Use a great big brush — just remember to sample horizontal to match the horizon.
    Back then I was using the same trick with CAs after forgetting to fix them in ACR, and having done too much work to start again after spotting the problem.

  • Add zeros on the left in a string of characters

    Hi,
    I'd like to add zeros on the left in a string of characters. Example:
       Char10: 8572   --->  Char10: 0000008572
    I'd like to know if there's a standard instruction for this, or a quick way to do it.
    Thanks in advance,
    Gerard

    Try this
    *& Report  YCHATEST                                                    *
    REPORT  YCHATEST                                .
    data : l_char(10) value '8275'.
    write : / l_char.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = l_char
    IMPORTING
       OUTPUT        = l_char
    write : / l_char.
    Message was edited by: Sekhar

Maybe you are looking for

  • IPod Video (5G) Freezes when playing videos

    I just bought (yesterday) a new black 30gb 5th generation video iPod. I purchased 2 songs of the iTunes and copied it to my iPod. After it said it was done updating my iPod, i disconnected it and viewed the video. It played smoothly. The next today (

  • OpenType Frutiger fonts  in Photoshop displaying different weights for the same instance.

    So, Really weird bug I've noticed. Our client has provided us with Frutiger LT Std. type family and Photoshop. We are using the fonts for their designs, but instances of the same font look different. Let me explain... If I apply Frutiger LT Std. 65 B

  • Failure to consistently connect to network.

    I have several MacBooks, iPhones, Apple TV's and a couple of other devices all connecting to my home network.  I just purchased two new Airport Extremes and an Airport Express.  They are all hardwired to a time capsule that is connected to my cable m

  • Coding for Formulas

    hi guys, i need you help. i try to find out, in which table the definitions of FML Formulas are. For example: If there is an calculation, like 2 + 2, in which table I can find the generated coding from the formular editor? can anybody help me...pls.

  • Gyroscope example myRIO

    Hello, I have tried to use the example of the Gyroscope which is included in the myRIO project-guide: http://www.ni.com/academic/myrio/project-guide.pdf Using the provided example vi and without modifying it i get proper response from X and Y axis bu