Search:

Type: Posts; User: SeanMSimonsen

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    1,719

    I had the exact same thing happen to me. I also...

    I had the exact same thing happen to me. I also have XP and after a while the folder just wasn't in the recycle bin anymore. I was actually never really concerned about it in the first place,...
  2. Replies
    2
    Views
    1,662

    zip utility

    I was wondering what the simplist, smallest zip/unzip utility is. I don't care much for features beyond that main purpose. I have a pen drive (64 mb), and am wanting to put it onto there, so I want...
  3. Your advice of running it as non-mdi helped me...

    Your advice of running it as non-mdi helped me out a lot, thank you. I realized that the problem was I had commented out a couple lines that I didn't need before, and I forgot to put them back when...
  4. Here's the code, btw...

    LRESULT CALLBACK DayWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
    {
    HDC hdc;
    PAINTSTRUCT ps;
    RECT rect;

    switch( message )
    {
    case WM_PAINT:
    hdc = BeginPaint( hwnd,...
  5. Default Procedure for MDI Child Window?

    Could anyone tell me what the default procedure is for a child window in an mdi application? My group at school is making a finance mangagement program, and my part is to do a calendar, and the...
  6. Replies
    5
    Views
    3,259

    My solution

    I'm now putting everything in one file... no worries.
  7. Logic problem adding nodes to linked list

    I seem to be having trouble with the logic in the following function. Calendar has a double-linked list of events, and I want to add events, and have them sorted upon being added. Unfortunately,...
  8. Replies
    5
    Views
    3,259

    I hate computers

    It was working fine for a while, and now it's not. Once again, it failed to open the Calendar.hxx file. This time, to test whether it was the Calendar file that was F'd up, or something else, I...
  9. Replies
    4
    Views
    1,953

    Your code doesn't work because you are only...

    Your code doesn't work because you are only checking repeat_number against number, which is the last entered number, each time you go through the loop. What you need to do is check it against all...
  10. Replies
    5
    Views
    3,259

    This is just plain stupid

    I'm getting ........ed off at this thing. In order to find what file my mistake was in, if there was one, I replaced the main file with a new one that did nothing but contain a main function and include...
  11. Replies
    9
    Views
    1,134

    If you want one that works for various compilers,...

    If you want one that works for various compilers, I may not recomment Petzold's book, as they seem to work on Microsoft's compiler, but there can be problems on other ones. Besides that, though,...
  12. Replies
    5
    Views
    3,259

    Cannot open include file

    Does anyone know what's up with this?

    It says "c:\program files\microsoft visual studio\myprojects\calendarlist\testeroo.cxx(1) : fatal error C1083: Cannot open include file: 'Calendar.hxx': No...
  13. Replies
    9
    Views
    1,760

    Your answer is here, go here if you want to find...

    Your answer is here, go here if you want to find your answer because here's where it is:

    http://owlnext.sourceforge.net/qa51.html
  14. Replies
    9
    Views
    1,115

    Help with getline()

    cout << "Enter employee name, followed by return.: ";
    getline(cin, name);
    cout << "Enter employee social security number, followed by return.: ";


    When I run a program with the above, it...
  15. Replies
    22
    Views
    4,360

    I don't think the algorithms for chess should be...

    I don't think the algorithms for chess should be a problem for me, as I've already made a chess game in Java. Also, after everyone's helpful post's I think I've pretty much decided on either DirectX...
  16. Replies
    22
    Views
    4,360

    Starting games - books? api?

    Okay, I know c++ fairly well and have done several text-based games like battleship, hangman, and such.

    I am wanting to start graphics programming now. I am thinking that I want to use DirectX...
  17. Replies
    3
    Views
    2,365

    Thank you, I fixed it. The problem was not in...

    Thank you, I fixed it. The problem was not in those functions, but elsewhere. The reason I thought the previous pointers were null is because I kept printing them with respect to the Top Card, so...
  18. Replies
    3
    Views
    2,365

    Adding Node - Double Linked List

    I'm trying to write a deck to use in a blackjack game, but am having trouble with the adding cards functions. After I add all of them, I traversed the list to check what's wrong, and for each card I...
Results 1 to 18 of 18