Hi frnds, anybody knows how to do it?
sangamdumne
Posts
-
How to Dercypt file in C# encrypted in C using Rjindael Algorithm -
C,C#How to Decrypt file in C# that Encrypted in C using same Rijndael Algorithm?
-
webservice client in c/c++thanks for reply i already visited to these links but not get satisfied answer pls give some example that can become helpfull. Thanks again Sangam
-
webservice client in c/c++Dear frnds im trying to create http client application in c/c++ which call webservice using only url of webservice and soap but i dont know how to do it in c/c++ can any one help me Thanks Sangam
-
Create And Start Service using C++hServiceMGROpen=OpenSCManager(serverName,SERVICES_ACTIVE_DATABASE,SC_MANAGER_ALL_ACCESS); if(hServiceMGROpen!=NULL) { hServiceOpen=OpenService(hServiceMGROpen,"myService",SERVICE_ALL_ACCESS); if(hServiceOpen!=NULL) { succStart=StartService(hServiceOpen,0,NULL); if(succStart) { printf("Service starts successfully "); } else { DWORD err=GetLastError(); printf("Error %d",err); } } } this is my code....!!!! please findout problem....
-
Create And Start Service using C++here is my code for ur ref means i'm trying to show you that what i have done :laugh:
-
Best approach to compare filesHi friend, use findfirstfile() and findnextfile() msdn api's.....hope this will help you
-
Create And Start Service using C++Hi friends, I'm trying to create My own service for .exe. my service create function successfully creates service but when i try to start to that service then it gives error code 1053 which is ERROR_SERVICE_REQUEST_TIMEOUT. also i saw that startservice() fun goes in waiting for 30seconds and then gives error 1053. pls help, here is my code for ur ref... hServiceMGROpen=OpenSCManager(serverName,SERVICES_ACTIVE_DATABASE,SC_MANAGER_ALL_ACCESS); if(hServiceMGROpen!=NULL) { hServiceOpen=OpenService(hServiceMGROpen,"myService",SERVICE_ALL_ACCESS); if(hServiceOpen!=NULL) { succStart=StartService(hServiceOpen,0,NULL); if(succStart) { printf("Service starts successfully "); } else { DWORD err=GetLastError(); printf("Error %d",err); } } }
Thanks in advance...!!! Sangam