No announcements
Found 618884 threads
-
1 Votes
Custom commands w/o commandbinding (like Copy)
RoutedCommand.Execute method is NOT designed for implementing a command execution.Answered | 4 Replies | 4284 Views | Created by NoRyb - Wednesday, January 6, 2010 1:41 PM | Last reply by NoRyb - Monday, January 11, 2010 7:14 AM -
0 Votes
a "COPY" button
You can use Clipboard to copy text or other object.Answered | 1 Replies | 543 Views | Created by lenon67 - Sunday, January 3, 2016 7:00 PM | Last reply by Ashish Pandey - Tuesday, January 5, 2016 5:29 AM -
0 Votes
how to copy the textbox.text to an other progrom
Clipboard.SetText You could also just call textbox.copyAnswered | 3 Replies | 3270 Views | Created by ehsano2 - Sunday, November 9, 2008 7:04 AM | Last reply by LesterLobo - MSFT - Wednesday, November 12, 2008 10:55 AM -
0 Votes
Using Copy command don't copy config file
hello every one, i used config file in dll and want to copy this config file to asp.net web application project i just use copy command in ...Answered | 1 Replies | 9135 Views | Created by Mohamed samir mahmoud abdeen - Monday, August 17, 2009 1:11 PM | Last reply by Shrikant Maske - Friday, August 21, 2009 12:02 PM -
3 Votes
Copy text from richtextbox to ClipBoard
0) // Copy the selected text to the ...Answered | 3 Replies | 22304 Views | Created by IamHuM - Wednesday, March 10, 2010 5:50 PM | Last reply by BJS3D - Wednesday, May 30, 2012 5:42 AM -
1 Votes
Is it Copying content or Writing a Command?
But bcp is windows .exe, command line tool.Answered | 19 Replies | 3288 Views | Created by Bangaaram - Tuesday, January 10, 2012 4:14 PM | Last reply by Bangaaram - Saturday, January 21, 2012 4:55 PM -
0 Votes
copy label text
First , you could added a method to the label to make the label get focus if clicked: private void label1_Click(object sender, EventArgs e) ...Answered | 2 Replies | 2110 Views | Created by Harshana Srimal - Monday, September 5, 2016 3:45 PM | Last reply by Kevin Linq - Tuesday, September 6, 2016 3:17 AM -
0 Votes
Post build command to copy files
We will still got the Exit code 4 error, because the copy source should be files not folder, so we should make the copy source be files, just like Pavel A said, ...Answered | 9 Replies | 56399 Views | Created by wakefun - Friday, March 9, 2018 4:08 PM | Last reply by Leo Liu-MSFT - Monday, March 12, 2018 9:59 AM -
0 Votes
I want to set a copy button on Form
Hi, you can use Clipboard.SetText: Clipboard.SetText(textBox1.Text);Answered | 3 Replies | 587 Views | Created by Md. Imam Uddin - Friday, May 9, 2014 3:16 PM | Last reply by lapheal - Friday, May 9, 2014 5:23 PM -
0 Votes
Copy data [array] to clipboard
On my windows form I'd like to create a click button which will allow the user to click it which will copy those data points to clipboard.Answered | 2 Replies | 4706 Views | Created by newmanpj - Thursday, August 14, 2014 5:43 PM | Last reply by newmanpj - Thursday, August 21, 2014 6:28 PM -
1 Votes
copy and paste
Option Strict On Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load Me.CenterToScreen() ...Answered | 5 Replies | 998 Views | Created by SoFttt - Thursday, April 17, 2014 1:18 PM | Last reply by SoFttt - Sunday, April 20, 2014 12:47 PM -
0 Votes
Copy and Paste ?
For copy, use the below code, Clipboard.SetText(richTextBox1.SelectedRtf, TextDataFormat.Rtf); For Paste, use this, string s = ...Answered | 2 Replies | 1594 Views | Created by DITTU MFC - Tuesday, July 3, 2012 2:37 AM | Last reply by DITTU MFC - Tuesday, July 3, 2012 7:52 AM -
0 Votes
Copy command... not clipboard.settext()
var dataPackage = new DataPackage(); dataPackage.SetText("Copy text"); Clipboard.SetContent(dataPackage); Say ...Answered | 1 Replies | 493 Views | Created by RandyPete - Tuesday, August 5, 2014 2:28 AM | Last reply by Rob Caplan [MSFT] - Tuesday, August 5, 2014 5:41 AM -
0 Votes
AfterBuild Exec Starts before Copy Command is Finished.
So apparently the variable "MainAssembly" is incorrect while executes the copy task.Answered | 3 Replies | 2859 Views | Created by Overland Conveyor Company - Monday, March 18, 2013 3:57 PM | Last reply by Forrest Guo - Monday, April 1, 2013 6:55 AM -
2 Votes
Copy command in build event add assembly version to the copy file.
So we could use use a macro which looks like this:@(VersionNumber) copy /Y "$(TargetPath)" "$(SolutionDir)MyApplicationProject\$(OutDir)\filename.Answered | 1 Replies | 3950 Views | Created by Justyna.lyu2 - Tuesday, September 19, 2017 3:27 PM | Last reply by Leo Liu-MSFT - Wednesday, September 20, 2017 5:30 AM -
5 Votes
List Box Copy/Paste
Hi Of the two possibilities - 1. copy all selected items, 2. copy ALL items regardless of selected or not, then my offering uses option 2 where ALL items are ...Answered | 7 Replies | 881 Views | Created by NightFlame22 - Tuesday, February 12, 2019 10:58 PM | Last reply by NightFlame22 - Thursday, February 14, 2019 9:16 PM -
0 Votes
Clipboard copied data not available after application is closed
=String.Empty) { Clipboard.SetText(this.infoTxt.Text); }Answered | 2 Replies | 1152 Views | Created by Harish T Badagi - Wednesday, June 5, 2013 1:46 PM | Last reply by Nelwamondo Rembuluwani Phumudzo - Wednesday, June 5, 2013 11:05 PM -
2 Votes
Copying a command-bound Hyperlink in a FlowDocument throws an exception
Hi Soren, Thank you for this feedback, I reproduce it in .Net framewok 4, and also try the solution provided from the ...Answered | 2 Replies | 4828 Views | Created by Soren Dreijer (Echobit) - Thursday, January 20, 2011 4:50 PM | Last reply by Soren Dreijer (Echobit) - Friday, January 21, 2011 4:09 AM -
1 Votes
ClipBoard.SetText Exception
The first copy seems to take a long time, maybe a second, and eventually throws an exception, but succeeds in copying the text anyway.Unanswered | 11 Replies | 28967 Views | Created by scottharwell - Thursday, June 5, 2008 12:01 AM | Last reply by Abedjoud - Wednesday, June 8, 2011 4:48 PM -
1 Votes
Copy to clipboard
Public Class Form1 Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ...Answered | 3 Replies | 2049 Views | Created by AmazingAlex - Saturday, August 20, 2011 7:54 PM | Last reply by Frank L. Smith - Saturday, August 20, 2011 11:45 PM - Items 1 to 20 of 618884 Next ›
No announcements