CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: esandegren

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    14,913

    An .exp file?

    .exp files are associated with .lib files that your project (normally DLL, but could be EXE too) uses to define its exported symbols.

    What I am curious about is what .exp files are needed for (if...
  2. Exporting a class from DLL versus function interface

    Good afternoon,

    I am designing a logging engine as a practice project for myself. To me it made sense to implement it through a DLL, so I read threads on CG on how to connect DLLs and EXEs. ...
  3. Replies
    2
    Views
    2,362

    An IRC Channel for codeguru regulars?

    Is there an IRC server/channel that the Visual C++ board members frequent? I did a search on the boards and came across a deadend thread by a guy asking the same question I am, so here I ask again....
  4. Replies
    7
    Views
    846

    Re: Lnk2001 Error When Building

    I think in VC you have to specify that a project will use a library in the Project->Options under include or lib or something. I know I had to do this to get the DirectX libraries to link correctly....
  5. Replies
    2
    Views
    1,843

    Re: How to check Interface support in C++?

    Greetings,

    I am trying to decide on an appropriate way to attack the problem of emulating interfaces in my VC++ 7 project. I have searched google and codeguru for prior discussion threads and...
  6. Replies
    8
    Views
    958

    Re: integrating two VC projects

    Is this also how you would develop a utility DLL and a sample exe which uses that DLL at the same time? Two Projects in one solution? Can you set them to chain together for debugging?
  7. Replies
    3
    Views
    1,863

    Re: Problem in Time Display

    I don't know if this helps or not but I had a similar problem when I used GetSystemTime(), the solution was to use GetLocalTime(). Probably not your issue, but perhaps there's an analog to it in...
  8. Replies
    9
    Views
    648

    Re: Happy Birthday Susan!

    Happy B Day =)
  9. Replies
    22
    Views
    6,518

    Re: SHCreateDirectory not found

    I had the same issue with ERROR_BAD_PATHNAME, and this thread fixed it, but I am curious... what does the L in the following line do? Why was it so important?


    (LPCWSTR)L"C:\\D1\\D2\\D3"
  10. Replies
    7
    Views
    1,451

    Re: cout in WinApp

    Thank you for the replies, it seems that OutputDebugString() is working well for me. I did think of another question though... when trying to output numerical values in debug messages, how do most...
  11. Replies
    7
    Views
    1,451

    Re: cout in WinApp

    hrm. When executed, the program completes immediately, as expected, but I thought the Build window down in the bottom would change to some sort of output window, and show the cout statements, but it...
  12. Replies
    7
    Views
    1,451

    cout in WinApp

    Hi,

    I'm starting to learn VC++ and I have a beginner's question. I'm trying to do some old style debugging via cout statements to kind of tell me how things are going in my program, but for some...
  13. Replies
    9
    Views
    1,268

    Re: self teaching C++

    You said "it doesn't compile nor execute" When you attempt to compile it, what is the error? If it's not compiling, there should be some error output on screen. What does that say?
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured