TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
rajika nanayakkara
NA
1
9.1k
How to Print RichTextBox contains (text & images) in C#
Jul 25 2010 12:50 PM
im using virtual C# 2010 and i want to print both images & text that contain in richTextBox im using this code for set print page
private void printDocument1_PrintPage(object sender, PrintPageEventArgs e)
{
e.Graphics.DrawString(richTextBox1.Text, richTextBox1.Font, new SolidBrush(richTextBox1.ForeColor), new Point(50, 50));
}
But in this code only text is printing... How to set print page to print both image & text
Thanx
Reply
Answers (
1
)
MySQL - QUESTION
How to find the largest/longest string in a List