Click here to Skip to main content
15,920,632 members
Home / Discussions / C#
   

C#

 
GeneralRe: refreshing a form on closing of another form Pin
Harvey Saayman25-Feb-08 19:02
Harvey Saayman25-Feb-08 19:02 
NewsGood Tip for C# Threading in Windows Service Pin
Malcolm Smart24-Feb-08 23:35
Malcolm Smart24-Feb-08 23:35 
QuestionRedefine module in assembly Pin
Maruf Maniruzzaman24-Feb-08 23:29
Maruf Maniruzzaman24-Feb-08 23:29 
GeneralRe: Redefine module in assembly Pin
Christian Graus24-Feb-08 23:38
protectorChristian Graus24-Feb-08 23:38 
JokeRe: Redefine module in assembly Pin
Maruf Maniruzzaman25-Feb-08 0:12
Maruf Maniruzzaman25-Feb-08 0:12 
GeneralRe: Redefine module in assembly Pin
Pete O'Hanlon25-Feb-08 1:49
mvePete O'Hanlon25-Feb-08 1:49 
GeneralCopy text from control Pin
D i x y24-Feb-08 22:56
D i x y24-Feb-08 22:56 
GeneralRe: Copy text from control Pin
Arjun Marwaha25-Feb-08 1:04
Arjun Marwaha25-Feb-08 1:04 
Hello,

You may use the Clipboard to copy the data/text and then paste it to your destination.
For example the code below will copy the text in the textbox to the clipboard and then you may paste it to your destination:
//Copy
Clipboard.SetText(this.textBox1.Text);
//Paste
this.textBox2.Text = Clipboard.GetText();

Regards,
Dave

Dave Traister
Software Engineer
ComponentOne LLC
www.ComponentOne.com

GeneralRe: Copy text from control Pin
D i x y25-Feb-08 1:45
D i x y25-Feb-08 1:45 
GeneralRe: Copy text from control Pin
Subrat Ranjan Pal25-Feb-08 1:16
Subrat Ranjan Pal25-Feb-08 1:16 
GeneralHelp Graph Excel Pin
JeremH24-Feb-08 22:52
JeremH24-Feb-08 22:52 
Generalregarding the memory handling Pin
karthikeyan198324-Feb-08 22:39
karthikeyan198324-Feb-08 22:39 
GeneralRe: regarding the memory handling Pin
N a v a n e e t h24-Feb-08 22:45
N a v a n e e t h24-Feb-08 22:45 
GeneralRe: regarding the memory handling Pin
karthikeyan198324-Feb-08 23:08
karthikeyan198324-Feb-08 23:08 
AnswerRe: regarding the memory handling Pin
Martin#24-Feb-08 22:52
Martin#24-Feb-08 22:52 
GeneralRe: regarding the memory handling Pin
Christian Graus24-Feb-08 22:56
protectorChristian Graus24-Feb-08 22:56 
GeneralRe: regarding the memory handling Pin
karthikeyan198324-Feb-08 23:37
karthikeyan198324-Feb-08 23:37 
GeneralRe: regarding the memory handling Pin
Scott Dorman25-Feb-08 18:24
professionalScott Dorman25-Feb-08 18:24 
Generalfactorial calculation in c# Pin
ashutosh kumar jha24-Feb-08 22:20
ashutosh kumar jha24-Feb-08 22:20 
GeneralRe: factorial calculation in c# Pin
Colin Angus Mackay24-Feb-08 22:46
Colin Angus Mackay24-Feb-08 22:46 
GeneralRe: factorial calculation in c# Pin
Christian Graus24-Feb-08 22:57
protectorChristian Graus24-Feb-08 22:57 
GeneralRe: factorial calculation in c# Pin
Sathesh Sakthivel25-Feb-08 0:50
Sathesh Sakthivel25-Feb-08 0:50 
GeneralRe: factorial calculation in c# Pin
Vasudevan Deepak Kumar25-Feb-08 3:14
Vasudevan Deepak Kumar25-Feb-08 3:14 
QuestionRemotly controll Com Port? Pin
Harvey Saayman24-Feb-08 22:08
Harvey Saayman24-Feb-08 22:08 
AnswerRe: Remotly controll Com Port? Pin
Maruf Maniruzzaman24-Feb-08 23:38
Maruf Maniruzzaman24-Feb-08 23:38 

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.