Title: Get the OEM font of the systemQuestion: Show a MS-DOS text in a TMemoAnswer:With this trick, it is very easy:procedure TForm1.Button2Click(Sender: TObject);begin Memo1.Font.Handle := GetStockObject(OEM_FIXED_FONT);end;