Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Enumerating data formats currently available on the clipboard
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Mapping and disconnecting network drives
Winsock: retrieving directory listing from an FTP server using passive data connection (FTP, port 21)
Winsock: sending email messages (SMTP, port 25)
How to display the Properties dialog box for a file (ShellExecuteEx)
Disk in drive A:
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
Detecting changes in connections to removable drives (VFP9)
How to download a file from the FTP server using FtpGetFile
Using Font and Text functions
How to play AVI file on the _screen
Using Video Capture: displaying on FoxPro form frames and previewing video obtained from a digital camera
Using EnumPrinters function to enumerate locally installed printers
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Splash Screen for the VFP application
Creating irregularly shaped FoxPro form using transparency color key
Converting Unicode data from the Clipboard to a character string using a given code page
Subclassing CommandButton control to create BackColor property
Vertical Label control
Enumerating network resources
Creating a console window for Visual FoxPro application
Reading and setting explicit Application User Model ID for the current process (Win7)

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
Versions:
click to open
Before you begin:
Application User Model IDs (AppUserModelIDs) are used extensively by the taskbar in Windows 7 and later systems to associate processes, files, and windows with a particular application.




See also:
  • Accessing the list of Windows Recent Documents
  •  
    LOCAL oAppUserModel As AppUserModel
     
    oAppUserModel = CREATEOBJECT("AppUserModel")
    ? "[" + oAppUserModel.AppID + "]"
     
    oAppUserModel.AppID = "VFP.MyApplication.MainForm"
    ? "[" + oAppUserModel.AppID + "]"
     
    * end of main
     
    DEFINE CLASS AppUserModel As Custom
    * implements access to Application User Model ID (AppUserModelID) 
    * that identifies the current process to the taskbar
     
        AppID=""
        ErrorCode=0
     
    PROCEDURE Init( cAppID As String )
        IF VAL(OS(3))*10 + VAL(OS(4)) < 61
            WAIT WINDOW "Minimum supported OS: Win7 !" TIMEOUT 10
            RETURN .F.
        ENDIF
     
        THIS.declare
        IF NOT EMPTY(m.cAppID)
            THIS.AppID = m.cAppID
        ENDIF
     
    PROCEDURE AppID_ASSIGN(vValue As Variant)
        LOCAL cAppID
        cAppID = TRANSFORM(m.vValue)
     
        * note: converted to Unicode
        THIS.ErrorCode = API_SetAppID(;
            STRCONV(m.cAppID,5) )
     
        IF THIS.ErrorCode = 0
        * you may need to hide and show
        * VFP main window to refresh its jump list
            THIS.AppID = m.cAppID
        ENDIF
     
    PROCEDURE AppID_ACCESS() As String
        LOCAL hAppID, cAppID, nBufSize
     
        hAppID=0
        THIS.ErrorCode = API_GetAppID( @hAppID )
     
        IF THIS.ErrorCode = 0
            nBufSize = GlobalSize( m.hAppID )
            cAppID = REPLICATE( CHR(0), nBufSize )
            MemToStr( @cAppID, hAppId, nBufSize )
     
            * note: converted from Unicode
            nBufSize = AT(CHR(0)+CHR(0), m.cAppID)
            IF nBufSize > 0
                cAppID = STRCONV(SUBSTR(m.cAppID, 1,;
                    m.nBufSize), 6)
            ENDIF
        ELSE
            cAppID = ""
        ENDIF
     
        IF hAppId <> 0
            = CoTaskMemFree( hAppId )
        ENDIF
    RETURN m.cAppID
     
    PROCEDURE declare
        DECLARE INTEGER GlobalSize IN kernel32 INTEGER hMem
        DECLARE CoTaskMemFree IN Ole32 INTEGER hMem
     
        DECLARE RtlMoveMemory IN kernel32 As MemToStr;
            STRING @, INTEGER, INTEGER
     
        DECLARE SHORT GetCurrentProcessExplicitAppUserModelID IN Shell32;
        AS API_GetAppID;
            INTEGER @AppID
     
        DECLARE SHORT SetCurrentProcessExplicitAppUserModelID IN Shell32;
        AS API_SetAppID;
            STRING AppID
     
    ENDDEFINE
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    1937 bytes  
    Created: 2001-07-12 12:00:00  
    Modified: 2011-01-17 09:18:05  
    Visits in 7 days: 63  
    Listed functions:
    CoTaskMemFree
    GlobalSize
    Printer friendly API declarations
    My comment:
    Read Application User Model IDs article on MSDN.

    Legacy applications do not declare an explicit AppUserModelID. In that case, the system uses a series of heuristics to assign an internal AppUserModelID. Applications cannot retrieve a system-assigned AppUserModelID.

    If an application uses an explicit AppUserModelID, it must also assign the same AppUserModelID to all running windows or processes, shortcuts, and file associations. It must also use that AppUserModelID when customizing its Jump List through ICustomDestinationList, and in any calls to SHAddToRecentDocs.

    * * *
    An explicit application ID better be created before the main application window shows on. When VFP main window appears on the screen, the system has already assigned a default application ID to this VFP instance.

    After setting an explicit application ID, hide and show again VFP main window. That refreshes the jump list attached to the VFP taskbar icon. That simple:
    _screen.Visible = .F.
    _screen.Visible = .T.

    Another option is using SCREEN=OFF and COMMAND settings in VFP configuration file. The COMMAND should start a program that sets application ID and then turns the main window on.

    * * *
    Setting application ID for an individual VFP top-level form requires access to the IPropertyStore interface. Apparently it can be done only through writing an external library. A fragment of such FLL is shown in C++ section of this code sample.

    * * *
    If a window owns an explicit application ID, calling the GetProp with this window handle and property name "{9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3} 5" returns valid data handle (IPropertyStore ?).
    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 (54.235.20.17)
    6.75 min.Function: 'StrToInt'
    6.83 min.Example: 'Opening the Page Setup dialog box to specify the attributes of a printed page'
    13.28 min.Example: 'Converting Unicode data from the Clipboard to a character string using a given code page'
    13.4 min.Example: 'Splash Screen for the VFP application'
    56.13 min.Function: 'DeleteMenu'
    Function group: 'Menu'
    4 hrs.Example: 'How to change display settings: screen resolution, screen refresh rate'
    Language: 'C++'
     
    Function group: 'GDI+ StringFormat'
     Function: 'AVIStreamGetFrameClose'
    Function group: 'Windows Multimedia'
    6.09 hrs.Example: 'How to view icons stored in executable files (Icon Viewer) - II'
    18 hrs.Example: 'How to block the PrintScreen key'
    Google
    Advertise here!