Accueil > > > [VC6] [TPE] SIMULATION WIN32 D'UN SYSTEME D'ALARME FAIT POUR LES TPE 2004/2005
[VC6] [TPE] SIMULATION WIN32 D'UN SYSTEME D'ALARME FAIT POUR LES TPE 2004/2005
Information sur la source
Description
Pour les TPE, on a choisis de faire un systeme d'alarme. N'ayant pas eu le tps de le realiser, j'ai eu l'idee de faire cette simulation. Le code est tres bien commente (au cas ou j'aurai eu a expliquer le code). Je trouve donc que c'est un bon tutorial pour apprendre a utiliser les images et le son en win32 facilement et avec des dialogboxes (a par pour le clavier je vois pas quoi leurs reprocher ...).
Source
- // TPE.cpp : Defines the entry point for the application.
- //
-
- #include "stdafx.h"
- #include "windows.h"
- #include "mmsystem.h" //Pour le son
- #include "resource.h"
- #include "stdlib.h"
-
- #pragma comment( lib, "winmm.lib" ) //Pour le son
-
- //Prototypes
- LRESULT CALLBACK MainCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
- LRESULT CALLBACK InputCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
- LRESULT CALLBACK SchemaCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
-
- //Variables Globales
- bool DOORCLOSED = true;
- bool WINDOW1CLOSED = true;
- bool WINDOW2CLOSED = true;
- HINSTANCE hInstance;
- int tempo=3000;
-
- //Point d'entree du prog
- int APIENTRY WinMain(HINSTANCE hinstance,
- HINSTANCE hPrevInstance,
- LPSTR lpCmdLine,
- int nCmdShow)
- {
- //Declaration variables
- MSG message;
- hInstance=hinstance;
-
- // Ouvre la Dialogbox
- DialogBox(hinstance, (LPCTSTR)IDD_MAIN, NULL, (DLGPROC)MainCallBack);
-
- //Recoit les msg de windows
- while (GetMessage (&message, NULL, 0, 0))
- {
- TranslateMessage (&message) ;
- DispatchMessage (&message) ;
- }
-
- return 0;
- }
-
- //CallBack du dialog Main
- LRESULT CALLBACK MainCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- HBITMAP bmp,bmpled;
- HWND handle;
-
- switch (message)
- {
- case WM_INITDIALOG:
- break;
-
- case WM_COMMAND:
-
- if (LOWORD(wParam) == IDC_CDOOR) //Si c'est la porte
- {
- handle=GetDlgItem(hwnd,IDC_CDOOR);
- //Change l'image de la porte, de la led et enclenche/declanche le son
- if(DOORCLOSED == true)
- {
- bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_DOOROPEN));
- bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDA));
- SetWindowText(handle,"Fermer Porte");
- KillTimer(hwnd,1); // au cas ou le type reouvre la porte ....
- PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
- DOORCLOSED=false;
- }
- else
- {
- bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_DOORCLOSE));
- bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDE));
- SetWindowText(handle,"Ouvrir Porte");
- DOORCLOSED=true;
- if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
- SetTimer(hwnd, 1, tempo, NULL);
- }
-
- //Affiche la porte
- handle = GetDlgItem(hwnd,IDC_DOOR);
- SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmp);
-
- //Affiche la led
- handle = GetDlgItem(hwnd,IDC_LED1);
- SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmpled);
- }
-
- if (LOWORD(wParam) == IDC_CWINDOW1) //Si c'est la fenetre1
- {
- //Change l'image de la porte, de la led et enclenche/declanche le son
- handle=GetDlgItem(hwnd,IDC_CWINDOW1);
- if(WINDOW1CLOSED == true)
- {
- bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWOPENED));
- bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDA));
- SetWindowText(handle,"Fermer Fenetre");
- KillTimer(hwnd,1); // au cas ou le type réouvre la porte ....
- PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
- WINDOW1CLOSED=false;
- }
- else
- {
- bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWCLOSED));
- bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDE));
- SetWindowText(handle,"Ouvrir Fenetre");
- WINDOW1CLOSED=true;
- if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
- SetTimer(hwnd, 1, tempo, NULL);
- }
-
- //Affiche la porte
- handle = GetDlgItem(hwnd,IDC_WINDOW1);
- SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmp);
-
- //Affiche la led
- handle = GetDlgItem(hwnd,IDC_LED2);
- SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmpled);
- }
-
- if (LOWORD(wParam) == IDC_CWINDOW2) //Si c'est la fenetre2
- {
- //Change l'image de la porte, de la led et enclenche/declanche le son
- handle=GetDlgItem(hwnd,IDC_CWINDOW2);
- if(WINDOW2CLOSED == true)
- {
- bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWOPENED));
- bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDA));
- SetWindowText(handle,"Fermer Fenetre");
- KillTimer(hwnd,1); // au cas ou le type réouvre la porte ....
- PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
- WINDOW2CLOSED=false;
- }
- else
- {
- bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWCLOSED));
- bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDE));
- SetWindowText(handle,"Ouvrir Fenetre");
- WINDOW2CLOSED=true;
- if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
- SetTimer(hwnd, 1, tempo, NULL);
- }
-
- //Affiche la porte
- handle = GetDlgItem(hwnd,IDC_WINDOW2);
- SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmp);
-
- //Affiche la led
- handle = GetDlgItem(hwnd,IDC_LED3);
- SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmpled);
- }
-
- if (LOWORD(wParam) == IDC_DTEMPO)
- {
- DialogBox(hInstance, (LPCTSTR)IDD_INPUTBOX, NULL, (DLGPROC)InputCallBack);
-
- }
-
- if (LOWORD(wParam) == IDC_CSTOPTEMPO)
- {
- if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
- {
- PlaySound(NULL, GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC);
- KillTimer(hwnd,1);
- }
- else
- {
- PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
- SetTimer(hwnd, 1, tempo, NULL);
- }
-
- }
-
- if (LOWORD(wParam) == IDR_SCHEMA)
- {
- DialogBox(hInstance, (LPCTSTR)IDD_SCHEMA, NULL, (DLGPROC)SchemaCallBack);
- }
-
- if (LOWORD(wParam) == IDC_QUIT)
- {
- PostQuitMessage(0);
- }
-
- if (LOWORD(wParam) == IDC_ABOUT)
- {
- MessageBox(hwnd,"Fait par MùPùF pour le TPE(2004/2005) de Bigou Karim, Palayret Fabien et Peres Martin.\nCe programme (écris avec vc++ 6) montre le fonctionnement de notre systeme d'alarme gungrave.","About",MB_OK);
- }
- break;
-
- case WM_TIMER:
- PlaySound(NULL, GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC);
- KillTimer(hwnd,1);
- break;
-
- case WM_CLOSE:
- EndDialog(hwnd, LOWORD(wParam));
- break;
-
- case WM_DESTROY:
- PostQuitMessage(0);;
- break;
-
- return DefWindowProc (hwnd, message, wParam, lParam);
- }
- return 0;
- }
-
- //CallBack du dialog InputBox
- LRESULT CALLBACK InputCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- //Variables
- int res;
- HWND handle;
- char* Ctempo;
-
- switch (message)
- {
- case WM_INITDIALOG:
- handle = GetDlgItem(hwnd,IDC_RES);
- SetWindowText(handle,itoa(tempo,"",10));
- break;
-
- case WM_COMMAND:
- if (LOWORD(wParam) == IDOK)
- {
- handle = GetDlgItem(hwnd,IDC_RES);
- Ctempo=new char[7];
- GetWindowText(handle,Ctempo,6);
- tempo=atoi(Ctempo);
- delete Ctempo;
- EndDialog(hwnd, LOWORD(wParam));
- }
- if (LOWORD(wParam) == IDC_ANNULER)
- {
- res=MessageBox(hwnd,"Attention, vous allez annuler le changement de Temporisation\nEtes vous sur de vouloir ?","Attention", MB_YESNO+MB_ICONWARNING);
- if(res==IDYES)
- EndDialog(hwnd, LOWORD(wParam));
- }
-
- break;
-
- case WM_CLOSE:
- EndDialog(hwnd, LOWORD(wParam));
- break;
-
- return DefWindowProc (hwnd, message, wParam, lParam);
- }
- return 0;
- }
- //CallBack du dialog InputBox
- LRESULT CALLBACK SchemaCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- switch (message)
- {
- case WM_COMMAND:
- if (LOWORD(wParam) == IDC_OK)
- EndDialog(hwnd, LOWORD(wParam));
- break;
-
- case WM_CLOSE:
- EndDialog(hwnd, LOWORD(wParam));
- break;
-
- return DefWindowProc (hwnd, message, wParam, lParam);
- }
- return 0;
- }
// TPE.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "windows.h"
#include "mmsystem.h" //Pour le son
#include "resource.h"
#include "stdlib.h"
#pragma comment( lib, "winmm.lib" ) //Pour le son
//Prototypes
LRESULT CALLBACK MainCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
LRESULT CALLBACK InputCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
LRESULT CALLBACK SchemaCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
//Variables Globales
bool DOORCLOSED = true;
bool WINDOW1CLOSED = true;
bool WINDOW2CLOSED = true;
HINSTANCE hInstance;
int tempo=3000;
//Point d'entree du prog
int APIENTRY WinMain(HINSTANCE hinstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
//Declaration variables
MSG message;
hInstance=hinstance;
// Ouvre la Dialogbox
DialogBox(hinstance, (LPCTSTR)IDD_MAIN, NULL, (DLGPROC)MainCallBack);
//Recoit les msg de windows
while (GetMessage (&message, NULL, 0, 0))
{
TranslateMessage (&message) ;
DispatchMessage (&message) ;
}
return 0;
}
//CallBack du dialog Main
LRESULT CALLBACK MainCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
HBITMAP bmp,bmpled;
HWND handle;
switch (message)
{
case WM_INITDIALOG:
break;
case WM_COMMAND:
if (LOWORD(wParam) == IDC_CDOOR) //Si c'est la porte
{
handle=GetDlgItem(hwnd,IDC_CDOOR);
//Change l'image de la porte, de la led et enclenche/declanche le son
if(DOORCLOSED == true)
{
bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_DOOROPEN));
bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDA));
SetWindowText(handle,"Fermer Porte");
KillTimer(hwnd,1); // au cas ou le type reouvre la porte ....
PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
DOORCLOSED=false;
}
else
{
bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_DOORCLOSE));
bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDE));
SetWindowText(handle,"Ouvrir Porte");
DOORCLOSED=true;
if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
SetTimer(hwnd, 1, tempo, NULL);
}
//Affiche la porte
handle = GetDlgItem(hwnd,IDC_DOOR);
SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmp);
//Affiche la led
handle = GetDlgItem(hwnd,IDC_LED1);
SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmpled);
}
if (LOWORD(wParam) == IDC_CWINDOW1) //Si c'est la fenetre1
{
//Change l'image de la porte, de la led et enclenche/declanche le son
handle=GetDlgItem(hwnd,IDC_CWINDOW1);
if(WINDOW1CLOSED == true)
{
bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWOPENED));
bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDA));
SetWindowText(handle,"Fermer Fenetre");
KillTimer(hwnd,1); // au cas ou le type réouvre la porte ....
PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
WINDOW1CLOSED=false;
}
else
{
bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWCLOSED));
bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDE));
SetWindowText(handle,"Ouvrir Fenetre");
WINDOW1CLOSED=true;
if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
SetTimer(hwnd, 1, tempo, NULL);
}
//Affiche la porte
handle = GetDlgItem(hwnd,IDC_WINDOW1);
SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmp);
//Affiche la led
handle = GetDlgItem(hwnd,IDC_LED2);
SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmpled);
}
if (LOWORD(wParam) == IDC_CWINDOW2) //Si c'est la fenetre2
{
//Change l'image de la porte, de la led et enclenche/declanche le son
handle=GetDlgItem(hwnd,IDC_CWINDOW2);
if(WINDOW2CLOSED == true)
{
bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWOPENED));
bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDA));
SetWindowText(handle,"Fermer Fenetre");
KillTimer(hwnd,1); // au cas ou le type réouvre la porte ....
PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
WINDOW2CLOSED=false;
}
else
{
bmp = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_WINDOWCLOSED));
bmpled = LoadBitmap((HINSTANCE)GetWindowLong(hwnd,GWL_HINSTANCE),MAKEINTRESOURCE(IDB_LEDE));
SetWindowText(handle,"Ouvrir Fenetre");
WINDOW2CLOSED=true;
if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
SetTimer(hwnd, 1, tempo, NULL);
}
//Affiche la porte
handle = GetDlgItem(hwnd,IDC_WINDOW2);
SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmp);
//Affiche la led
handle = GetDlgItem(hwnd,IDC_LED3);
SendMessage(handle,STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM) (HANDLE) bmpled);
}
if (LOWORD(wParam) == IDC_DTEMPO)
{
DialogBox(hInstance, (LPCTSTR)IDD_INPUTBOX, NULL, (DLGPROC)InputCallBack);
}
if (LOWORD(wParam) == IDC_CSTOPTEMPO)
{
if(DOORCLOSED==true && WINDOW1CLOSED==true && WINDOW2CLOSED==true)
{
PlaySound(NULL, GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC);
KillTimer(hwnd,1);
}
else
{
PlaySound("alarme.wav", GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC|SND_LOOP );
SetTimer(hwnd, 1, tempo, NULL);
}
}
if (LOWORD(wParam) == IDR_SCHEMA)
{
DialogBox(hInstance, (LPCTSTR)IDD_SCHEMA, NULL, (DLGPROC)SchemaCallBack);
}
if (LOWORD(wParam) == IDC_QUIT)
{
PostQuitMessage(0);
}
if (LOWORD(wParam) == IDC_ABOUT)
{
MessageBox(hwnd,"Fait par MùPùF pour le TPE(2004/2005) de Bigou Karim, Palayret Fabien et Peres Martin.\nCe programme (écris avec vc++ 6) montre le fonctionnement de notre systeme d'alarme gungrave.","About",MB_OK);
}
break;
case WM_TIMER:
PlaySound(NULL, GetModuleHandle(NULL), SND_FILENAME|SND_ASYNC);
KillTimer(hwnd,1);
break;
case WM_CLOSE:
EndDialog(hwnd, LOWORD(wParam));
break;
case WM_DESTROY:
PostQuitMessage(0);;
break;
return DefWindowProc (hwnd, message, wParam, lParam);
}
return 0;
}
//CallBack du dialog InputBox
LRESULT CALLBACK InputCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
//Variables
int res;
HWND handle;
char* Ctempo;
switch (message)
{
case WM_INITDIALOG:
handle = GetDlgItem(hwnd,IDC_RES);
SetWindowText(handle,itoa(tempo,"",10));
break;
case WM_COMMAND:
if (LOWORD(wParam) == IDOK)
{
handle = GetDlgItem(hwnd,IDC_RES);
Ctempo=new char[7];
GetWindowText(handle,Ctempo,6);
tempo=atoi(Ctempo);
delete Ctempo;
EndDialog(hwnd, LOWORD(wParam));
}
if (LOWORD(wParam) == IDC_ANNULER)
{
res=MessageBox(hwnd,"Attention, vous allez annuler le changement de Temporisation\nEtes vous sur de vouloir ?","Attention", MB_YESNO+MB_ICONWARNING);
if(res==IDYES)
EndDialog(hwnd, LOWORD(wParam));
}
break;
case WM_CLOSE:
EndDialog(hwnd, LOWORD(wParam));
break;
return DefWindowProc (hwnd, message, wParam, lParam);
}
return 0;
}
//CallBack du dialog InputBox
LRESULT CALLBACK SchemaCallBack (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_COMMAND:
if (LOWORD(wParam) == IDC_OK)
EndDialog(hwnd, LOWORD(wParam));
break;
case WM_CLOSE:
EndDialog(hwnd, LOWORD(wParam));
break;
return DefWindowProc (hwnd, message, wParam, lParam);
}
return 0;
}
Conclusion
Bon, ben içi je laisse la place a vos commentaires ! N'hesitez pas a incendier si ya un pet en travers, je suis ouvert a toutes critiques constructives.
Historique
- 17 juin 2005 15:29:11 :
- J'ai enlever les accents ...
- 17 juin 2005 15:32:12 :
- Il me manquait encore 2 accents, je sais pas lire lol
Sources du même auteur
Sources de la même categorie
Commentaires et avis
|
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
|