1

I'm trying to make each letter a "square" essentially, so each letter is no more tall than it is wide, in vb.net. Is this possible? If so, how? I can't seem to find anything, and I've been searching hard.

Thanks for the help!

Cyclone
  • 17,939
  • 45
  • 124
  • 193

2 Answers2

1

Why dont you just use a fixed size font ? Or create your own font ?

David
  • 429
  • 1
  • 4
  • 10
1

The Windows API has a function called SetCurrentConsoleFontEx which you could pinvoke. It accepts a width and height, font etc. Depending on how it handles these you may also need to make and add a 'square font' to the registry list of allowed fonts (example of adding a new font to the console here.)

0x5f3759df
  • 2,349
  • 1
  • 20
  • 25