Search:

Type: Posts; User: DougD720

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,385

    C++ Excel VBA Issue

    Hey All,

    Didn't know whether to put this here or in the C++ forum - here seems more appropriate. I've written a DLL to interface with Excel VBA code. The DLL works great, and most of the VBA...
  2. Replies
    9
    Views
    1,488

    Thanks for the help guys, Salem was in fact right...

    Thanks for the help guys, Salem was in fact right (no surprise) but the reason it wasn't working wasn't because of anything more than I was missing a <= in one of the for loops in the constructor, (I...
  3. Replies
    9
    Views
    1,488

    Copy method Board * copy() { Board * ret...

    Copy method


    Board * copy()
    {
    Board * ret = new Board(0);

    for(int i=1; i<=6; i++)
    {
    ret->getComputerBox(i)->add(getValueComputerBox(i));
  4. Replies
    9
    Views
    1,488

    Thanks Salem, I removed that delete [] line,...

    Thanks Salem,

    I removed that delete [] line, but still appear to be getting the same error. I think it has something to do with the underlying linked list contained in the Board class.

    This is...
  5. Replies
    9
    Views
    1,488

    Problem deleting/freeing memory

    Hi All,

    So I'm trying to get back into C++ (mostly java for a while where memory management is avoided). So I've got this program and it runs perfectly when I don't try to clean up the memory. I...
  6. Thanks Mark! That did the trick. I'll just...

    Thanks Mark!

    That did the trick. I'll just have to change that from now on when working from the code in the book I'm using.

    Thanks again,

    Doug
  7. Thanks guys I'd appreciate it. Seems the files...

    Thanks guys I'd appreciate it. Seems the files are too large to upload here but here's the zipped project folder and all contents from VS 2010:

    Download WinFileCopy.zip

    Thanks!
  8. Thanks for the suggestion, I had tried putting...

    Thanks for the suggestion, I had tried putting files in the project folder and the .\\ directives as well to no avail but I just ran it now and, for some reason, it's working - sort of.

    It doesn't...
  9. CreateFile Error 2 - Simple Problem, Can't Figure it out

    Hello all,

    So I haven't programmed in a long time now and I'm working through a Windows System Programming book and for some reason I can't figure out why this simple file copy program keeps...
  10. Replies
    6
    Views
    7,949

    Great guys thanks for all the help and...

    Great guys thanks for all the help and suggestions! The program's running fine now and now I know how to go about setting up the linked lists. I think I've now got a good grasp on pointers now too....
  11. Replies
    6
    Views
    7,949

    Yeah that makes a lot more sense. I still don't...

    Yeah that makes a lot more sense. I still don't have the reference and pointers down-pat. I want the functions to change the arguments that get passed (initialize the list and have that List struct...
  12. Replies
    6
    Views
    7,949

    Thanks Salem, I'll give that a try when I get...

    Thanks Salem, I'll give that a try when I get home to my Linux machine.

    The only concern I have with that though, which may be a simple fix, is that I want to traverse the list until I get to the...
  13. Replies
    6
    Views
    7,949

    Linked List Pointer Seg Faults

    Hey Guys,

    So I'm working on a bigger project but trying to implement some Linked List functionality into it and I keep getting this segmentation fault at the same spot and I've checked examples...
  14. Replies
    3
    Views
    967

    Agreed, I'm a web developer at the moment (and...

    Agreed, I'm a web developer at the moment (and it's terribly boring) and when I first started it was like this. You'll get into sync with the devs, give it time.
  15. Replies
    2
    Views
    4,104

    Thanks that was the issue. Like I said - rusty.

    Thanks that was the issue. Like I said - rusty.
  16. Replies
    6
    Views
    28,714

    Tracert doesn't show who's connected to a website...

    Tracert doesn't show who's connected to a website by the way - that video's so wrong and the kid in it's an idiot. It shows your forwarding to the website. Basically what networks and machines yours...
  17. Replies
    2
    Views
    4,104

    Macro Error for Driver Development

    Hey Everyone,

    I've been doing some system stuff and I went to compile my driver today using the WDK Checked Build Environment. I keep getting a bunch of errors but I think they're all being...
Results 1 to 17 of 17