3 Replies - 713 Views - Last Post: 14 November 2008 - 09:16 AM
#1
How can I show the window properties of font in VB2005
Posted 12 November 2008 - 11:14 AM
How can I call this window of font that show in the pic belwo, in Vb2005
Replies To: How can I show the window properties of font in VB2005
#2
Re: How can I show the window properties of font in VB2005
Posted 12 November 2008 - 12:35 PM
That would be the FontDialog control. You can find it in your toolbox.
#3
Re: How can I show the window properties of font in VB2005
Posted 13 November 2008 - 06:30 AM
Thank you!
#4
Re: How can I show the window properties of font in VB2005
Posted 14 November 2008 - 09:16 AM
Mangore, on 12 Nov, 2008 - 10:14 AM, said:
How can I call this window of font that show in the pic belwo, in Vb2005
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
FontDialog1.ShowDialog()
TextBox1.Font = FontDialog1.Font
End Sub
End Class
Page 1 of 1
|
|

New Topic/Question
Reply




MultiQuote




|