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
Mapping and disconnecting network drives
Capturing keyboard activity of another application with the Raw Input API (VFP9)
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:
Using Font and Text functions
Detecting changes in connections to removable drives (VFP9)
How to download a file from the FTP server using FtpGetFile
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
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
Splash Screen for the VFP application
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Subclassing CommandButton control to create BackColor property
Vertical Label control
Creating irregularly shaped FoxPro form using transparency color key
Converting Unicode data from the Clipboard to a character string using a given code page
Creating a console window for Visual FoxPro application
Enumerating network resources
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: 54  
    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 (54.242.188.217)
    6 sec.Function: 'SetLastError'
    Function group: 'Error Handling'
    5.96 hrs.Example: 'How to block the PrintScreen key'
    7.81 hrs.Example: 'Extended MessageBox Class'
    16.18 hrs.Example: 'Deleting files into the Recycle Bin'
    1 day(s)Example: 'How to delete IE cookies, clear IE history and delete files in Temporary Internet Files directory'
     Example: 'Winsock: connecting to a news server (NNTP, port 119)'
    2 day(s)Function: 'SQLInstallerError'
    Function group: 'ODBC API'
     Function: 'GdiGetBatchLimit'
    Function group: 'Painting and Drawing'
     Example: 'Winsock: how to retrieve the protocol information corresponding to a protocol name'
     Function: 'SQLBrowseConnect'
    Google
    Advertise here!