Click here to Skip to main content
15,905,563 members
Home / Discussions / C#
   

C#

 
GeneralRe: Text File Pin
Morgs Morgan15-Nov-09 4:17
Morgs Morgan15-Nov-09 4:17 
Questionclass vs structs in C# Pin
BobInNJ14-Nov-09 5:01
BobInNJ14-Nov-09 5:01 
AnswerRe: class vs structs in C# Pin
Shameel14-Nov-09 5:07
professionalShameel14-Nov-09 5:07 
GeneralRe: class vs structs in C# Pin
N a v a n e e t h14-Nov-09 6:49
N a v a n e e t h14-Nov-09 6:49 
GeneralRe: class vs structs in C# Pin
Shameel14-Nov-09 6:57
professionalShameel14-Nov-09 6:57 
AnswerRe: class vs structs in C# Pin
N a v a n e e t h14-Nov-09 6:43
N a v a n e e t h14-Nov-09 6:43 
GeneralRe: class vs structs in C# Pin
BobInNJ14-Nov-09 12:33
BobInNJ14-Nov-09 12:33 
GeneralRe: class vs structs in C# Pin
N a v a n e e t h14-Nov-09 17:32
N a v a n e e t h14-Nov-09 17:32 
AnswerRe: class vs structs in C# Pin
Richard MacCutchan14-Nov-09 6:55
mveRichard MacCutchan14-Nov-09 6:55 
AnswerRe: class vs structs in C# Pin
PIEBALDconsult14-Nov-09 8:52
mvePIEBALDconsult14-Nov-09 8:52 
GeneralRe: class vs structs in C# Pin
BobInNJ14-Nov-09 11:44
BobInNJ14-Nov-09 11:44 
GeneralRe: class vs structs in C# Pin
PIEBALDconsult15-Nov-09 3:51
mvePIEBALDconsult15-Nov-09 3:51 
Questionfind IP-Adress of external hardware (XPort) connected via Ethernet Pin
A_Wolf14-Nov-09 4:30
A_Wolf14-Nov-09 4:30 
AnswerRe: find IP-Adress of external hardware (XPort) connected via Ethernet Pin
Dave Kreskowiak14-Nov-09 11:13
mveDave Kreskowiak14-Nov-09 11:13 
QuestionHow to implement BarCode Reader in Customer inventry system using C#.net??? Pin
Arslan Khan14-Nov-09 3:05
Arslan Khan14-Nov-09 3:05 
AnswerRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
OriginalGriff14-Nov-09 4:47
mveOriginalGriff14-Nov-09 4:47 
GeneralRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
Arslan Khan14-Nov-09 5:20
Arslan Khan14-Nov-09 5:20 
GeneralRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
OriginalGriff14-Nov-09 5:34
mveOriginalGriff14-Nov-09 5:34 
GeneralRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
The Man from U.N.C.L.E.14-Nov-09 5:40
The Man from U.N.C.L.E.14-Nov-09 5:40 
AnswerRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
Jacob Lee16-Nov-14 15:13
Jacob Lee16-Nov-14 15:13 
Questionget the Event log Identity Pin
Jassim Rahma14-Nov-09 3:00
Jassim Rahma14-Nov-09 3:00 
AnswerRe: get the Event log Identity Pin
The Man from U.N.C.L.E.14-Nov-09 5:56
The Man from U.N.C.L.E.14-Nov-09 5:56 
C#
EventLog log = new EventLog("logName");
log.WriteEntry("Message");
EventLogEntry myEntry = log.Entries[log.Entries.Count - 1]


writing to a specific log will enable you to then get the last entry in the log which hopefully will be yours as long as nothing else wrote to that log in that millisecond.
I don't see any unique identifier for the entry on the EventLogEntry class though. But it is certainly where I would start. Maybe some of the available properties together will give you what you want.

If you have knowledge, let others light their candles at it.
Margaret Fuller (1810 - 1850)
www.JacksonSoft.co.uk

QuestionTaskDialog without a button! Pin
Jassim Rahma14-Nov-09 2:58
Jassim Rahma14-Nov-09 2:58 
AnswerRe: TaskDialog without a button! Pin
The Man from U.N.C.L.E.14-Nov-09 3:55
The Man from U.N.C.L.E.14-Nov-09 3:55 
QuestionCreate a discussion forum using C# Pin
alan20090914-Nov-09 2:56
alan20090914-Nov-09 2:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.