Bizarre highlight/drag result: copies, doesn't move

when composing a new message or a reply, I highlight some text and then drag it to move it. but when I release the mouse, the text gets copied to where I had dropped it, instead of moving it. this is new behavior, only within the last week or so. cut/paste with the edit menu works as expected.

I'm experiencing the same problem, but it's somewhat sporadic. Sometimes it works correctly, but mostly it doesn't. I can't say exactly when it began but I'm guessing it's been at least a month.
It's very aggravating because I've come to use this time-saving feature a lot, but now having to go through the additional step of deleting the original snippet has reversed the time-savings -- and it's very hard to get out of the habit of using it!

Similar Messages

  • How do I reorder songs in a playlist in the new itunes??? I can no longer just click and drag. When I click, it doesn't move!!!! Need help ASAP- trying to prepare for an aerobics class and need songs in a specific order!

    How do I reorder songs in a playlist in the new itunes??? I can no longer just click and drag. When I click, it doesn't move!!!! Need help ASAP- trying to prepare for an aerobics class and need songs in a specific order!

    Vera,
    Use View > View Options, and set 'Sort By" to "Manual Order."
    Then you will be able to drag-n-drop songs up and down the list.

  • When I highlight objects, I'm able to move them with the arrow key but I can't drag them with my mouse.

    When I highlight objects, I'm able to move them with the arrow key but I can't drag them with my mouse.

    Without system info and other details like e.g. your settings for bounding box display nobody can tell you much.
    Mylenium

  • When trying to move file and use command and drag, it doesn't move the file just creates a short cut.

    When trying to move file and use command and drag, it doesn't move the file just creates a short cut.

    Using command creates a copy.
    If you want to just move a file, click on it, hold it and drag it to the new location.

  • Scanner HP G2410 doesn't work and ligth doesn't move

    I'm using the scanner G2410 in windows XP 32-bits, but suddenly it doesn't work. When I trying to scan, a short time later it shows me a message that says the scanner is not find it, that restart my pc, wait 60 seconds and connect it again. Also the ligth doesn't move. In the end of the message shows me the error number:
     4,[(2,5,80004000b),(3,5,0)]
    Even I try it in a pc with windows 7 64-bits but the same result.
    Is my scan totally damaged? I will appreciate you help me.

    Hello caifan125,
    Welcome to the HP Support Forums!
    To get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at Scanners.
    The support page for your product may be helpful in the meantime:
    I hope this helps!
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Bug: option dragging audio regions doesn't preserve fadeins and fadeouts

    I just noticed that when I option drag some audio regions, sometimes either the fadein or fadeout is lost. Usually it disappears on the copy, but sometimes the copy is fine but the original loses the fade.
    Anyone else see this problem? Is it new to 8 or has it always been there? Any suggested workarounds? I tried using copy/paste instead of option drag, but that doesn't work since it creates clones instead of copies. Any suggestions would be appreciated.

    Bump...has anyone else seen this problem, or is it unique to my setup?

  • The book who I selected doesn't move to the right in CheckedListBox and the reason is that I can't make an return.his code is good just for first user who I selected

    Imprumut = loan
    I have 6 tables: 
    I have one combobox(from where I select utilizatori(users)) and 2 CheckedListBox(Between first box and second box I have 2 buttons:imprumuta(loan) and restituie(return))
    This c# code works just for first user: Utilizator, but something's not good. When I add new utilizator(user) and select it,  the loan will be add in my SQL DataBase, but... the book who I selected doesn't move to the right in CheckedListBox and the reason
    is that I can't make an return
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using MySql.Data.MySqlClient;
    namespace proiect
        public partial class Imprumut : Form
            MySqlConnection con = new MySqlConnection("DataSource=localhost;UserID=root;database=biblio1");
            //stabilim conexiunea
            MySqlCommand comUser;//interogarea pe baza careia umplem comboBox
            MySqlDataAdapter adaptu;
            DataTable userT = new DataTable();
            MySqlCommand cmdCarti;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCarti;
            DataTable CartiTabel = new DataTable();
            MySqlCommand cmdCartiImprumutate;//interogarea pe baza careia umplem checkListBox
            MySqlDataAdapter adaptCartiImprumutate;
            DataTable CartiImprumutateTabel = new DataTable();
            public int UserId
                get
                    return Convert.ToInt32(user.SelectedValue.ToString());
            void Completez_Combo_User()
                try
                    comUser = new MySqlCommand("SELECT n.userid, CONCAT(n.UserName) as UserN FROM users n left join userroles us on n.userid=us.userid left join roles r on r.roleid=us.roleid WHERE r.roleid='3'",
    con);
                    adaptu = new MySqlDataAdapter(comUser);
                    adaptu.Fill(userT);
                    user.Items.Clear();
                    user.DataSource = userT;
                    //DataTable din care sunt preluate datele pentru ComboBox user
                    user.ValueMember = "UserID";
                    //Valoarea din coloana UserID nu se afiseaza in combobox
                    user.DisplayMember = "UserN";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Completez_CheckList_Carti()
                try
                    cmdCarti = new MySqlCommand("SELECT BookID, CONCAT(title, ' ', ISBN,' ',author)as date_carte FROM books WHERE NumberLeft > 0 ORDER BY BookID", con);
                    adaptCarti = new MySqlDataAdapter(cmdCarti);
                    adaptCarti.Fill(CartiTabel);
                    imp.Items.Clear();
                    //carti.DataSource=null;
                    imp.DataSource = CartiTabel;
                    //DataTable din care sunt preluate datele pentru ComboBox carte
                    imp.ValueMember = "BookID";
                    //Valoarea din coloana BookID nu se afiseaza in combobox
                    imp.DisplayMember = "date_carte";
                    //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                void Completez_CheckList_Cartires()
                    try
                        cmdCartiImprumutate = new MySqlCommand(string.Format("SELECT b.BookID, CONCAT(title, ' ', ISBN,' ',author) as date_carte FROM books b inner join userbooks ub on ub.bookid = b.bookid
    WHERE ub.userid = {0} ORDER BY BookID", UserId), con);
                        adaptCartiImprumutate = new MySqlDataAdapter(cmdCartiImprumutate);
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                        res.Items.Clear();
                        //carti.DataSource=null;
                        res.DataSource = CartiImprumutateTabel;
                        //DataTable din care sunt preluate datele pentru ComboBox carte
                        res.ValueMember = "BookID";
                        //Valoarea din coloana BookID nu se afiseaza in combobox
                        res.DisplayMember = "date_carte";
                        //Eelementele afisate in combobox, preluate din concatenarea mai multor coloane
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
            void Inregistrez_imprumut_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand adaugImpr = new MySqlCommand("INSERT INTO bookshistory(UserID, BookID,BorrowDate) VALUES(@UserID, @BookID, CAST(@BorrowDate as datetime))", con);
                    MySqlCommand scadCarti = new MySqlCommand("UPDATE books SET numberleft=numberleft-1 WHERE bookid=@bookid", con);
                    MySqlCommand adauga_userbooks = new MySqlCommand("INSERT INTO userbooks(userId,bookID)VALUES(@userID,@bookID)", con);
                    adauga_userbooks.Transaction = tranzactie;
                    adaugImpr.Transaction = tranzactie;
                    scadCarti.Transaction = tranzactie;
                    try
                        foreach (int i in imp.CheckedIndices)
                            imp.SelectedIndex = i;
                            bookidi = Convert.ToInt32(imp.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                                     //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                                     //Inregistrez in tabela imprumut
                            adaugImpr.Parameters.AddWithValue("@UserID", useridu);
                            adaugImpr.Parameters.AddWithValue("@BookID", bookidi);
                            adaugImpr.Parameters.AddWithValue("@BorrowDate", azi);
                            adaugImpr.ExecuteNonQuery();
                            adaugImpr.Parameters.Clear();
                            adauga_userbooks.Parameters.AddWithValue("@userID", useridu);
                            adauga_userbooks.Parameters.AddWithValue("@bookID", bookidi);
                            adauga_userbooks.ExecuteNonQuery();
                            adauga_userbooks.Parameters.Clear();
                                    //Scad numarl de carti disponibile pentru cartea imprumutat
                            scadCarti.Parameters.AddWithValue("@bookid", bookidi);
                            scadCarti.ExecuteNonQuery();
                            scadCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        string message = ex.Message;
                        if (ex.Message.ToLower().Contains("duplicate entry"))
                            message = "Una dintre carti mai exista deja";
                        MessageBox.Show(message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            void Inregistrez_restituire_in_BD()
                int useridu = Convert.ToInt32(user.SelectedValue.ToString()); //useridu = id book
                int bookidi;
                try
                    DateTime azi = System.DateTime.Now; //  Data imprumutului
                    DateTime atunci = termenul.Value;   //  Data restituirii
                    MySqlTransaction tranzactie = con.BeginTransaction();
                    MySqlCommand modificIstoric = new MySqlCommand("UPDATE bookshistory SET returndate = @returnDate WHERE userID = @userID AND bookID = @bookID", con);
                    MySqlCommand adaugCarti = new MySqlCommand("UPDATE books SET numberleft = numberleft + 1 WHERE bookID = @bookID", con);
                    MySqlCommand sterge_userbooks = new MySqlCommand("DELETE  FROM userbooks WHERE userID = @userID AND bookID = @bookID", con);
                    sterge_userbooks.Transaction = tranzactie;
                    modificIstoric.Transaction = tranzactie;
                    adaugCarti.Transaction = tranzactie;
                    try
                        foreach (int i in res.CheckedIndices)
                            res.SelectedIndex = i;
                            bookidi = Convert.ToInt32(res.SelectedValue.ToString());
                            MessageBox.Show(bookidi.ToString());
                            //bookidi va fi id-ul cartea bifata, pe rand din checklistBox
                            //Inregistrez in tabela imprumut
                            modificIstoric.Parameters.AddWithValue("@UserID", useridu);
                            modificIstoric.Parameters.AddWithValue("@BookID", bookidi);
                            modificIstoric.Parameters.AddWithValue("@returnDate", termenul.Value);
                            modificIstoric.ExecuteNonQuery();
                            modificIstoric.Parameters.Clear();
                            sterge_userbooks.Parameters.AddWithValue("@UserID", useridu);
                            sterge_userbooks.Parameters.AddWithValue("@BookID", bookidi);
                            sterge_userbooks.ExecuteNonQuery();
                            sterge_userbooks.Parameters.Clear();
                            //Scad numarl de carti disponibile pentru cartea imprumutat
                            //adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.Parameters.AddWithValue("@bookid", bookidi);
                            adaugCarti.ExecuteNonQuery();
                            adaugCarti.Parameters.Clear();
                        tranzactie.Commit();
                    catch (Exception ex)
                        tranzactie.Rollback();
                        MessageBox.Show(ex.Message);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            public Imprumut()
                InitializeComponent();
                try
                    con.Open();
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
                Completez_Combo_User();
                Completez_CheckList_Carti();
                Completez_CheckList_Cartires();
                //selecteaza_carti_utilizator();
                //  Initializez termenul din dateTimePicker la data de peste 15 zile fata de data sistemului
                termenul.Value = System.DateTime.Now.AddDays(15);
            private void imprumuta_Click(object sender, EventArgs e)
                Confirmare c = new Confirmare("Confirmati imprumutul?");
                DialogResult dr = c.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_imprumut_in_BD();
                        MessageBox.Show("Imprumutul a fost inregistrat");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Imprumutul NU a fost inregistrat");
                    imp.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        imp.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                //if (imp.CheckedItems.Count > 0)
                //    //res.Items.Clear();
                //    foreach (string str in imp.CheckedItems)
                //        res.Items.Add(str);//adauga in partea cealalta, imprumuta
                //    while (imp.CheckedItems.Count > 0)
                //        imp.Items.Remove(imp.CheckedItems[0]);
            private void restituie_Click(object sender, EventArgs e)
                Confirmare r = new Confirmare("Confirmati restituirea?");
                DialogResult dr = r.ShowDialog();
                if (dr == DialogResult.Yes)
                    try
                        Inregistrez_restituire_in_BD();
                        MessageBox.Show("Restituirea a fost inregistrata");
                        //Dupa inregistrarea imprumutului o parte din carti nu mai sunt disponibile pentru imprumut
                        //Reincarc in CheckList cu Carti noua lista cu carti ramase dupa imprumut
                        //Pentru asta "resetez" datele din dataTable cartiT (sursa pentru carti.DataSource)
                        CartiTabel.Clear();
                        adaptCarti.Fill(CartiTabel);
                        CartiImprumutateTabel.Clear();
                        adaptCartiImprumutate.Fill(CartiImprumutateTabel);
                    catch (Exception ex)
                        MessageBox.Show(ex.Message);
                if (dr == DialogResult.No)
                    MessageBox.Show("Restituirea NU a fost inregistrata");
                    res.ClearSelected();
                    //deselecteaza cartea selectat
                    foreach (int i in imp.CheckedIndices)
                        res.SetItemChecked(i, false);
                    //debifeaza cartile bifate
                if (res.CheckedItems.Count > 0)
                    foreach (string str in res.CheckedItems)
                        imp.Items.Add(str);
                    while (res.CheckedItems.Count > 0)
                        res.Items.Remove(res.CheckedItems[0]);
            private void button2_Click(object sender, EventArgs e)
                con.Close();
                this.Close();
            //private void selecteaza_carti_utilizator()
            //    res.Items.Clear();
            //    MySqlCommand selectcart = new MySqlCommand("select title from books,userbooks where userbooks.userid='" + user.SelectedValue.ToString() + "' and userbooks.bookid=books.bookid", con);
            //    MySqlDataReader reader = selectcart.ExecuteReader();
            //    try
            //        while(reader.Read())
            //            res.Items.Add(reader["title"]);
            //    catch(Exception ex)
            //        MessageBox.Show(ex.Message);
            //    finally
            //        reader.Close();

    Hello Vincenzzo,
    This issue seems to be a window form UI implemented related issue, for this i suggest that you could ask it to the windows form forum:
    http://social.msdn.microsoft.com/Forums/windows/en-US/home?forum=winforms
    The current forum you posted to is used to discuss and ask questions about .NET Framework Base Classes (BCL) such as Collections, I/O, Regigistry, Globalization, Reflection.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Itunes 10.1.2.17 upgrade killed my sound, music scroll bar doesn't move

    After upgrading to 10.1.2.17 on 1/30/2011 all sound ceased on my system. Updated the sound card driver to no avail. No conflict in compatability mode. When song selected in iTunes, the play bar doesn't move nor do movies have audio in quicktime. There is no sound in any program.
    Thoughts?

    Katrina, Thank you for your reply. I followed the directions from your link about using msconfig, and did what it said. Upon started I loaded iTunes without Bonjour running and playing songs worked fine. No delay and going from track to track was quick. So then I quit iTunes and started Bonjour like it said and it still ran fine. So it must be something I deselected in msconfig. I'll have to go back and look.
    There were 3 temp files before, but I did another fresh install of iTunes and now it has only one temp file. Called Temp File.tmp. Oh I just looked now and it has another one, oops it just disappeared again. The time stamp on it for it's Modified date is Sunday February 13, 2011 5:28pm and it's Accessed time is Yesterday, February 28, 2001 11:25am, and it's Created time is Yesterday February 28, 2011 11:25am.
    I use Microsoft Security Essentials for my antivirus and under it's ignore files I told it to ignore the temp file as well as the itunes library files. But was still having trouble after doing that. Using my Apple TV 2, music still played fast also without any delay. I have a fairly large library though. 140GB or so of Music, 80Gb of Movies and 10GB of Podcasts. So I thought maybe since I've been adding more Movies it caused iTunes to slow down.
    I'll try rebooting now by adding Apple Mobile Device to startup and see if anything changes since it's still stopped. iPod Service is running as well as bonjour and all is ok.
    Since when I did a fresh intall of windows all I did was install iTunes, so the only other startup things I have are 3 from Intel called common user interface, my microsoft security client and Keepass my password program. Only quick time and itunes are enabled in startup right now. So I will go back and add each of those things and see which one is causing the problem. Thanks again.

  • Hi! Once I've deleted a purchased program and now I get it back to my itunes, but can't go back to my phone even it's shown on the monitor that it's on my phone already. But it isn't. Even if I syncronize it doesn't move to my phone. What can I do?

    Once I've deleted a purchased program accidentally and now I get it back from my iTunes, but doesn't move to my phone even it looks like on the phone by iTunes.
    How can I syncronize it to get back really the app to my phone?

    go to settings>general>restrictions and turn facetime ON

  • Duplicate mouse cursor appears (but doesn't move) on second monitor

    I have a Mac Pro with the ATI XT1900 video card and 2 Dell 2407WFP LCD monitors attached via DVI.
    When I'm using an application, such as a web browser, and the cursor changes state (like the black arrow with spinning wheel in corner) a duplicate of this cursor state appears on my second monitor, on the left-hand side of the screen.
    This cursor DOES NOT MOVE, but does animate, and will not disappear unless I move my "live" cursor over to the second monitor, which I imagine causes OS X to "refresh" the position of the cursor. It realizes the duplicate shouldn't be there and it vanishes. The second cursor seems to appear only when the primary live cursor changes state, as in the black arrow becoming a black arrow with spinning wheel in the corner, etc.
    This is not a duplicate cursor due to having Displays set up to mirror one another. The second cursor doesn't move.
    This has happened in more than one software application, so it appears to be some sort of display driver error at the system level.
    Anyone else experience this or have a way to fix it? There have been several Apple Updates to OS X since this problem first started happening (on day 1 with the Mac Pro) and it has not been resolved.
    -R

    Try resetting SMC on the macbook air: http://support.apple.com/kb/HT1411
    Good luck!

  • Hero slideshow on homepage is un-pinned, yet doesn't move vertically w other content when scrolling

    I've created a hero slideshow on the homepage. It is "unpinned", however it doesn't move vertically with the rest of the content when scrolling up/down. It stays in its same spot and the other page content scrolls correctly.

    Hi Aish!
    Sadly, it is showing as unpinned in my file and I re-published the file and the carousel is still stuck. I've attached a screen capture showing the webpage (left, scrolled) and the muse file (right).
    I'm sure this is something I'm doing wrong, do you have any other ideas?
    Thanks so much for your help. Do you work for Adobe? If you do, I have other Muse questions I cannot find the answer to online. If you don't work for Adobe and are just a Good Samaritan/Angel, do you know of any manuals/reference books that might help me? I've worked in psd, ai, indd for many years. But attempting the web side of design is killing me, and I'm likely to lose my client if I can't get his site together soon. Thanks again!

  • Drag and drop doesn't work and also control C and control V

    drag and drop doesn't work and also control C and control V

    Try this first. On your hard drive, go to Users / yourself / Library / Preferences.
    In that Preferences folder there is a file called com.apple.finder.plist.
    Trash that file and restart.

  • Drag and drop doesn't work on iMac running 10.5.8

    Drag and drop doesn't work on iMac running 10.5.8

    Please do a SMC and PRAM reset using the directions in iMac SMC and PRAM reset. If that doesn't work then please tell us exactly which mouse you own, it's possible it needs cleaning or replacing.

  • Way to "anchor" item in a Region Footer so it doesn't move relative ...

    Now: Is there a way to "anchor" and item in a Region Footer so it doesn't move relative to the footer when the IE window is resized?
    Was: Stop Region Footer Items from moving to Header when IE window is resized?
    Using APEX 4.0.x under Oracle 11.2.y on Unix displaying to Windows 7.
    I use #TIMING# in a Region Footer of a chart where it displays in the lower left-hand corner. The chart slightly more than fills the window so I want to shrink it. But when I change the "zoom level" of the IE window (under IE 8.0.7601.17514) to say, 96%, the timing value (e.g., 0.02) displayed moves from below the chart at the left to above the chart on the right-hand side. ???
    Is there java / html that can be put in the Region Footer field with #TIMING# to prevent this?
    Howard
    Edited by: Howard (DBA in Training) on Oct 4, 2012 3:52 PM

    It sounds like you are not running the latest software. Connect to itunes. Go to the summary screen for your ipod and check what version of the software it says you are running. If it does not say 1.1, then you need to update.
    If it says 1.1, then I would suggest restoring.
    If you are running the 1.1 version of the software, if you hold the larger "Sleep/Wake" button down for a few seconds, it should shut down the nano.
    i

  • Any way to Lock the Decoration Free Label in place so that the Clean Up Diagram process doesn't move it soemplace unreasonable?

    Any way to Lock the Decoration Free Label in place so that the Clean Up Diagram process doesn't move it soemplace unreasonable? The Clean Up Diagram process moves things to very strange places and often makes the diagram more complicated than it needs to be.
    There should be a way to lock a Decoration Free Label in a location that the Clean Up Diagram will not move it somewhere else.
    Is there such a feature?
    How do you get your Decorations to stay where you put them even after Clean Up Diagram?

    Hey dbaechtel,
    There is a way to do this however you will need to put your Decoration Free Label within a structure.  Check out the following KnowledgeBase article below for more information:
    KnowledgeBase 4TKECSYP: Block Diagram Cleanup Tool Moves Decorations
    Best,
    Chris LS
    National Instruments
    Applications Engineer
    Visit ni.com/gettingstarted for step-by-step help in setting up your system.

Maybe you are looking for