How To Put Text Into A PictureBox In Visual Basic 2008

Loading...

Sign in or sign up now!
Alert icon
Upgrade to the latest Flash Player for improved playback performance. Upgrade now or more info.
12,164
Loading...
Alert icon
Sign in or sign up now!
Alert icon

Uploaded by on May 31, 2009

Visual Basic 2008 - Put Text Into A Picturebox. Just a simple tutorial on DrawString, in other words, you can put text into a picturebox, not very useful but still nice to know :)
Codes:

Public Class Form1
Dim Graph As Graphics
Dim Drawbitmap As Bitmap
Dim Brush As New Drawing.SolidBrush(Color.Black)

RichTextBox1_TextChanged:
Drawbitmap = New Bitmap(PictureBox1.Width, PictureBox1.Height)
Graph = Graphics.FromImage(Drawbitmap)
PictureBox1.Image = Drawbitmap
Graph.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
Graph.DrawString(RichTextBox1.Text, RichTextBox1.Font, Brush, PictureBox1.Location)

Font:
Dim dlg As New FontDialog
If dlg.ShowDialog = Windows.Forms.DialogResult.OK Then
RichTextBox1.Font = dlg.Font
End If

Colour:
Dim dlg As New ColorDialog
If dlg.ShowDialog = Windows.Forms.DialogResult.OK Then
Brush.Color = dlg.Color
RichTextBox1.ForeColor = dlg.Color
End If

You can add save code, if ya want the codes for save, here it is:

Dim dlg As New SaveFileDialog
dlg.Filter = "Bitmap|*.bmp"
If dlg.ShowDialog = Windows.Forms.DialogResult.OK Then
PictureBox1.Image.Save(dlg.FileName)
End If

  • likes, 3 dislikes

Link to this comment:

Share to:

Uploader Comments (environmentalnerd53)

  • ...

  • its good but use less, you can't save it

  • u can, u just gotta add the save code, i have some code here:

    Dim dlg As New SaveFileDialog

    dlg.Filter = "Bitmap|*.bmp"

    If dlg.ShowDialog = Windows.Forms.DialogResult.OK Then

    PictureBox1.Image.Save(dlg.Fil­eName)

    End If

    didn't put it in because i thought people could put it in themselfs lol

see all

All Comments (36)

Sign In or Sign Up now to post a comment!
  • But how can i put the text in a picture box of an other form?

  • Thnx SO much!

  • Could you paste it on pastebin?

  • Can you make this to put the 'image text' in the textbox and not the text in the textbox in to the image box?

  • @bero231 english?

  • its not COLOUR! ITS COLOR! No "U"

  • what dlg mean,dost it realy works

Loading...

Alert icon
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more