I have a text file with this:
_____ _ ___ _ _
|_ _| |_ ___ / __|_ _(_)__| |
| | | ' \/ -_) | (_ | '_| / _` |
|_| |_||_\___| \___|_| |_\__,_|
When I load the file into a TMemo
, it looks like this:
How can I fix this? Why is it doing this?
I'm using Delphi 10.2.
procedure TFrmMain.FormCreate(Sender: TObject);
begin
Memo2.Lines.LoadFromFile('C:\Users\user1\Desktop\demo\thegrid.txt');
end;