Hello! How do you save a font to the program so any computer can see it? (Not just the ones with the font installed.) This is my current code: (In form1_load)
vb Code:
  1. Dim MyFont As PrivateFontCollection = New PrivateFontCollection
  2. MyFont.AddFontFile("visitor.ttf")
  3. Me.Font = New Font(MyFont.Families(0), 12)
It sends an error when another computer runs the program. (Visitor.ttf is in the resources!)
So, what I need to jnow is, is there another way or another place to save the font instead of downloading it to another computer? Thanks.