Click here to Skip to main content
15,881,739 members
Home / Discussions / C#
   

C#

 
Questionclipboard pastes two times Pin
Erdinc276-Jan-11 22:52
Erdinc276-Jan-11 22:52 
AnswerRe: clipboard pastes two times Pin
JF20156-Jan-11 22:58
JF20156-Jan-11 22:58 
GeneralRe: clipboard pastes two times Pin
Erdinc276-Jan-11 23:18
Erdinc276-Jan-11 23:18 
GeneralRe: clipboard pastes two times Pin
Erdinc276-Jan-11 23:23
Erdinc276-Jan-11 23:23 
GeneralRe: clipboard pastes two times Pin
JF20156-Jan-11 23:34
JF20156-Jan-11 23:34 
GeneralRe: clipboard pastes two times Pin
Luc Pattyn7-Jan-11 0:21
sitebuilderLuc Pattyn7-Jan-11 0:21 
AnswerRe: clipboard pastes two times Pin
#realJSOP7-Jan-11 1:45
mve#realJSOP7-Jan-11 1:45 
GeneralRe: clipboard pastes two times Pin
Erdinc277-Jan-11 22:01
Erdinc277-Jan-11 22:01 
i have 17 textboxes on my form and i want the user can copy from one box and paste to another...that is why i did so
private void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            if ((e.Modifiers == Keys.Control) && (e.KeyCode == Keys.V))
            {
                foreach (Control item in this.Controls)
                {
                    if (item.GetType().Name == "TextBox")
                        if (item.Enabled)
                            item.Text = Clipboard.GetText();
                }
            }
        }


it works well..but after i saw your replies i wonder if there is better way or i am in wrong way ?
vemedya.com

GeneralRe: clipboard pastes two times Pin
#realJSOP8-Jan-11 0:30
mve#realJSOP8-Jan-11 0:30 
GeneralRe: clipboard pastes two times Pin
Dave Kreskowiak8-Jan-11 4:28
mveDave Kreskowiak8-Jan-11 4:28 
QuestionExtract the text on PDF Pin
abbd6-Jan-11 5:07
abbd6-Jan-11 5:07 
AnswerRe: Extract the text on PDF PinPopular
fjdiewornncalwe6-Jan-11 5:08
professionalfjdiewornncalwe6-Jan-11 5:08 
QuestionRe: Extract the text on PDF Pin
abbd6-Jan-11 5:16
abbd6-Jan-11 5:16 
AnswerRe: Extract the text on PDF Pin
Paladin20006-Jan-11 5:50
Paladin20006-Jan-11 5:50 
QuestionRe: Extract the text on PDF Pin
abbd6-Jan-11 6:45
abbd6-Jan-11 6:45 
AnswerRe: Extract the text on PDF Pin
Pete O'Hanlon6-Jan-11 6:39
mvePete O'Hanlon6-Jan-11 6:39 
GeneralRe: Extract the text on PDF Pin
musefan6-Jan-11 5:28
musefan6-Jan-11 5:28 
GeneralRe: Extract the text on PDF Pin
fjdiewornncalwe6-Jan-11 11:55
professionalfjdiewornncalwe6-Jan-11 11:55 
AnswerRe: Extract the text on PDF Pin
Espen Harlinn7-Jan-11 8:04
professionalEspen Harlinn7-Jan-11 8:04 
Questionchange frequency input sound microphone Pin
mehdiattar5-Jan-11 21:43
mehdiattar5-Jan-11 21:43 
AnswerRe: change frequency input sound microphone PinPopular
JF20155-Jan-11 22:05
JF20155-Jan-11 22:05 
GeneralRe: change frequency input sound microphone Pin
Dalek Dave6-Jan-11 0:39
professionalDalek Dave6-Jan-11 0:39 
GeneralRe: change frequency input sound microphone Pin
fjdiewornncalwe6-Jan-11 4:00
professionalfjdiewornncalwe6-Jan-11 4:00 
AnswerRe: change frequency input sound microphone Pin
JP_Rocks26-Apr-11 23:37
JP_Rocks26-Apr-11 23:37 
QuestionHTTP Handler Problem Pin
snouto5-Jan-11 21:09
snouto5-Jan-11 21:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.