Accueil > Forum > > > > api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(
api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(
jeudi 26 juin 2003 à 17:33:07 |
api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(

JackosKing
|
Voilà je voulais utilisé cette fonction comme on me l'avait conseillé, mais j'ai une erreure: E:\TinyShell\Twiny.cpp(56) : error C2664: 'SetWindowLongA' : cannot convert parameter 3 from 'long (struct HWND__ *,unsigned int,unsigned int,long)' to 'long' Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast
|
avec: long Twiny::WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam) help:( JackosKing For EvEr
|
|
jeudi 26 juin 2003 à 19:13:37 |
Re : api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(

BruNews
|
fais une recherche "sous classement" et tu tomberas sur une de mes sources qui sous classe un EDIT, va idem pour nimporte quelle type de fenetre. BruNews, ciao... ------------------------------- Réponse au message : ------------------------------- > Voilà je voulais utilisé cette fonction comme on me l'avait conseillé, mais j'ai une erreure: > > E:\TinyShell\Twiny.cpp(56) : error C2664: 'SetWindowLongA' : cannot convert parameter 3 from 'long (struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > |
> > avec: > long Twiny::WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam) > > help:( > > > JackosKing For EvEr
|
|
jeudi 26 juin 2003 à 20:14:26 |
Re : api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(

JackosKing
|
j'ai regarer ton exemple et j'ai recopié: SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); } LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { if ( message == WM_MOUSEMOVE ) { PostQuitMessage(0); return 0; } return DefWindowProc(hwnd, message, wParam, lParam); } et j'ai toujours la meme erreur:( JackosKing For EvEr ------------------------------- Réponse au message : ------------------------------- > fais une recherche "sous classement" et tu tomberas sur une de mes sources qui sous classe un EDIT, va idem pour nimporte quelle type de fenetre. > BruNews, ciao... > > > ------------------------------- > Réponse au message : > ------------------------------- > > > Voilà je voulais utilisé cette fonction comme on me l'avait conseillé, mais j'ai une erreure: > > > > E:\TinyShell\Twiny.cpp(56) : error C2664: 'SetWindowLongA' : cannot convert parameter 3 from 'long (struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > > |
> > > > avec: > > long Twiny::WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam) > > > > help:( > > > > > > JackosKing For EvEr >
|
|
jeudi 26 juin 2003 à 20:22:38 |
Re : api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(

BruNews
|
Et c'est quoi deja ton erreur ? BruNews, ciao... ------------------------------- Réponse au message : ------------------------------- > j'ai regarer ton exemple et j'ai recopié: > SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); > } > > > > > LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) > { > if ( message == WM_MOUSEMOVE ) > { > PostQuitMessage(0); > return 0; > } > > return DefWindowProc(hwnd, message, wParam, lParam); > } > et j'ai toujours la meme erreur:( > JackosKing For EvEr > > > ------------------------------- > Réponse au message : > ------------------------------- > > > fais une recherche "sous classement" et tu tomberas sur une de mes sources qui sous classe un EDIT, va idem pour nimporte quelle type de fenetre. > > BruNews, ciao... > > > > > > ------------------------------- > > Réponse au message : > > ------------------------------- > > > > > Voilà je voulais utilisé cette fonction comme on me l'avait conseillé, mais j'ai une erreure: > > > > > > E:\TinyShell\Twiny.cpp(56) : error C2664: 'SetWindowLongA' : cannot convert parameter 3 from 'long (struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > > > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > > > |
> > > > > > avec: > > > long Twiny::WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam) > > > > > > help:( > > > > > > > > > JackosKing For EvEr > > >
|
|
jeudi 26 juin 2003 à 21:48:19 |
Re : api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(

JackosKing
|
bon alors la source: #include "stdafx.h" #include "Twiny.h" #include <windows.h> #include <stdio.h> #include <stdlib.h>
#define WS_EX_LAYERED 0x00080000 #define LWA_COLORKEY 0x00000001 #define LWA_ALPHA 0x00000002
Twiny::Twiny() {
}
Twiny::~Twiny() {
}
Twiny::CreatTwiny( char *pStrIniFile, HINSTANCE hInstance ) { char IniPath[MAX_PATH]; char PlugPath[MAX_PATH]; GetCurrentDirectory( MAX_PATH, IniPath);
sprintf( PlugPath, "%s\\Datas\\%s.ini", IniPath, pStrIniFile);
#define EXTRACT_NBR( VAR ) GetPrivateProfileString("TWINY",""#VAR""," ",IniPath,MAX_PATH,PlugPath ); VAR = atoi(IniPath); EXTRACT_NBR( X ) EXTRACT_NBR( Y ) EXTRACT_NBR( Width ) EXTRACT_NBR( Height ) #undef EXTRACT_NBR
hWnd = CreateWindowEx( WS_EX_TOPMOST ,"MyWndClassEx"," ", CW_USEDEFAULT | WS_VISIBLE, X, Y, Width, Height, NULL, NULL, hInstance, NULL); SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); }
LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { if ( message == WM_MOUSEMOVE ) { PostQuitMessage(0); return 0; }
return DefWindowProc(hwnd, message, wParam, lParam); }
BOOL Twiny::MakeAlpha(HWND hwnd,BYTE alpha) { /* SLWA_FUNC MySetLayeredWindowAttributes; HMODULE hUser32 = GetModuleHandle("USER32.DLL"); if (!hUser32) return FALSE; MySetLayeredWindowAttributes = (SLWA_FUNC)GetProcAddress(hUser32,"SetLayeredWindowAttributes"); if (MySetLayeredWindowAttributes) { MySetLayeredWindowAttributes(hwnd,NULL,alpha,LWA_ALPHA|LWA_COLORKEY); return TRUE; } */ return FALSE; }
|
l'erreur: E:\TinyShell\Twiny.cpp(56) : error C2440: 'type cast' : cannot convert from 'long (__stdcall Twiny::*)(struct HWND__ *,unsigned int,unsigned int,long)' to 'long' Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast JackosKing For EvEr ------------------------------- Réponse au message : ------------------------------- > Et c'est quoi deja ton erreur ? > BruNews, ciao... > > > ------------------------------- > Réponse au message : > ------------------------------- > > > j'ai regarer ton exemple et j'ai recopié: > > SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); > > } > > > > > > > > > > LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) > > { > > if ( message == WM_MOUSEMOVE ) > > { > > PostQuitMessage(0); > > return 0; > > } > > > > return DefWindowProc(hwnd, message, wParam, lParam); > > } > > et j'ai toujours la meme erreur:( > > JackosKing For EvEr > > > > > > ------------------------------- > > Réponse au message : > > ------------------------------- > > > > > fais une recherche "sous classement" et tu tomberas sur une de mes sources qui sous classe un EDIT, va idem pour nimporte quelle type de fenetre. > > > BruNews, ciao... > > > > > > > > > ------------------------------- > > > Réponse au message : > > > ------------------------------- > > > > > > > Voilà je voulais utilisé cette fonction comme on me l'avait conseillé, mais j'ai une erreure: > > > > > > > > E:\TinyShell\Twiny.cpp(56) : error C2664: 'SetWindowLongA' : cannot convert parameter 3 from 'long (struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > > > > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > > > > |
> > > > > > > > avec: > > > > long Twiny::WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam) > > > > > > > > help:( > > > > > > > > > > > > JackosKing For EvEr > > > > > >
|
|
jeudi 26 juin 2003 à 21:56:47 |
Re : api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(

BruNews
|
je crois que doit etre declare 'static' si fonction de classe pour un callback. Pas certain car je ne suis pas tres classe comme mec alors faut voir. BruNews, ciao... ------------------------------- Réponse au message : ------------------------------- > bon alors la source: > > > #include "stdafx.h" > #include "Twiny.h" > #include <windows.h> > #include <stdio.h> > #include <stdlib.h> > > > #define WS_EX_LAYERED 0x00080000 > #define LWA_COLORKEY 0x00000001 > #define LWA_ALPHA 0x00000002 > > > > > > Twiny::Twiny() > { > > } > > Twiny::~Twiny() > { > > > } > > > Twiny::CreatTwiny( char *pStrIniFile, HINSTANCE hInstance ) > { > char IniPath[MAX_PATH]; > char PlugPath[MAX_PATH]; > GetCurrentDirectory( MAX_PATH, IniPath); > > sprintf( PlugPath, "%s\\Datas\\%s.ini", IniPath, pStrIniFile); > > > #define EXTRACT_NBR( VAR ) GetPrivateProfileString("TWINY",""#VAR""," ",IniPath,MAX_PATH,PlugPath ); VAR = atoi(IniPath); > EXTRACT_NBR( X ) > EXTRACT_NBR( Y ) > EXTRACT_NBR( Width ) > EXTRACT_NBR( Height ) > #undef EXTRACT_NBR > > > > > hWnd = CreateWindowEx( WS_EX_TOPMOST ,"MyWndClassEx"," ", CW_USEDEFAULT | WS_VISIBLE, > X, > Y, > Width, > Height, > NULL, > NULL, > hInstance, > NULL); > SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); > } > > > > > LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) > { > if ( message == WM_MOUSEMOVE ) > { > PostQuitMessage(0); > return 0; > } > > return DefWindowProc(hwnd, message, wParam, lParam); > } > > BOOL Twiny::MakeAlpha(HWND hwnd,BYTE alpha) > { > /* SLWA_FUNC MySetLayeredWindowAttributes; > HMODULE hUser32 = GetModuleHandle("USER32.DLL"); > if (!hUser32) return FALSE; > MySetLayeredWindowAttributes = (SLWA_FUNC)GetProcAddress(hUser32,"SetLayeredWindowAttributes"); > if (MySetLayeredWindowAttributes) > { > MySetLayeredWindowAttributes(hwnd,NULL,alpha,LWA_ALPHA|LWA_COLORKEY); > return TRUE; > } */ > return FALSE; > } > |
> > l'erreur: > E:\TinyShell\Twiny.cpp(56) : error C2440: 'type cast' : cannot convert from 'long (__stdcall Twiny::*)(struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > > > JackosKing For EvEr > > > ------------------------------- > Réponse au message : > ------------------------------- > > > Et c'est quoi deja ton erreur ? > > BruNews, ciao... > > > > > > ------------------------------- > > Réponse au message : > > ------------------------------- > > > > > j'ai regarer ton exemple et j'ai recopié: > > > SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); > > > } > > > > > > > > > > > > > > > LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) > > > { > > > if ( message == WM_MOUSEMOVE ) > > > { > > > PostQuitMessage(0); > > > return 0; > > > } > > > > > > return DefWindowProc(hwnd, message, wParam, lParam); > > > } > > > et j'ai toujours la meme erreur:( > > > JackosKing For EvEr > > > > > > > > > ------------------------------- > > > Réponse au message : > > > ------------------------------- > > > > > > > fais une recherche "sous classement" et tu tomberas sur une de mes sources qui sous classe un EDIT, va idem pour nimporte quelle type de fenetre. > > > > BruNews, ciao... > > > > > > > > > > > > ------------------------------- > > > > Réponse au message : > > > > ------------------------------- > > > > > > > > > Voilà je voulais utilisé cette fonction comme on me l'avait conseillé, mais j'ai une erreure: > > > > > > > > > > E:\TinyShell\Twiny.cpp(56) : error C2664: 'SetWindowLongA' : cannot convert parameter 3 from 'long (struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > > > > > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > > > > > |
> > > > > > > > > > avec: > > > > > long Twiny::WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam) > > > > > > > > > > help:( > > > > > > > > > > > > > > > JackosKing For EvEr > > > > > > > > > >
|
|
jeudi 26 juin 2003 à 22:36:22 |
Re : api :: SetWindowLong(hWnd, GWL_WNDPROC, Twiny::WndProc); probleme:(

JackosKing
|
ca m'a l'air de fonctionner :p encore une fois thx:) JackosKing For EvEr ------------------------------- Réponse au message : ------------------------------- > je crois que doit etre declare 'static' si fonction de classe pour un callback. Pas certain car je ne suis pas tres classe comme mec alors faut voir. > BruNews, ciao... > > > ------------------------------- > Réponse au message : > ------------------------------- > > > bon alors la source: > > > > > > #include "stdafx.h" > > #include "Twiny.h" > > #include <windows.h> > > #include <stdio.h> > > #include <stdlib.h> > > > > > > #define WS_EX_LAYERED 0x00080000 > > #define LWA_COLORKEY 0x00000001 > > #define LWA_ALPHA 0x00000002 > > > > > > > > > > > > Twiny::Twiny() > > { > > > > } > > > > Twiny::~Twiny() > > { > > > > > > } > > > > > > Twiny::CreatTwiny( char *pStrIniFile, HINSTANCE hInstance ) > > { > > char IniPath[MAX_PATH]; > > char PlugPath[MAX_PATH]; > > GetCurrentDirectory( MAX_PATH, IniPath); > > > > sprintf( PlugPath, "%s\\Datas\\%s.ini", IniPath, pStrIniFile); > > > > > > #define EXTRACT_NBR( VAR ) GetPrivateProfileString("TWINY",""#VAR""," ",IniPath,MAX_PATH,PlugPath ); VAR = atoi(IniPath); > > EXTRACT_NBR( X ) > > EXTRACT_NBR( Y ) > > EXTRACT_NBR( Width ) > > EXTRACT_NBR( Height ) > > #undef EXTRACT_NBR > > > > > > > > > > hWnd = CreateWindowEx( WS_EX_TOPMOST ,"MyWndClassEx"," ", CW_USEDEFAULT | WS_VISIBLE, > > X, > > Y, > > Width, > > Height, > > NULL, > > NULL, > > hInstance, > > NULL); > > SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); > > } > > > > > > > > > > LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) > > { > > if ( message == WM_MOUSEMOVE ) > > { > > PostQuitMessage(0); > > return 0; > > } > > > > return DefWindowProc(hwnd, message, wParam, lParam); > > } > > > > BOOL Twiny::MakeAlpha(HWND hwnd,BYTE alpha) > > { > > /* SLWA_FUNC MySetLayeredWindowAttributes; > > HMODULE hUser32 = GetModuleHandle("USER32.DLL"); > > if (!hUser32) return FALSE; > > MySetLayeredWindowAttributes = (SLWA_FUNC)GetProcAddress(hUser32,"SetLayeredWindowAttributes"); > > if (MySetLayeredWindowAttributes) > > { > > MySetLayeredWindowAttributes(hwnd,NULL,alpha,LWA_ALPHA|LWA_COLORKEY); > > return TRUE; > > } */ > > return FALSE; > > } > > |
> > > > l'erreur: > > E:\TinyShell\Twiny.cpp(56) : error C2440: 'type cast' : cannot convert from 'long (__stdcall Twiny::*)(struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > > > > > > JackosKing For EvEr > > > > > > ------------------------------- > > Réponse au message : > > ------------------------------- > > > > > Et c'est quoi deja ton erreur ? > > > BruNews, ciao... > > > > > > > > > ------------------------------- > > > Réponse au message : > > > ------------------------------- > > > > > > > j'ai regarer ton exemple et j'ai recopié: > > > > SetWindowLong(hWnd, GWL_WNDPROC, (long) Twiny::WndProc); > > > > } > > > > > > > > > > > > > > > > > > > > LRESULT CALLBACK Twiny::WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) > > > > { > > > > if ( message == WM_MOUSEMOVE ) > > > > { > > > > PostQuitMessage(0); > > > > return 0; > > > > } > > > > > > > > return DefWindowProc(hwnd, message, wParam, lParam); > > > > } > > > > et j'ai toujours la meme erreur:( > > > > JackosKing For EvEr > > > > > > > > > > > > ------------------------------- > > > > Réponse au message : > > > > ------------------------------- > > > > > > > > > fais une recherche "sous classement" et tu tomberas sur une de mes sources qui sous classe un EDIT, va idem pour nimporte quelle type de fenetre. > > > > > BruNews, ciao... > > > > > > > > > > > > > > > ------------------------------- > > > > > Réponse au message : > > > > > ------------------------------- > > > > > > > > > > > Voilà je voulais utilisé cette fonction comme on me l'avait conseillé, mais j'ai une erreure: > > > > > > > > > > > > E:\TinyShell\Twiny.cpp(56) : error C2664: 'SetWindowLongA' : cannot convert parameter 3 from 'long (struct HWND__ *,unsigned int,unsigned int,long)' to 'long' > > > > > > Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast > > > > > > |
> > > > > > > > > > > > avec: > > > > > > long Twiny::WndProc (HWND hwnd, UINT message, UINT wParam, LONG lParam) > > > > > > > > > > > > help:( > > > > > > > > > > > > > > > > > > JackosKing For EvEr > > > > > > > > > > > > > > >
|
|
Cette discussion est classée dans : long, hwnd, cast, wndproc, twiny
Répondre à ce message
Sujets en rapport avec ce message
Mélange entre C++ et Win32 [ par vecchio56 ]
J'ai décidé d'encapsuler mes fenêtres dans des classes, mais je me trouve confronté à un problème: en gros je n'arrive pas à changer de WndProc en uti
Cast et Subclassing [ par darunia ]
Salut,Dans une classe C++, je veux subclasser une fenetre :SetWindowLong(hWnd, GWL_WNDPROC, (LONG)&ExplorerWindow::WindowProc);Le probl
Probleme API, je ne comprend toujours pas:( [ par JackosKing ]
Bon j'ai un probleme avec mon debut de programme, je voulais utiliser les api, mais ca ne marche pas, je ne vois pas la fenetre apparetre:(voilà la so
API :: Gestion de plusieurs fenetres [ par JackosKing ]
Bon, voilà, j'ai fait un programme qui peux creer un infinité de fenêtres (en fonction de la ram bien entendue:)), le probleme c'esgt pour la gestion
SubClassing et classes [ par SnOOpss ]
ReBonjour je sais pas ce qui se passe en ce moment mais depuis que je me suis mit aux classes je bloque toute les deux lignes, j'ai du sauter un trop
thread sur WndProc [ par kidpigeyre ]
G une fonction WndProc chargé de réaliser tout mon programme (application GUI) (avec fenetre windows) et jmerai pouvoir faire un thread de cette fonct
DefWindowProc [ par Renfield ]
Bonjour....Où pointe DefWindowProc ? A-t'on la possibilité de modifier cette addresse, pour une fenêtre précise ?pour test, dans ma proc de gestion de
SousClassement d'un controle ne marche pas ! [ par yann_lo_san ]
Voilà, impossible de sousClasser un controle staticJ'oublie peut etre quelque chose ?Erreurs : CAST WNDPROC ou Nouvelle WndProc zappéeSi vous avez des
ShowWindow [ par Nebula ]
Salut à tous !Mon problème est simple, j'utilise le code suivant dans ma WndProc : switch (uMsg) { case WM_ACTIVATE: if (HIWORD(wParam) != 0) S
problème Win32 Api [ par Toadstool ]
J'ai Visual C++ 6 Introductory Edition et j'ai programmé une classe censée représenter une fenetre mais quand dans le constructeur de la classe j'ecri
Livres en rapport
|
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
|