Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 111141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:20:16+00:00 2026-05-11T02:20:16+00:00

I use VS6 and ATL with CServiceModule to implement a custom windows service. In

  • 0

I use VS6 and ATL with CServiceModule to implement a custom windows service. In case of a fatal error service should shut itself down. Since CServiceModule is available via _Module variable in all files I thought of something like this to cause CServiceModule::Run to stop pumping messages and shut itself down

PostThreadMessage(_Module.dwThreadID, WM_QUIT, 0, 0); 

Is this correct or you have better idea ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T02:20:16+00:00Added an answer on May 11, 2026 at 2:20 am

    For self shutdown you send command to Service Manager. Try this sample :

     BOOL StopServiceCmd ( const char * szServiceName ) {      SC_HANDLE schService;      SC_HANDLE schSCManager;      SERVICE_STATUS ssStatus;       // current status of the service      BOOL bRet;     int iCont=0;      schSCManager = OpenSCManager(          NULL, // machine (NULL == local)          NULL, // database (NULL == default)          SC_MANAGER_ALL_ACCESS // access required          );      if ( schSCManager )      {          schService = OpenService(schSCManager, szServiceName, SERVICE_ALL_ACCESS);           if (schService)          {              // try to stop the service              if ( ControlService( schService, SERVICE_CONTROL_STOP, &ssStatus ) )              {                  Sleep( 1000 );                   while( QueryServiceStatus( schService, &ssStatus ) )                  {                      iCont++;                     if ( ssStatus.dwCurrentState == SERVICE_STOP_PENDING )                      {                          Sleep( 1000 );                          if ( iCont > 4 ) break;                     }                      else                          break;                  }                   if ( ssStatus.dwCurrentState == SERVICE_STOPPED )                      bRet = TRUE;                  else                      bRet = FALSE;              }               CloseServiceHandle(schService);          }          else              bRet = FALSE;           CloseServiceHandle(schSCManager);      }      else          bRet = FALSE;      return bRet; }  
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 85k
  • Answers 85k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer See: Is JavaScript's “new” Keyword Considered Harmful? It's important to… May 11, 2026 at 5:10 pm
  • Editorial Team
    Editorial Team added an answer Be aware that adjacent text nodes are collapsed into one… May 11, 2026 at 5:10 pm
  • Editorial Team
    Editorial Team added an answer Simply set the type of the property to an enum… May 11, 2026 at 5:10 pm

Related Questions

I've decided I want to get more into native code development with C++. I'm
I'm trying to set an invalid value to -1.. But I don't like magic
I want to use a recent MS C++ compiler (I need TR1) with old
I use Firebug and the Mozilla JS console heavily, but every now and then

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.