Font problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vdraceil
    New Member
    • Jul 2007
    • 236

    Font problem

    I created a program and complied it into a .exe file.in VB6.0 .it ran well in other PCs,but the font i used while designing is missing-some other default font is displayed.
    I thought it my just get compiled along with the project.Now what do i do to bring all the fonts i've used while designing in that .exe file?
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    You need to install the desired fonts in the target systems also.

    Comment

    • vdraceil
      New Member
      • Jul 2007
      • 236

      #3
      No other way?? Will this problem be solved if i make a setup using Package n deployment wizard?

      Comment

      • lotus18
        Contributor
        • Nov 2007
        • 865

        #4
        Originally posted by vdraceil
        No other way?? Will this problem be solved if i make a setup using Package n deployment wizard?
        I suggest that copy the source font you want then store it in the Fonts Directory when using the setup utility tools.

        By using the iss script:

        Sample Code
        [code=iss]

        [Files]
        Source: "C:\WINDOWS\Fon ts\Comic.ttf"; DestDir: "{font}"
        [/code]

        Comment

        Working...