Click here to Skip to main content
15,886,872 members
Home / Discussions / C#
   

C#

 
Question.NET 4 changes to Type.GetProperties Pin
AndyGray7-Jan-11 6:07
AndyGray7-Jan-11 6:07 
AnswerRe: .NET 4 changes to Type.GetProperties Pin
Richard MacCutchan7-Jan-11 8:21
mveRichard MacCutchan7-Jan-11 8:21 
GeneralRe: .NET 4 changes to Type.GetProperties Pin
AndyGray8-Jan-11 6:37
AndyGray8-Jan-11 6:37 
AnswerRe: .NET 4 changes to Type.GetProperties Pin
#realJSOP8-Jan-11 0:26
mve#realJSOP8-Jan-11 0:26 
GeneralRe: .NET 4 changes to Type.GetProperties Pin
AndyGray8-Jan-11 6:39
AndyGray8-Jan-11 6:39 
GeneralRe: .NET 4 changes to Type.GetProperties Pin
#realJSOP8-Jan-11 6:48
mve#realJSOP8-Jan-11 6:48 
Questionenums in a class display in Class View alongside classes Pin
bob169727-Jan-11 4:53
bob169727-Jan-11 4:53 
Questionclipboard pastes two times Pin
Erdinc276-Jan-11 22:52
Erdinc276-Jan-11 22:52 
i want to copy a tex from texbox and paste it another one in my form
i copy it with that code
Clipboard.SetText(textBox1.SelectedText);


and paste it with that
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
   if ((e.Modifiers == Keys.Control)&&(e.KeyCode == Keys.V))
      textBox2.Text = Clipboard.GetText();
}

but the problem is it pastes selceted text two times but when i try like that
(e.Modifiers == Keys.Control)

it pastes one time
what should i do now ?
vemedya.com

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 
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 

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.