|
|
От: | Syrota | |
| Дата: | 28.02.04 16:48 | ||
| Оценка: |
|
||
var FF: file of TFont;
F: TFont; AssignFile(FF,FontName);
Reset(FF);
Read(FF, F);
Memo1.Font:=F;
CloseFile(FF); FF: File of TFont; AssignFile(FF, FontName);
Rewrite(FF);
write(FF, Memo1.Font );
CloseFile(FF);