-
EventLog Messages
I'm trying to build a VB.Net application that displays the contents of an
eventlog. Here is the code:
dim alog as new eventlog()
dim entry as eventlogentry
alog.log = "Application Log"
alog.machinename = "."
for each entry in alog.entries
listbox1.items.add(entry.message)
next entry
This works great for the machine it is running on. However, when I change
the "alog.machinename" to a server in a different domain it doesn't work.
I don't know how to authenticate programmatically to the remote server.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks