Accueil > > > LIBRAIRIE LANGUAGES
LIBRAIRIE LANGUAGES
Information sur la source
Description
Salut Apres de longues heures de travail je viens de creer un systeme de multilangues en C. Je poste ici pour avoir votre avis.
Source
- /*
- main.c
-
- Author: AstroProduction
-
- Goal: main directions
-
- Created:20/04/2010
- Last Updated: 23/04/2010
-
- Copyright 2010. All rights reserved to AstroProduction
- astro567@hotmail.com
- User Rights:
- All Rights, just don't delete the headers.
- */
-
- #include "config.h"
-
- int main (int argc, char *argv[])
- {
- char lang[3]="en";
- int numberFiles=langCountFiles(lang);
- LANG_LINE files[numberFiles];
- langCountLines(lang,numberFiles,files);
- langCountC(lang,numberFiles,files);
- langShowContent(numberFiles,files);
- langFree(numberFiles,files);
- return EXIT_SUCCESS;
- }
- </code></secret>
-
- /*
- lang.c
-
- Author: AstroProduction
-
- Goal: All functions about the languages.
-
- Created:20/04/2010
- Last Updated: 23/04/2010
-
- Copyright 2010. All rights reserved to AstroProduction
- astro567@hotmail.com
- User Rights:
- All Rights, just don't delete the headers.
- */
-
- #include "config.h"
- #include "lang.h"
-
- int langCountFiles(char* lang)
- {
- int fileLength=0;
- char *path=langInitPath(lang);
- DIR *pdir=langOpen(path);
- if(pdir!=NULL)
- {
- struct dirent *pent;
- while(pent=readdir(pdir))
- {
- if(isalnum(pent->d_name[0]))
- {
- if(strchr(pent->d_name,'.')) fileLength++;
- }
- }
- closedir(path);
- }
- free(path);
- return fileLength;
- }
-
- char* langInitPath(char* lang)
- {
- int pathLength=strlen(LANG)+strlen(lang);
- char *path=(char*)malloc(pathLength*sizeof(path));
- if(path==NULL)
- {
- fprintf(stderr,"Can't allowed memory to path (file:lang.c line:44)\n");
- exit(EXIT_FAILURE);
- }
- pathLength=sprintf(path,LANG"%s",lang);
- return path;
- }
-
- DIR* langOpen(char* path)
- {
- DIR *pdir;
- if(!(pdir=opendir(path)))
- {
- fprintf(stderr,"Can't open %s. Check it exist and try again. (file:lang.c line:56)\n",path);
- return NULL;
- }
- return pdir;
- }
-
- void langCountLines(char* lang,int numberFiles,LANG_LINE files[])
- {
- int j=0;
- char *path=langInitPath(lang);
- DIR *pdir=langOpen(path);
- if(pdir!=NULL)
- {
- struct dirent *pent;
- while(pent=readdir(pdir))
- {
- char *fullPath=malloc((strlen(path)+strlen(pent->d_name))*sizeof(char*));
- if(!fullPath)
- {
- fprintf(stderr,"Can't allowed memory to fullPath (file:lang.c line:75)\n");
- exit(EXIT_FAILURE);
- }
- sprintf(fullPath,"%s\\%s",path,pent->d_name);
- if(isalnum(pent->d_name[0]))
- {
- if(strchr(pent->d_name,'.'))
- {
- FILE *file=fopen(fullPath,"r");
- if(file==NULL)
- {
- fprintf(stderr,"Can't open file %s (file:lang.c line:86)\n",fullPath);
- exit(EXIT_FAILURE);
- }
- files[j].fileName=malloc(pent->d_namlen*sizeof(char));
- if(files[j].fileName==NULL)
- {
- fprintf(stderr,"Can't allowed memory for fileName (file:lang.c line:92)\n");
- exit(EXIT_FAILURE);
- }
- strcpy(files[j].fileName,pent->d_name);
- files[j].numberLines=0;
- files[j].maxLengthLine=0;
- int c=0,maxLength=0;
- while(c!=EOF)
- {
- c=fgetc(file);
- maxLength++;
- if(c=='\n')
- {
- if(maxLength > files[j].maxLengthLine)
- files[j].maxLengthLine=maxLength;
- maxLength=0;
- (files[j].numberLines)++;
- }
- }
- fclose(file);
- j++;
- }
- }
- free(fullPath);
- }
- closedir(path);
- }
- free(path);
- }
-
- //*
- void langCountC(char lang[],int numberFiles,LANG_LINE files[])
- {
- char *path=langInitPath(lang);
- DIR *pdir=langOpen(path);
- int j=0,i=0;
- if(pdir!=NULL)
- {
- struct dirent *pent;
- while(pent=readdir(pdir))
- {
- char *fullPath=malloc((strlen(path)+strlen(pent->d_name))*sizeof(char*));
- if(!fullPath)
- {
- fprintf(stderr,"Can't allowed memory to fullPath (file:lang.c line:136)\n");
- exit(EXIT_FAILURE);
- }
- sprintf(fullPath,"%s\\%s",path,pent->d_name);
- if(isalnum(pent->d_name[0]))
- {
- if(strchr(pent->d_name,'.'))
- {
- FILE *file=fopen(fullPath,"r");
- if(file==NULL)
- {
- fprintf(stderr,"Can't open file %s (file:lang.c line:147)\n",fullPath);
- exit(EXIT_FAILURE);
- }
- int c=0;
- files[j].contentLine=malloc((files[j].maxLengthLine+1)*sizeof(char));
- if(!(files[j].contentLine))
- {
- fprintf(stderr,"Can't allow memory (file:lang.c line:154)\n");
- exit(EXIT_FAILURE);
- }
- for(i=0;i<=files[j].numberLines;i++)
- {
- files[j].contentLine[i]=malloc((files[j].maxLengthLine+1)*sizeof(char*));
- }
- i=0;
- while(fgets(files[j].contentLine[i],files[j].maxLengthLine+1,file)!=NULL)
- {
- files[j].contentLine[i][strlen(files[j].contentLine[i])-1]='\0';
- i++;
- }
- fclose(file);
- j++;
- }
- }
- free(fullPath);
- }
- closedir(path);
- }
- free(path);
- }
-
- void langShowContent(int numberFiles,LANG_LINE files[])
- {
- int i=0,j=0;
- for(j=0;j<numberFiles;j++)
- {
- fprintf(stdout,"%s:\n",files[j].fileName);
- for(i=0;i<files[j].numberLines;i++)
- fprintf(stdout,"%d:%d => %s\n",j,i,files[j].contentLine[i]);
- fprintf(stdout,"\n");
- }
- }
-
- void langFree(int numberFiles,LANG_LINE files[])
- {
- int i=0,j=0;
- for(j=0;j<numberFiles;j++)
- {
- for(i=0;i<files[j].numberLines;i++)
- free(files[j].contentLine[i]);
- free(files[j].contentLine);
- free(files[j].fileName);
- }
- }
-
- /*
- lang.h
-
- Author: AstroProduction
-
- Goal: Prototypes of lang.c
-
- Created:20/04/2010
- Last Updated: 23/04/2010
-
- Copyright 2010. All rights reserved to AstroProduction
- astro567@hotmail.com
- User Rights:
- All Rights, just don't delete the headers.
- */
-
- #ifndef LANGH_
- #define LANGH_
-
- /*
- @struct LANG_LINE
- @parameters:
- @int numberLines: number of lines in a file;
- @int maxLengthLine: line longest length in all the file;
- @char **contentLine: contain the sentence of the line;
- */
- typedef struct{
- int numberLines;
- int maxLengthLine;
- char **contentLine;
- char *fileName;
- }LANG_LINE;
-
- /*
- @function langCountFiles
- @return: int: number of files
- @parameters:
- @char* lang: the language name in two letters (eg:"en" for English)
- @steps:
- @init path;
- @open the language directory
- @read the directory
- @count number of files
- @close directory
- @free memory
- */
- int langCountFiles(char* lang);
-
- /*
- @function langInitPath
- @return char*: full directory to the language folder
- @parameters:
- @char* lang: the language name in two letters (eg:"en" for English)
- @steps:
- @count the length of the path
- @write the path
- */
- char* langInitPath(char* lang);
-
- /*
- @function langOpen
- @return DIR*: pointer to the directory or NULL
- @parameters:
- @char* path: path to the directory concerned
- @steps:
- @open folder: fail return NULL, success return pointer to the folder
- */
- DIR* langOpen(char* path);
-
- /*
- @function langCountLines
- @return void
- @parameters:
- @char* lang: the language name in two letters (eg:"en" for English)
- @int numberFiles: number of files in the folder
- @LANG_LINE (*files)[]: pointer to the struct
- @steps:
- @init path;
- @open the language directory
- @read the directory
- @get fullpath
- @check file name (First lette is alnum and contain an extension)
- @open file
- @count the line that have the max length
- @count number of lines
- @close and free all.
- */
- void langCountLines(char* lang,int numberFiles,LANG_LINE files[]);
-
- /*
- @function langCountC
- @return void
- @parameters:
- @char* lang: the language name in two letters (eg:"en" for English)
- @int numberFiles: number of files in the folder
- @LANG_LINE (*files)[]: pointer to the struct
- @steps:
- @init path;
- @open the language directory
- @read the directory
- @get fullpath
- @check file name (First lette is alnum and contain an extension)
- @open file
- @allow memory for file[j].content[i]
- @write content in file[j].content[i]
- @close and free all.
- */
- void langCountC(char lang[],int numberFiles,LANG_LINE files[]);
-
- /*
- @function langShowContent
- @return void
- @parameters:
- @int numberFiles: number of files in the folder
- @LANG_LINE (*files)[]: pointer to the struct
- @steps:
- @Write the content with a loop
- */
- void langShowContent(int numberFiles,LANG_LINE files[]);
-
- /*
- @function langFree
- @return void
- @parameters:
- @int numberFiles: number of files in the folder
- @LANG_LINE (*files)[]: pointer to the struct
- @steps:
- @Free the content with a loop
- */
- void langFree(int numberFiles,LANG_LINE files[]);
-
- #endif
-
- /*
- config.h
-
- Author: AstroProduction
-
- Goal: General definitions for all the application
-
- Created:20/04/2010
- Last Updated: 20/04/2010
-
- Copyright 2010. All rights reserved to AstroProduction
- astro567@hotmail.com
- User Rights:
- All Rights, just don't delete the headers.
- */
-
- #ifndef CONFIGH_
- #define CONFIGH_
-
- #include <stdlib.h>
- #include <stdio.h>
- #include <ctype.h>
- #include <dirent.h>
- #include "lang.h"
-
- #define LANG "languages\\"
-
- #endif
-
- /*
- versions.c
-
- Author: AstroProduction
-
- Goal: Resume all modifications
-
- Created:23/04/2010
- Last Updated: 23/04/2010
-
- Copyright 2010. All rights reserved to AstroProduction
- astro567@hotmail.com
- User Rights:
- All Rights, just don't delete the headers.
-
- Version: 1.0
-
- => System lang completed
-
- */
-
- utilisation:
- Definition du repertoire contenant les langues dans config.h
- Definition de la langues dans la variable langues tel que defini dans le main.c (string de 2 lettres)
- Il faut avoir creer le repertoire contenant les langues et les sous repertoires de langues: languages\\en\\ dans mon cas.
-
- La fonction langShowContent ecris dans le stdout le nom du fichier les nombres files et content line respectivement ainsi que le contenu de la lignes correspondant.
- Par exemple:
- <code type="console">
- main.txt
- 0:0 Bienvenue
- 0:1 A bientot
- </code>
-
- Pour afficher "A bientot" dans l'application il suffira d'<gras><taille valeur="gros">ecrire avant la fonction langFree</taille></gras>:
- <secret><code type="c">
- printf("%s",files[0].contentLine[1]);
- </code></secret>
-
- J'espere que mes explications sont assez clair.
- Merci pour vos reactions a l'avance.
-
- A bientot
- Astro
/*
main.c
Author: AstroProduction
Goal: main directions
Created:20/04/2010
Last Updated: 23/04/2010
Copyright 2010. All rights reserved to AstroProduction
astro567@hotmail.com
User Rights:
All Rights, just don't delete the headers.
*/
#include "config.h"
int main (int argc, char *argv[])
{
char lang[3]="en";
int numberFiles=langCountFiles(lang);
LANG_LINE files[numberFiles];
langCountLines(lang,numberFiles,files);
langCountC(lang,numberFiles,files);
langShowContent(numberFiles,files);
langFree(numberFiles,files);
return EXIT_SUCCESS;
}
</code></secret>
/*
lang.c
Author: AstroProduction
Goal: All functions about the languages.
Created:20/04/2010
Last Updated: 23/04/2010
Copyright 2010. All rights reserved to AstroProduction
astro567@hotmail.com
User Rights:
All Rights, just don't delete the headers.
*/
#include "config.h"
#include "lang.h"
int langCountFiles(char* lang)
{
int fileLength=0;
char *path=langInitPath(lang);
DIR *pdir=langOpen(path);
if(pdir!=NULL)
{
struct dirent *pent;
while(pent=readdir(pdir))
{
if(isalnum(pent->d_name[0]))
{
if(strchr(pent->d_name,'.')) fileLength++;
}
}
closedir(path);
}
free(path);
return fileLength;
}
char* langInitPath(char* lang)
{
int pathLength=strlen(LANG)+strlen(lang);
char *path=(char*)malloc(pathLength*sizeof(path));
if(path==NULL)
{
fprintf(stderr,"Can't allowed memory to path (file:lang.c line:44)\n");
exit(EXIT_FAILURE);
}
pathLength=sprintf(path,LANG"%s",lang);
return path;
}
DIR* langOpen(char* path)
{
DIR *pdir;
if(!(pdir=opendir(path)))
{
fprintf(stderr,"Can't open %s. Check it exist and try again. (file:lang.c line:56)\n",path);
return NULL;
}
return pdir;
}
void langCountLines(char* lang,int numberFiles,LANG_LINE files[])
{
int j=0;
char *path=langInitPath(lang);
DIR *pdir=langOpen(path);
if(pdir!=NULL)
{
struct dirent *pent;
while(pent=readdir(pdir))
{
char *fullPath=malloc((strlen(path)+strlen(pent->d_name))*sizeof(char*));
if(!fullPath)
{
fprintf(stderr,"Can't allowed memory to fullPath (file:lang.c line:75)\n");
exit(EXIT_FAILURE);
}
sprintf(fullPath,"%s\\%s",path,pent->d_name);
if(isalnum(pent->d_name[0]))
{
if(strchr(pent->d_name,'.'))
{
FILE *file=fopen(fullPath,"r");
if(file==NULL)
{
fprintf(stderr,"Can't open file %s (file:lang.c line:86)\n",fullPath);
exit(EXIT_FAILURE);
}
files[j].fileName=malloc(pent->d_namlen*sizeof(char));
if(files[j].fileName==NULL)
{
fprintf(stderr,"Can't allowed memory for fileName (file:lang.c line:92)\n");
exit(EXIT_FAILURE);
}
strcpy(files[j].fileName,pent->d_name);
files[j].numberLines=0;
files[j].maxLengthLine=0;
int c=0,maxLength=0;
while(c!=EOF)
{
c=fgetc(file);
maxLength++;
if(c=='\n')
{
if(maxLength > files[j].maxLengthLine)
files[j].maxLengthLine=maxLength;
maxLength=0;
(files[j].numberLines)++;
}
}
fclose(file);
j++;
}
}
free(fullPath);
}
closedir(path);
}
free(path);
}
//*
void langCountC(char lang[],int numberFiles,LANG_LINE files[])
{
char *path=langInitPath(lang);
DIR *pdir=langOpen(path);
int j=0,i=0;
if(pdir!=NULL)
{
struct dirent *pent;
while(pent=readdir(pdir))
{
char *fullPath=malloc((strlen(path)+strlen(pent->d_name))*sizeof(char*));
if(!fullPath)
{
fprintf(stderr,"Can't allowed memory to fullPath (file:lang.c line:136)\n");
exit(EXIT_FAILURE);
}
sprintf(fullPath,"%s\\%s",path,pent->d_name);
if(isalnum(pent->d_name[0]))
{
if(strchr(pent->d_name,'.'))
{
FILE *file=fopen(fullPath,"r");
if(file==NULL)
{
fprintf(stderr,"Can't open file %s (file:lang.c line:147)\n",fullPath);
exit(EXIT_FAILURE);
}
int c=0;
files[j].contentLine=malloc((files[j].maxLengthLine+1)*sizeof(char));
if(!(files[j].contentLine))
{
fprintf(stderr,"Can't allow memory (file:lang.c line:154)\n");
exit(EXIT_FAILURE);
}
for(i=0;i<=files[j].numberLines;i++)
{
files[j].contentLine[i]=malloc((files[j].maxLengthLine+1)*sizeof(char*));
}
i=0;
while(fgets(files[j].contentLine[i],files[j].maxLengthLine+1,file)!=NULL)
{
files[j].contentLine[i][strlen(files[j].contentLine[i])-1]='\0';
i++;
}
fclose(file);
j++;
}
}
free(fullPath);
}
closedir(path);
}
free(path);
}
void langShowContent(int numberFiles,LANG_LINE files[])
{
int i=0,j=0;
for(j=0;j<numberFiles;j++)
{
fprintf(stdout,"%s:\n",files[j].fileName);
for(i=0;i<files[j].numberLines;i++)
fprintf(stdout,"%d:%d => %s\n",j,i,files[j].contentLine[i]);
fprintf(stdout,"\n");
}
}
void langFree(int numberFiles,LANG_LINE files[])
{
int i=0,j=0;
for(j=0;j<numberFiles;j++)
{
for(i=0;i<files[j].numberLines;i++)
free(files[j].contentLine[i]);
free(files[j].contentLine);
free(files[j].fileName);
}
}
/*
lang.h
Author: AstroProduction
Goal: Prototypes of lang.c
Created:20/04/2010
Last Updated: 23/04/2010
Copyright 2010. All rights reserved to AstroProduction
astro567@hotmail.com
User Rights:
All Rights, just don't delete the headers.
*/
#ifndef LANGH_
#define LANGH_
/*
@struct LANG_LINE
@parameters:
@int numberLines: number of lines in a file;
@int maxLengthLine: line longest length in all the file;
@char **contentLine: contain the sentence of the line;
*/
typedef struct{
int numberLines;
int maxLengthLine;
char **contentLine;
char *fileName;
}LANG_LINE;
/*
@function langCountFiles
@return: int: number of files
@parameters:
@char* lang: the language name in two letters (eg:"en" for English)
@steps:
@init path;
@open the language directory
@read the directory
@count number of files
@close directory
@free memory
*/
int langCountFiles(char* lang);
/*
@function langInitPath
@return char*: full directory to the language folder
@parameters:
@char* lang: the language name in two letters (eg:"en" for English)
@steps:
@count the length of the path
@write the path
*/
char* langInitPath(char* lang);
/*
@function langOpen
@return DIR*: pointer to the directory or NULL
@parameters:
@char* path: path to the directory concerned
@steps:
@open folder: fail return NULL, success return pointer to the folder
*/
DIR* langOpen(char* path);
/*
@function langCountLines
@return void
@parameters:
@char* lang: the language name in two letters (eg:"en" for English)
@int numberFiles: number of files in the folder
@LANG_LINE (*files)[]: pointer to the struct
@steps:
@init path;
@open the language directory
@read the directory
@get fullpath
@check file name (First lette is alnum and contain an extension)
@open file
@count the line that have the max length
@count number of lines
@close and free all.
*/
void langCountLines(char* lang,int numberFiles,LANG_LINE files[]);
/*
@function langCountC
@return void
@parameters:
@char* lang: the language name in two letters (eg:"en" for English)
@int numberFiles: number of files in the folder
@LANG_LINE (*files)[]: pointer to the struct
@steps:
@init path;
@open the language directory
@read the directory
@get fullpath
@check file name (First lette is alnum and contain an extension)
@open file
@allow memory for file[j].content[i]
@write content in file[j].content[i]
@close and free all.
*/
void langCountC(char lang[],int numberFiles,LANG_LINE files[]);
/*
@function langShowContent
@return void
@parameters:
@int numberFiles: number of files in the folder
@LANG_LINE (*files)[]: pointer to the struct
@steps:
@Write the content with a loop
*/
void langShowContent(int numberFiles,LANG_LINE files[]);
/*
@function langFree
@return void
@parameters:
@int numberFiles: number of files in the folder
@LANG_LINE (*files)[]: pointer to the struct
@steps:
@Free the content with a loop
*/
void langFree(int numberFiles,LANG_LINE files[]);
#endif
/*
config.h
Author: AstroProduction
Goal: General definitions for all the application
Created:20/04/2010
Last Updated: 20/04/2010
Copyright 2010. All rights reserved to AstroProduction
astro567@hotmail.com
User Rights:
All Rights, just don't delete the headers.
*/
#ifndef CONFIGH_
#define CONFIGH_
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <dirent.h>
#include "lang.h"
#define LANG "languages\\"
#endif
/*
versions.c
Author: AstroProduction
Goal: Resume all modifications
Created:23/04/2010
Last Updated: 23/04/2010
Copyright 2010. All rights reserved to AstroProduction
astro567@hotmail.com
User Rights:
All Rights, just don't delete the headers.
Version: 1.0
=> System lang completed
*/
utilisation:
Definition du repertoire contenant les langues dans config.h
Definition de la langues dans la variable langues tel que defini dans le main.c (string de 2 lettres)
Il faut avoir creer le repertoire contenant les langues et les sous repertoires de langues: languages\\en\\ dans mon cas.
La fonction langShowContent ecris dans le stdout le nom du fichier les nombres files et content line respectivement ainsi que le contenu de la lignes correspondant.
Par exemple:
<code type="console">
main.txt
0:0 Bienvenue
0:1 A bientot
</code>
Pour afficher "A bientot" dans l'application il suffira d'<gras><taille valeur="gros">ecrire avant la fonction langFree</taille></gras>:
<secret><code type="c">
printf("%s",files[0].contentLine[1]);
</code></secret>
J'espere que mes explications sont assez clair.
Merci pour vos reactions a l'avance.
A bientot
Astro
Conclusion
utilisation: Definition du repertoire contenant les langues dans config.h Definition de la langues dans la variable langues tel que defini dans le main.c (string de 2 lettres) Il faut avoir creer le repertoire contenant les langues et les sous repertoires de langues: languages\\en\\ dans mon cas.
La fonction langShowContent ecris dans le stdout le nom du fichier les nombres files et content line respectivement ainsi que le contenu de la lignes correspondant. Par exemple: main.txt 0:0 Bienvenue 0:1 A bientot
Pour afficher "A bientot" dans l'application il suffira d'ecrire avant la fonction langFree:
printf("%s",files[0].contentLine[1]);
J'espere que mes explications sont assez clair. Merci pour vos reactions a l'avance.
A bientot Astro
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Multi language [ par obby ]
Salut, J'ai mon appli devellopé en MFC, mais je dois pouvoir choisir la langue ( francais ou anglais). Je ne sais pas du tout comment m'y
Programmation multi langue [ par VinceVG ]
Salut,Je viens de télécharger une application en anglais qui ne prend pas en charge de fichier de language. Le team de dévelloppement ma répondu que c
kel est le language le plus aproprié ???? [ par jony24 ]
donc je vous explique j aimerai savoir kel est le language le plus aproprié pour programer un je de cartes avec des regles assez complexes (genre "tri
Serveur TCP multi-client [ par meech ]
Bonjour,Je me suis attelé au développement d'un serveur TCP (extensible à divers protocoles) sous Win32 en C.Concrètement, je souhaiterais connaitre l
labyrinthe en language c [ par timodu13 ]
Salut tout le monde!Voila je dois effectuer un labyrinthe en language c avec un curseur ki se déplace a l interieur !!!C mes debuts en language c
traduction du morse en language C!!! [ par Despeman ]
Nous sommes étudiants en IUT GTR et la programmation n'est pas notre point fort, on a un TP à rendre mais nous avons des difficultés si
Pointeur de fonction : multi-appels [ par Gendal67 ]
Bonjour tout le monde,Les pointeurs de fonction me posent problême!! sniff!! En fait, j'ai un pointeur de fonction pointant sur une fonction se t
prise d'une photo a l'aide d'une webcam en language c [ par jedi_vulture ]
Bonjour,je débute dans le monde de la programmation et je cherche a connecter une webcam a l'aide du language c.une fois la webcam connecter je d
le language C accedant à un SGBD et HTML: HELP!!! [ par refresh5 ]
Bonjour,j'ai un projet à faire pour mes cours, et je souhaiterais savoir s'il est possible d'utiliser le language C avec du HTML.le projet:J'ai u
system de script [ par lalilo ]
bonjour voila je suis entrein de créer un logiciel de création de jeu videos style "RPG Maker" et je voudrais implanter un language de scrip
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Forum
RE : SAC A DOS RE : SAC A DOS par hadjkaddour
Cliquez pour lire la suite par hadjkaddour
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|