P
Pure Heart
hi
i used the below code in my application to write exception messages to the
application event log of windows
Dim msgText As New System.Text.StringBuilder()
' Open Application.
msgText.Append(Me.Message)
msgText.Append(ControlChars.CrLf)
msgText.Append(Me.StackTrace)
Dim ApplicationEventLog As _
New EventLog("Application", ".", Me.AppDomainName)
ApplicationEventLog.WriteEntry( _
msgText.ToString, eventType)
ApplicationEventLog.Dispose()
ApplicationEventLog = Nothing
msgText = Nothing
but i run time i get a security error seems a matter of permissions haw cna
i pass that probleam, this software will run on many pcs with different users
and passwords ?
thank you
--
Ammar S. Mitoori
IT Head QIMCO Co.
Tel : +9744831199
Mobile : +9745378400
Fax : +9744831643
i used the below code in my application to write exception messages to the
application event log of windows
Dim msgText As New System.Text.StringBuilder()
' Open Application.
msgText.Append(Me.Message)
msgText.Append(ControlChars.CrLf)
msgText.Append(Me.StackTrace)
Dim ApplicationEventLog As _
New EventLog("Application", ".", Me.AppDomainName)
ApplicationEventLog.WriteEntry( _
msgText.ToString, eventType)
ApplicationEventLog.Dispose()
ApplicationEventLog = Nothing
msgText = Nothing
but i run time i get a security error seems a matter of permissions haw cna
i pass that probleam, this software will run on many pcs with different users
and passwords ?
thank you
--
Ammar S. Mitoori
IT Head QIMCO Co.
Tel : +9744831199
Mobile : +9745378400
Fax : +9744831643