Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to print picture stored in enhanced-format metafile (*.emf)
Retrieveing information about the active window (even if it is not owned by the calling process)
Drawing icons associated with the VFP main window
Enumerating print processors and supporting data types installed on the specified server
FindText -- the hopeless and useless Common Dialog
How to hide your program from the Close Program dialog (Win9* only)
Pocket PC: base class
Retrieving information about the specified icon
Retrieving the names of all sections in an initialization file
Scanning a hierarchy of child windows down from the Windows Desktop
String representation for disk or memory capacity
Finding parameters for the region specified
How to position the GETPRINTER() dialog
How to release and renew a lease on an IP address previously obtained through Dynamic Host Configuration Protocol (DHCP)
Obtaining MAC address through Address Resolution Protocol (ARP) request
Opening access to the Microsoft Internet functions for the application
The window and its ancestors
Using an Event Object. Part A: running an application that creates an Event object
Using the CreateFile
Using the Semaphore object to allow only one instance of VFP application running
Winsock: changing the byte ordering
Winsock: how to retrieve the protocol information corresponding to a protocol name
Animating a transition of the VFP form (a wire-frame rectangle)
Configuring DEVMODE structure for a printer
Using shared memory to exchange data between two FoxPro applications

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:
Presented below the SharedMemory class uses FileMapping API calls to allocate a block of memory accessible from any FoxPro application that can instantiate this class. All applications share the name of this memory buffer, for example "MYAPPSHAREDMEMORY".



To test this class, start two or more VFP executables and run this code in each session:

LOCAL oForm As TForm
oForm = CREATEOBJECT("Tform")
oForm.Show(1)
* end of main

DEFINE CLASS Tform As Form
        Width=460
        Height=200
        Caption="Using shared memory to exchange " +;
                "data between processes"
        smObject=NULL
        
        ADD OBJECT txtSharedMemory As EditBox WITH;
        Left=5, Top=10, Width=450, Height=120
        
        ADD OBJECT cmdReadFromMemory As CommandButton WITH;
        Left=40, Top=150, Width=190, Height=27,;
        Caption="Read From Shared Memory"

        ADD OBJECT cmdWriteToMemory As CommandButton WITH;
        Left=230, Top=150, Width=190, Height=27,;
        Caption="Write To Shared Memory"

PROCEDURE Init
        THIS.smObject = CREATEOBJECT("SharedMemory",;
                "MYAPPSHAREDMEMORY", 1024)

PROCEDURE cmdReadFromMemory.Click
        ThisForm.txtSharedMemory.Value =;
                ThisForm.smObject.ReadFromSharedMemory()

PROCEDURE cmdWriteToMemory.Click
        LOCAL cBuffer
        cBuffer = PADR(ThisForm.txtSharedMemory.Value,;
                ThisForm.smObject.GetSharedMemorySize())
        ThisForm.smObject.WriteToSharedMemory(m.cBuffer)
ENDDEFINE

See also:
  • Using a Semaphore object to prevent VFP application from running more than one instance
  • Using Windows Clipboard for passing data records between VFP applications
  •  
      Members area. Log in to view this example.
     
      User name:
      Password:
     
     
      Forgot your password?
     
      Sign up for
    the Membership
     
     


    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    4228 bytes  
    Created: 2005-10-28 12:15:17  
    Modified: 2011-12-10 09:20:22  
    Visits in 7 days: 67  
    Listed functions:
    CloseHandle
    CreateFileMapping
    CreateMutex
    GetLastError
    MapViewOfFile
    ReleaseMutex
    UnmapViewOfFile
    WaitForSingleObject
    Printer friendly API declarations
    My comment:
    Mutex object is used to synchronize access to the shared memory block.
    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.21.186.38)
    4.94 hrs.Function: 'RtlCompressBuffer'
    Function group: 'Data Decompression Library'
     Example: 'Storing screen shot of a form to enhanced metafile (*.emf)'
    5.78 hrs.Function: 'LsaClose'
    Function group: 'Security'
     Example: 'Storing content of the Clipboard to a bitmap file'
    5.79 hrs.Function: 'mixerGetControlDetails'
    Function group: 'Windows Multimedia'
    11.42 hrs.Example: 'Winsock: reading email messages (POP3, port 110)'
     Example: 'Drawing cursors for the classes defined by the system (preregistered): BUTTON, EDIT, LISTBOX etc.'
     Example: 'Simple Window Viewer'
    12.46 hrs.Function: 'GetKBCodePage'
    Function group: 'Keyboard Input'
    14.22 hrs.Example: 'Enumerating data formats currently available on the clipboard'
    Google
    Advertise here!