1

Est-il possible de créé un texte utilisable par TxtRider dans un prog en C.
Il faut que le prog crée une Var TXT que je puisse ouvrir avec txtrider.

Comment faire ???
[Email]BBK_Soft@hotmail.com[/email] - La vie est un perpetuel échec !!!

2

oui c possible.
y'a un tuto sur ti-fr sur la créaton de variables en C, je crois qu'on y parle du format txt.
sinon c pas très dur.
the car's on fire and there's no driver at the wheel
and the sewers are all muddied with a thousand lonely suicides
and a dark wind blows

GYBE! Dead Flag Blue

3

utilises des fonctions comme fopen...
avatar
Tutorial C (TI-89/92+/v200) - Articles Développement Web (PHP, Javascript, ...)
« What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against? » - Larry Wall

4

bon en gros
FILE *file
...
file = fopen("le_nom_de_ton_texte","wt")
fputs(ton_texte,file);
fputc(0,file);
fputc(TEXT_TAG,file);
fputc(0,file);
ça doit être qqchose comme ça.

the car's on fire and there's no driver at the wheel
and the sewers are all muddied with a thousand lonely suicides
and a dark wind blows

GYBE! Dead Flag Blue

5

oué kelso ... c comme ca !

pr pls de precision, tuto sur ti-fr ...

6

le mieux, c'est que tu télécharges la doc. du SDK de TI
sur TI.COM (c'est bien expliqué)

7

Merci, je vais essayer de voir.
[Email]BBK_Soft@hotmail.com[/email] - La vie est un perpetuel échec !!!