Solution For Text Entering To Cp
#1
Posted 01 June 2006 - 04:24 PM
Finally I found how to enter texts to CP as *.fls Files
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".
#2
Posted 01 June 2006 - 04:34 PM
when you want to enter a text to CP manager, it just take(accept) the first lines before an ENTER (I mean the RETURN key on your keyboard).
And so for a N-paragraph text, you should do the COPY-PASTE N times
This program solve this to somewhat.
Now you can use your CP as a book reader device
It's sounds great for me
U can download Free Ebooks here:
www.fictionwise.com
#3
Posted 02 June 2006 - 03:56 PM
The next major release will fix the eActivity's problem with multiple lines. It will support auto line wrapping, copy and paste of multiple lines between eActivity and Windows, and more....By the way, I forget to describe the main problem.
when you want to enter a text to CP manager, it just take(accept) the first lines before an ENTER (I mean the RETURN key on your keyboard).
And so for a N-paragraph text, you should do the COPY-PASTE N times
This program solve this to somewhat.
Now you can use your CP as a book reader device
It's sounds great for me
U can download Free Ebooks here:
www.fictionwise.com
#4
Posted 03 June 2006 - 01:08 AM
How I can use your code program in c++ or c++ of classpad SDK??
Please put in this forum all your main code
Where I can find e books but in Spanish, I speak spanish
Please put some images of your program in this forum
Thanks Fabri
#5
Posted 03 June 2006 - 04:53 AM
It's not a prorgam. The next major release of the OS has these new features.Hi i hope you understand me
How I can use your code program in c++ or c++ of classpad SDK??
#6
Posted 06 June 2006 - 12:41 PM
#7
Posted 06 June 2006 - 03:43 PM
Some months ago, SoftCalc guessed, by using reasonable arguments, that OS 3.0 will be released before the next school year (or he just knew it ). I have a feeling that this guess will be very acurate.Waiting, Waiting, Waiting... So when the next version will come?
#8
Posted 07 June 2006 - 12:26 AM
Some months ago, SoftCalc guessed, by using reasonable arguments, that OS 3.0 will be released before the next school year (or he just knew it ). I have a feeling that this guess will be very acurate.
A friend of mine said that the new OS will be in our hands in september 1- but I thing thats a long
wait to see the new OS and more now that we know that some people already has it
#9
Posted 07 June 2006 - 07:53 AM
Who said someone has it?now that we know that some people already has it
I think the owner of this website went to a conference were the new OS was announced, and he brought back some screenshots with him. Remember, in 2004 he already met several people from Casio (see picture on his website) and he gave us some new pictures
#10
Posted 07 June 2006 - 12:18 PM
Rumors, quite probably. How your friend knows such a thing?A friend of mine said that the new OS will be in our hands in september 1-
#11
Posted 08 June 2006 - 05:02 AM
Rumors, quite probably. How your friend knows such a thing?
He did not want to tell me I don't know why... I hope that he isn't right...
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users