| | |
textbox1 to textbox2
Please support our C# advertiser: Intel Parallel Studio Home
Thread Solved |
Design view is just, well, design. It's making programming a little bit easier. It relieves you of all the boring things like initialising the color, position etc. of a button for instance. The code for that is automatically generated for you during the design process.
When your program has got to do something(which it usualy should do) it generates an event for instance by clicking a button. It is your responsibility as a programmer to respond to that event in your code.(A design feature can not guess what you want to do) The response could be : move a text from one textbox to another.
Happy programming!
When your program has got to do something(which it usualy should do) it generates an event for instance by clicking a button. It is your responsibility as a programmer to respond to that event in your code.(A design feature can not guess what you want to do) The response could be : move a text from one textbox to another.
Happy programming!
•
•
Join Date: Oct 2008
Posts: 89
Reputation:
Solved Threads: 0
I figured it out. I was leaving .Text out of it.
C# Syntax (Toggle Plain Text)
this.textBox1.AppendText(textBox2.Text);
Last edited by sfrider0; Oct 21st, 2008 at 12:27 am.
![]() |
Similar Threads
- getElementById not retreiving values from ASP textbox (JavaScript / DHTML / AJAX)
- Create buttons at runtime (C#)
- enter key (VB.NET)
- Multiple LIKE separated by OR (VB.NET)
- streamreader (C#)
- calculate with metrics (C#)
- Adding the results of two text boxes (Visual Basic Express Edition) (VB.NET)
- VB.Net (VB.NET)
- connecting to access via vb.net-HELP!!! (VB.NET)
Other Threads in the C# Forum
- Previous Thread: C# COM ports in Linux
- Next Thread: How would you know if a it a file or a folder in c#?
| Thread Tools | Search this Thread |
.net access ado.net algorithm array barchart bitmap box broadcast buttons c# chat check checkbox client color combobox control conversion csharp custom database datagrid datagridview dataset datetime degrees development draganddrop drawing encryption enum event excel file files form format formatting forms function gdi+ httpwebrequest image index input install java label list listbox listener mandelbrot marshalbyrefobject math mouseclick mysql networking object operator path photoshop picturebox pixelinversion post prime programming radians regex remote remoting richtextbox save saving serialization server sleep socket sql statistics stream string table tcp text textbox thread time timer treeview update usercontrol validation view visualstudio webbrowser windows winforms wpf xml






