Thread: Weird run-time error

  1. #1
    Registered User
    Join Date
    Jun 2004
    Posts
    24

    Weird run-time error

    Does somebody know what the following error could mean?

    Code:
    'readConductorFile.exe': Loaded 'C:\WINNT\system32\NTDLL.DLL', Cannot find or open a required DBG file.
    'readConductorFile.exe': Loaded 'C:\WINNT\system32\KERNEL32.DLL', Cannot find or open a required DBG file.
    The program '[420] readConductorFile.exe: Native' has exited with code 0 (0x0).
    I am trying to read data from a text file, but the program gives this error when running. Does anyone know what a DBG file is?

  2. #2
    Registered User Codeplug's Avatar
    Join Date
    Mar 2003
    Posts
    4,981
    >>but the program gives this error when running
    Those messages are comming from your (Visual Studio) debugger, not the app.

    >>Does anyone know what a DBG file is?
    DBG Files

    You don't have to worry about those messages since you won't be "stepping into" either of those DLL's while debugging.

    gg

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Another syntax error
    By caldeira in forum C Programming
    Replies: 31
    Last Post: 09-05-2008, 01:01 AM
  2. How to monitor process creation?
    By markiz in forum Windows Programming
    Replies: 31
    Last Post: 03-17-2008, 02:39 PM
  3. load gif into program
    By willc0de4food in forum Windows Programming
    Replies: 14
    Last Post: 01-11-2006, 10:43 AM
  4. Post...
    By maxorator in forum C++ Programming
    Replies: 12
    Last Post: 10-11-2005, 08:39 AM
  5. Why wont my function exit correctly?
    By LightsOut06 in forum C Programming
    Replies: 2
    Last Post: 10-09-2005, 09:23 PM