hi,
i am asking that how can print the textbox value in print button.
pls send the source code.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
JurePosted Sep 29, 2010, 4:54 PM
If you want to display it, simply set the target control's Text property to Text property of your textbox. Example: this.myLabel.Text = this.myTextBox.Text; (assuming you have win form)
For printing see this article.