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
Adding and deleting Scheduled Tasks using NetScheduleJob API functions
Winsock: sending email messages (SMTP, port 25)
Mapping and disconnecting network drives
Winsock: retrieving directory listing from an FTP server using passive data connection (FTP, port 21)
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Converting Unicode data from the Clipboard to a character string using a given code page
Custom GDI+ class
Disk in drive A:
How to display the Properties dialog box for a file (ShellExecuteEx)
Enumerating network resources
Detecting changes in connections to removable drives (VFP9)
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
How to download a file from the FTP server using FtpGetFile
Using EnumPrinters function to enumerate locally installed printers
How to play AVI file on the _screen
Retrieving the name of the network resource associated with a local device
Creating a console window for Visual FoxPro application
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Custom HttpRequest class (WinHTTP)
Custom FTP Class for Visual FoxPro application
How to put a horizontal text scrolling on the form (a news line)
Deleting files into the Recycle Bin
Reading entries from Event logs

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:
With Event Viewer, users can monitor events recorded in the Application, Security, and System logs.



See also:
  • How to register custom Event Log source
  • Writing entries to custom Event Log
  • Reading from INI files
  • Writing to INI files
  •  
      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:
    • ~
    8598 bytes  
    Created: 2007-02-17 17:01:25  
    Modified: 2010-06-30 09:16:13  
    Visits in 7 days: 70  
    Listed functions:
    ClearEventLog
    CloseEventLog
    GetEventLogInformation
    GetLastError
    GetNumberOfEventLogRecords
    GetOldestEventLogRecord
    GlobalAlloc
    GlobalFree
    GlobalSize
    OpenEventLog
    ReadEventLog
    Printer friendly API declarations
    My comment:
    Test as follows:
    LOCAL welog As WindowsEventLog,;
            werecord As WindowsEventRecord, nReccount

    welog = CREATEOBJECT("WindowsEventLog",;
            NULL, "Application")

    WAIT WINDOW NOWAIT "Reading log records..."
    nReccount = welog.ReadLogRecords()
    WAIT CLEAR

    CREATE CURSOR csResult ( recordnumber I,;
            timegenerated T, timewritten T,;
            eventid I, eventtype I, numstrings I,;
            eventcategory I, stringoffset I,;
            datalength I, dataoffset I, strings M,;
            eventdata M, eventbuffer M,;
            sysname C(32), source C(200))

    FOR EACH werecord IN welog.WindowEventRecords
            WITH werecord
                    INSERT INTO csResult VALUES (.recordnumber,;
                            WE_START_DATETIME+.timegenerated,;
                            WE_START_DATETIME+.timewritten,;
                            .eventid, .eventtype, .numstrings,;
                            .eventcategory, .stringoffset,;
                            .datalength, .dataoffset,;
                            .strings, .eventdata, .eventbuffer,;
                            .sysname, .source)
            ENDWITH
    NEXT

    * * *
    Read also: Using the Windows Event Log from Visual FoxPro by Craig Berntson.
    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 (23.22.212.158)
    3 sec.Example: 'How to put a vertical text scrolling on the form (a movie cast)'
    2.04 hrs.Function: 'RemoveDirectory'
    Function group: 'File Management'
     Example: 'Winsock: how to retrieve a service information corresponding to a port'
     Example: 'How to display the Print property sheet'
    2.62 hrs.Function: 'SetKeyboardState'
    Function group: 'Keyboard Input'
     Example: 'Time in milliseconds represented as string (e.g. 1 hour 24 min 36 sec)'
    4.55 hrs.Example: 'Extracting the name and extension parts of a path string'
    7.93 hrs.Function: 'GetSysColorBrush'
    Function group: 'Brush'
     Example: 'Storing screen shot of a form to bitmap file'
     Example: 'Using IsChild() for testing ThisForm.ShowWindow property'
    Google
    Advertise here!