Click here to Skip to main content
15,897,891 members

How to Copy Multiple Values from Form to Clipboard

Rectus asked:

Open original thread
HI Team

I have read Data From XML File like Roll No. and Name and Showed On Form after clicking on Button.
Now
I have One Text written on Label "labelText" Control.
Like
Before RUN After RUN

Student has Follwing Details Student has Follwing Details

Roll No : label1 Roll No : 1234

Name : label2 Name : John


Then I have another Labels label1 and label2 to show Data from XML File.When I click On Button at Runtime I will Get Data.

When I use Clipboard to copy this data on doc ..Then before RUN, I can Copy "labelText"part
BUT WHEN I RUN and COPY , then after paste It shows me Only 1234 on doc NOT all part
that specified in After RUN section..

PLEASE TELL ME HOW IT WILL ABLE TO PASTE ALL DATA ON DOC.

C#
private void button2_Click(object sender, EventArgs e)
        {
            Clipboard.Clear();
          Clipboard.SetText(labelText.Text);
          Clipboard.SetText(label1.Text);
          Clipboard.SetText(label2.Text);


          
           string s = Clipboard.GetText();

        }
Tags: C#

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900