CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Oct 2003
    Posts
    8

    Question Reading EventLog using Vb6

    i would like to get some help regarding reading eventlog , including information from the "description" box of the events

  2. #2
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    This might help you

    Once I found something on the net. Cannot tell where (you could search via google to find out), but I adapted the code for something I need in those time.
    You could take this code and adjust it for your purpouse:
    Attached Files Attached Files
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

  3. #3
    Join Date
    Oct 2003
    Posts
    8

    Smile

    sorry for being late..the code worked perfectly

  4. #4
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    Nice to know

    Thanks for feedback

    Cesare Imperiali
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

  5. #5
    Join Date
    Oct 2003
    Posts
    8

    Unhappy that was easy, but...

    .... what to do when You need to get REAL message. It is necessery to use FormatMessage within an external DLL.

    Call API LoadLibraryEx(dll_path, 0, LOAD_LIBRARY_AS_DATAFILE)
    Call API FormatMessage(FORMAT_MESSAGE_FROM_HMODULE, ... , Arguments)

    And there is a problem: HOW TO PASS Arguments ARGUMENT IN VB CODE????

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured