EventLogEntryType.Information : EventLog « Windows « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows » EventLog 
24.12.3.EventLogEntryType.Information
Imports System.Diagnostics
public class Test
   Shared Dim logStatus As System.Diagnostics.EventLog = New System.Diagnostics.EventLog

   public Shared Sub Main
        
        If Not EventLog.SourceExists("StatusSource"Then
            EventLog.CreateEventSource("StatusSource""StatusLog")
            Console.WriteLine("Creating event source")
        End If

        ' Set the EventLog component's source.
        logStatus.Source = "StatusSource"

        ' Write a Starting message to the log.
        ShowLog()
        logStatus.Clear()
        ShowLog()
   End Sub
    Private Shared Sub ShowLog()
        For Each log_entry As EventLogEntry In logStatus.Entries
            Console.WriteLine(log_entry.Message)
        Next log_entry
    End Sub
   
End class
11/05/2007 12:29:16 PM> Starting
11/05/2007 12:29:16 PM> Closing
24.12.EventLog
24.12.1.Write to System EventLog
24.12.2.Display all Application EventLog
24.12.3.EventLogEntryType.Information
24.12.4.Deletes a log from the specified computer
24.12.5.Create the source MySource if it does not already exist, and writes an entry to the event log MyNewLog.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.