Visual Basic 2010/2008 - Get a list of fonts installed on your computer. Just a simple tutorial on getting a listbox to show all your installed fonts :) Works with Visual basic 2008 aswell.
Codes: (remove spaces if any)
Imports System.Drawing.Text
Dim fonts As New InstalledFontCollection
For Each X As FontFamily In fonts.Families
ListBox1.Items.Add(X.Name)
Next
Label1.Font = New System.Drawing.Font(ListBox1.SelectedItem.ToString, 25, FontStyle.Regular)
@PkKingX11 to what? java or object cobol?
johnnytheprick 6 months ago
@johnnytheprick Here's your answer: Upgrade.
PkKingX11 6 months ago
sheeeeeesh im still using vb 6.0. i see vb has come a long, long way.............
ok smarty pants, how do you get a list of installed fonts using vb6.0?
johnnytheprick 7 months ago
thnx!
CallOfDutyM 11 months ago
u include code in description, which is why i love ur vids even though ive never seen em completely
08arijit 1 year ago
@nehalvpatel Oh, ok i thought there was a option to add it to the program
TehPhoenixOwnage 1 year ago
@TehPhoenixOwnage
You can make a font.. But when you use it for your program, you have to give it to the people that use it too...
nehalvpatel 1 year ago
Is there a way to make you're own fonts for you're program ?
TehPhoenixOwnage 1 year ago
I hate that question, just type them... but if you're to lazy look in the description (This was useless because you posted that comment over 2 months ago.)
ZethSlayer 1 year ago
Tip for people:
Use this code to make a custom font chooser in your notepad ;)
I did.
reboh79 2 years ago