![:rockband:](/dot/public/style_emoticons/default/rockband.gif)
![:D](/dot/public/style_emoticons/default/biggrin.png)
Finally I found how to enter texts to CP as *.fls Files
![:)](/dot/public/style_emoticons/default/smile.png)
U should use this program which is writen in "C":
#include <stdio.h>
void main()
{
FILE *in, *out;
char ch;
in=fopen("d:\\DATA.TXT","rt");
out=fopen("d:\\result.txt","wt");
while (!feof(in))
{
ch=fgetc(in);
if (ch!='\n')
fputc(ch, out);
else
fputc('*', out);
}
fclose(in);
fclose(out);
}
In line 6 "d:\\..." indicate the file path and file name.
In line 7 "d:\\..." indicate the resualt file path and it's name.
In line 14 " '*' "indicate the the character which should be replaced insread ENTER character.
So you can replaced it with whatever you want for example " 'A ' " replace ENTERs with "A".