Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Joining local computer to a domain (XP/2000)
Converting path to original case
How to drag a Form not using its Titlebar or Caption
Retrieving national language settings
Using IsChild() for testing ThisForm.ShowWindow property
Comparing file times
Determining whether or not the system is connected to the Internet
Retrieving graphic capabilities of default printer
Retrieving Window Class information for the VFP window
StrDup returns a pointer to the duplicate of a source VFP string
Using Video Capture: enumerating installed capture drivers
Copying strings through the global memory block
Creating two-byte hashes for a list of URLs
How to start the screen saver and how to find whether the screen saver is active
How to play a waveform sound (a WAV file in particular)
PocketPC: creating directories and files
Retrieving current user for the process
Enumerating connections made to a shared resource for the local computer (WinNT only)
Obtaining the System and Windows folder names
Obtaining window class name for the main VFP window
Retrieving statistics for the TCP protocol running on the local computer
An alternative way of setting Form.Closable to False
Basic Volume information
Retrieving graphic capabilities of your display
How to delete a service object

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Before you begin:
This code sample shows how to delete the service object created in How to create a service object code sample.

See also:
  • Encapsulating access to the Windows Services in a class
  •  
    #DEFINE SC_MANAGER_ALL_ACCESS 0xF003F
    #DEFINE DELETE_SERVICE 0x00010000
    #DEFINE SERVICE_STOP 0x20
    #DEFINE SERVICE_CONTROL_STOP 1
    #DEFINE SERVICE_STATUS_SIZE 36
    DO declare
     
    DO DeleteWinService WITH "FriendlyService"
     
    FUNCTION DeleteWinService(cServiceName)
        LOCAL hManager, hService
        hManager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS)
     
        IF m.hManager = 0
            ? "Call to OpenSCManager failed."
            RETURN .F.
        ENDIF
     
        hService = OpenService(hManager, m.cServiceName,;
            BITOR(DELETE_SERVICE, SERVICE_STOP))
     
        IF hService = 0
            ? "Failed to obtain the handle to the service."
        ELSE
            * stop service if it is running
            LOCAL cStatusInfo
            cStatusInfo = REPLICATE(CHR(0), SERVICE_STATUS_SIZE)
            = ControlService(m.hService, SERVICE_CONTROL_STOP, @cStatusInfo)
     
            IF DeleteService(m.hService) = 0
                ? "DeleteService failed with error code", GetLastError()
            ENDIF
            = CloseServiceHandle(m.hService)
        ENDIF
     
        = CloseServiceHandle(m.hManager)
    * end of main
     
    PROCEDURE declare
        DECLARE INTEGER GetLastError IN kernel32
        DECLARE INTEGER CloseServiceHandle IN advapi32 INTEGER hSCObject
     
        DECLARE INTEGER OpenSCManager IN advapi32;
            STRING lpMachineName, STRING lpDatabaseName,;
            LONG dwDesiredAccess
     
        DECLARE INTEGER OpenService IN advapi32;
            INTEGER hSCManager, STRING lpServiceName,;
            LONG dwDesiredAccess
     
        DECLARE INTEGER DeleteService IN advapi32 INTEGER hService
     
        DECLARE INTEGER ControlService IN advapi32;
            INTEGER hService, LONG dwControl,;
            STRING @lpServiceStatus
     
     
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    1536 bytes  
    Created: 2006-09-30 13:56:37  
    Modified: 2006-09-30 13:59:02  
    Visits in 7 days: 45  
    Listed functions:
    CloseServiceHandle
    ControlService
    DeleteService
    GetLastError
    OpenSCManager
    OpenService
    Printer friendly API declarations
    Word Index links for this example:
    Translate this page:
      Spanish    Portuguese    German    French    Italian  
    FreeTranslation.com offers instant, free translations of text or web pages.
    User Contributed Notes:
    There are no notes on this subject.


    Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

    Privacy policy
    Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
    Last Topics Visited (107.22.127.92)
    2.36 hrs.Function: 'SHRegOpenUSKey'
    Function group: 'Registry'
    2.73 hrs.Function: 'FindResource'
    5.71 hrs.
    Function group: 'Shell Lightweight Utility APIs -- misc. functions'
     Function: 'FindWindow'
    6.07 hrs.Function: 'PlaySound'
    Function group: 'Windows Multimedia'
     Example: 'How to hot-track menu item selection in top-level form (requires VFP9)'
    7.94 hrs.Example: 'Retrieving the System Time adjustment'
     Example: 'How to assemble an array of strings and pass it to external function'
    9.22 hrs.Function: 'SHGetFolderPath'
    10.22 hrs.Example: 'Simple printer queue monitor: deletes, pauses, resumes print jobs for local printer'
    Google
    Advertise here!