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

Search:

Type: Posts; User: Draznar

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    630

    Directory and File Listing

    Greetings!

    I am trying to traverse a directory, its subdirectories, and get the path to all of its files. I plan to store this so I may load the files later on.

    To avoid "Reinventing the...
  2. Replies
    11
    Views
    8,581

    Re: Memcpy Manipulation into a Struct

    Ok, so I will abandon the memcpy route, but one more newish question, what does POD and UD stand for?
  3. Replies
    11
    Views
    8,581

    Re: Memcpy Manipulation into a Struct

    I wish I could get it to work 100% and not 60% of the time, I don't have a good way to loop so doing it all row by row is going to look bloated :-\
  4. Replies
    11
    Views
    8,581

    Re: Memcpy Manipulation into a Struct

    I don't know how well overloading istream for the structure would mesh with this project.

    The big reason I was attempting to do all this memcpy() manipulation was so I could lessen the lines of...
  5. Replies
    11
    Views
    8,581

    Memcpy Manipulation into a Struct

    My program reads in data from a formatted data file and uses the data to fill in some structures with the correct data. There are several types of structures so I am trying to do this in a general...
  6. Replies
    3
    Views
    3,062

    Re: "MSVCR80.dll not found" : Release only

    During my investigation I've come across that something could be wrong with my manifest file. Posted Below is a copy of my "MyProgram.exe.embed.manifest", It seems odd that this mentions debug,...
  7. Replies
    3
    Views
    3,062

    Re: "MSVCR80.dll not found" : Release only

    Thank you for the tip. I ran this dependency walker on my release .exe and it did find two issues.

    It can't find MSVCR80.dll or this mysterious one I have never heard of DWMAPI.dll. I did a...
  8. Replies
    3
    Views
    3,062

    "MSVCR80.dll not found" : Release only

    I have a project that extracts data from a access database on my local drive. Originally the program used DAO but was recently converted to be using ADO for the extraction.
    The program worked in...
  9. Replies
    0
    Views
    973

    [RESOLVED] ADO with C++ in VS2005

    This is my first time ever working with anything database related and I am having problems. I am trying to access a Microsoft Access Database that is stored locally on my machine, read some tables...
  10. Replies
    0
    Views
    3,696

    [RESOLVED] Using ADO in VS2005

    This is my first time ever working with anything database related and I am having problems. I am trying to access a Microsoft Access Database that is stored locally on my machine, read some tables...
  11. Replies
    4
    Views
    6,632

    Re: strcpy_s & strncpy_s with char pointers

    I have to use MS's _s functions because my project manager says so T_T. I'd love to just use std::string, life would be much easier, but I am not allowed to change that, just "leave it as is, just...
  12. Replies
    4
    Views
    6,632

    strcpy_s & strncpy_s with char pointers

    I have been tasked fixing deprecations and need some help with some rather newbie problems. Listed below are two examples of some warnings that I need to address.

    I am seeking some examples on...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured