Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Displaying French characters?
#2
Here it is, is used Google translator, I only know "good morning" in French Smile

Program create french text on the screen and also try create french named file and then test it if it exist and write message in french to screen. It works fine in my system (Win10)

Code: (Select All)

Screen 0
_Font _LoadFont("C:\windows\fonts\cour.ttf", 20, "MONOSPACE")

Restore Microsoft_windows_cp1252:
For ASCIIcode = 128 To 255
    Read unicode
    _MapUnicode unicode To ASCIIcode
Next

Text$ = "Il s'agit d'un test de texte en français."
Print Text$

file$ = "DÉPOSER"
ff = FreeFile
Open file$ For Binary As ff
Close ff

If _FileExists(file$) Then Print "Fichier avec nom français créé": Kill file$ Else Print "Fichier avec nom français non créé"


End


Microsoft_windows_cp1252:
Data 8364,0,8218,402,8222,8230,8224,8225,710,8240,352,8249,338,0,381,0
Data 0,8216,8217,8220,8221,8226,8211,8212,732,8482,353,8250,339,0,382,376
Data 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175
Data 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191
Data 192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207
Data 208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223
Data 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239
Data 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255


Reply


Messages In This Thread
Displaying French characters? - by bplus - 04-30-2025, 07:01 PM
RE: Displaying French characters? - by Petr - 04-30-2025, 08:07 PM
RE: Displaying French characters? - by Alex-Ubik - 05-06-2025, 02:45 PM
RE: Displaying French characters? - by bplus - 04-30-2025, 08:49 PM
RE: Displaying French characters? - by Petr - 05-06-2025, 04:58 PM
RE: Displaying French characters? - by Alex-Ubik - 05-06-2025, 05:33 PM
RE: Displaying French characters? - by Petr - 05-06-2025, 06:14 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  printing characters > chr$(127) madscijr 18 2,191 03-11-2025, 07:33 PM
Last Post: madscijr
  Need some help getting characters to follow each other correctly Cobalt 6 1,068 11-22-2024, 01:19 AM
Last Post: Cobalt
  Error displaying 256 color PCX image program? macalwen 8 1,680 07-05-2024, 01:39 PM
Last Post: SMcNeill
  control characters in Change dialog box digitalmouse 10 1,881 05-09-2024, 02:17 AM
Last Post: digitalmouse
  _TITLE and extended ASCII characters. Pete 37 6,530 11-16-2022, 01:40 AM
Last Post: Pete

Forum Jump:


Users browsing this thread: 1 Guest(s)