Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Accessing examples contained in this reference through Web Services
How to enumerate, add and delete shares on the local computer (WinNT/XP)
Retrieving information about the specified icon
Setting the mouse capture to the specified window
Using Change Notification Objects to monitor changes to the printer or print server
Using GetFileSize
Enumerating Processes -- WinNT
GDI+: Creating thumbnails to preview images in a directory
How to write and read Window Properties for the specified window
Testing Clipboard functions: emptying the clipboard
Uploading file to the FTP server using InternetWriteFile
Winsock: retrieving the standard host name and IP address for the local machine
Converting an HTTP time/date string to a SYSTEMTIME structure
Enumerating servers of the specified type (e.g. SQL Server) in the primary domain
GDI+: cropping images
Retrieving long values associated with the class of the VFP window
Testing if a connection to an Url can be established
Using GetNearestColor
Winsock: how to retrieve the protocol information corresponding to a protocol number
Creating an Open dialog box to specify the drive, directory, and name of a file to open (Shell32 version)
Enumerating the subkeys for a given registry key
GDI+: Drawing a Pie Chart
How to enumerate cookies and URL History entries in the cache of the local computer
Retrieving list of files on the FTP directory
Enumerating MIDI output devices

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:
See also:
  • How to play MIDI notes
  •  
    DO declare
     
    LOCAL nCount, nIndex, nBufsize, cBuffer
     
    nCount = midiOutGetNumDevs()
    FOR nIndex=0 TO nCount-1
        nBufsize = 1024
        cBuffer = REPLICATE(CHR(0), nBufsize)
     
        IF midiOutGetDevCaps(nIndex, @cBuffer, nBufsize) = 0
            LOCAL oMidiOutCaps As MIDIOUTCAPS
            oMidiOutCaps = CREATEOBJECT("MIDIOUTCAPS", cBuffer)
            ? oMidiOutCaps.szPname
        ENDIF
    NEXT
    * end of main
     
    PROCEDURE declare
        DECLARE INTEGER midiOutGetNumDevs IN Winmm
     
        DECLARE INTEGER midiOutOpen IN Winmm;
            INTEGER @lphmo, INTEGER uDeviceID, INTEGER dwCallback,;
            INTEGER dwCallbackInstance, INTEGER dwFlags
     
        DECLARE INTEGER midiOutClose IN Winmm INTEGER hmo  
     
        DECLARE INTEGER midiOutGetDevCaps IN Winmm;
            INTEGER uDeviceID, STRING @lpMidiOutCaps,;
            INTEGER cbMidiOutCaps
     
    DEFINE CLASS MIDIOUTCAPS As Session
    #DEFINE MAXPNAMELEN 32
        wMid=0
        wPid=0
        vDriverVersion=0
        szPname=""
        wTechnology=0
        wVoices=0
        wNotes=0
        wChannelMask=0
        dwSupport=0
     
    PROCEDURE Init(cBuffer)
        THIS.wMid = buf2word(SUBSTR(cBuffer, 1, 2))
        THIS.wPid = buf2word(SUBSTR(cBuffer, 3, 2))
        THIS.vDriverVersion = buf2dword(SUBSTR(cBuffer, 5, 4))
     
        THIS.szPname = SUBSTR(cBuffer, 9, MAXPNAMELEN) + CHR(0)
        THIS.szPname = SUBSTR(THIS.szPname, 1, AT(CHR(0),THIS.szPname)-1)
     
        THIS.wTechnology = buf2word(SUBSTR(cBuffer, MAXPNAMELEN+9, 2))
        THIS.wVoices = buf2word(SUBSTR(cBuffer, MAXPNAMELEN+11, 2))
        THIS.wNotes = buf2word(SUBSTR(cBuffer, MAXPNAMELEN+13, 2))
        THIS.wChannelMask = buf2word(SUBSTR(cBuffer, MAXPNAMELEN+15, 2))
        THIS.dwSupport = buf2dword(SUBSTR(cBuffer, MAXPNAMELEN+17, 4))
     
    ENDDEFINE
     
    FUNCTION buf2dword(cBuffer)
    RETURN Asc(SUBSTR(cBuffer, 1,1)) + ;
        BitLShift(Asc(SUBSTR(cBuffer, 2,1)),  8) +;
        BitLShift(Asc(SUBSTR(cBuffer, 3,1)), 16) +;
        BitLShift(Asc(SUBSTR(cBuffer, 4,1)), 24)
     
    FUNCTION buf2word(lcBuffer)
    RETURN Asc(SUBSTR(lcBuffer, 1,1)) + ;
           Asc(SUBSTR(lcBuffer, 2,1)) * 256
     
     
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    1903 bytes  
    Created: 2006-03-02 09:02:20  
    Modified: 2008-04-10 08:04:40  
    Visits in 7 days: 73  
    Listed functions:
    midiOutClose
    midiOutGetDevCaps
    midiOutGetNumDevs
    midiOutOpen
    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 (50.16.108.167)
    7 sec.Example: 'Monitoring changes occurring within a directory'
    2.26 hrs.Example: 'Drawing Windows frame controls using the DrawFrameControl function'
     Example: 'Retrieving long values associated with the class of the VFP window'
     Example: 'Browsing Windows Known Folders (Special Folders)'
    3.5 hrs.Example: 'Drawing a window caption using the DrawCaption routine'
     Example: 'Using FrameRgn for displaying system colors'
    3.51 hrs.Function: 'CreateMD5SSOHash'
    4.69 hrs.Example: 'GDI+: reading and writing metadata in JPEG and TIFF files'
    4.7 hrs.Function: 'ImageList_Add'
    Function group: 'Windows Controls'
    6.32 hrs.
    Function group: 'HTTP Functions (WinHTTP)'
    Google
    Advertise here!