首页 > 开发 > 综合 > 正文

使用EventLog控件向事件查看器中写出事件方法。

2024-07-21 02:24:21
字体:
来源:转载
供稿:网友
'请先从组件中拖一个eventlog的控件到的你的form上

'我用一个命令按钮来执行写入操作。
   private sub button1_click(byval sender as system.object, byval e as system.eventargs) handles button1.click
        '如果没有存在事件源的话就新建一个
        if not eventlog.sourceexists("writetoevent") then
            eventlog.createeventsource("writetoevent", "application")  'application是表示放于应用程序事件中
        end if
        eventlog1.source = "writetoevent"
        eventlog1.writeentry("在这里我执行一个写入测试。")  '执行写入操作。
    end sub
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表