Nomesoft® Installed Fonts Viewer + source code (basic)

If you have completed an application and wish to share the complete source/project files with everyone then please post it in here. Source-code files only, no tutorials.
7 posts Page 1 of 1
Contributors
User avatar
Danny
VIP - Donator
VIP - Donator
Posts: 621
Joined: Sat Oct 30, 2010 8:21 pm

heey people!

I was bored so I created this(it is very very very basic!):
screens1.png
Source:
Code: Select all
Imports System.Drawing.Text

Public Class Form1

    
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim fonts As New InstalledFontCollection

        For Each one As FontFamily In fonts.Families
            ListBox1.Items.Add(one.Name)
        Next
        Label2.Text = "Amount fonts: " & ListBox1.Items.Count & " fonts are installed."
    End Sub
End Class
Application:
Nomesoft® Installed Fonts Viewer.rar
Love on!
You do not have the required permissions to view the files attached to this post.
User avatar
Dummy1912
VIP - Donator
VIP - Donator
Posts: 1969
Joined: Sat Aug 21, 2010 2:17 pm

loove; thanks

keep it going :lol:
visit us on:


http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
User avatar
comathi
Coding God
Coding God
Posts: 1242
Joined: Fri Mar 26, 2010 1:59 pm

Awesome, this is very useful for people making text editors and such :D

Keep it up :D

-Comathi-
User avatar
Danny
VIP - Donator
VIP - Donator
Posts: 621
Joined: Sat Oct 30, 2010 8:21 pm

comathi wrote:
Awesome, this is very useful for people making text editors and such :D

Keep it up :D

-Comathi-
Thanks!
User avatar
CleverBoy
VIP - Donator
VIP - Donator
Posts: 395
Joined: Mon Dec 06, 2010 8:29 pm

Good, but its old, if you found my oldest notepad you will find this xD

Thanks anyway
Code'N'Stuff
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

CleverBoy wrote:
Good, but its old, if you found my oldest notepad you will find this xD

Thanks anyway
What do you mean old ?
http://vagex.com/?ref=25000
User avatar
CleverBoy
VIP - Donator
VIP - Donator
Posts: 395
Joined: Mon Dec 06, 2010 8:29 pm

old code. ( nothing special with this i mean ) lol
Code'N'Stuff
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
7 posts Page 1 of 1
Return to “Source-Code”