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

Search:

Type: Posts; User: dcyuri7

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    8
    Views
    1,240

    Re: [not a problem] Just a little humor..

    really! that is amazing, I hadn't a clue.
    Is that generated to help developers(obvious i suppose)? more specifically, who/what decided to include those as "defaults" for faults?

    truly intriguing,...
  2. Replies
    8
    Views
    1,240

    [not a problem] Just a little humor..

    Well I thought it was funny anyway lol. It isn't often that C++ talks back to you in semi-english. ;)
  3. Replies
    3
    Views
    1,958

    Re: limit home network bandwidth per node

    Ahh my mistake. Clipboard failed me!
    Correct link updated above now. It's from the code guru archives here.

    And thank you for the reply! I really appreciate your insight here. I do agree,...
  4. Replies
    3
    Views
    1,958

    Re: limit home network bandwidth per node

    hmm. Has this never been done before? Or is my question confusing perhaps?

    Idunno, I think it's an idea that should work. Guess I'll go ahead and give it a try. Usually people are quite...
  5. Replies
    3
    Views
    1,958

    limit home network bandwidth per node

    I didn't want to dig up an extremely old thread, and since search brought back few items in such a regard, i opened new thread. Hope thats cool w/ you guys.

    The old thread is:...
  6. Thread: Homework Help!

    by dcyuri7
    Replies
    2
    Views
    651

    Re: Homework Help!

    We really need to know the exact problem that you've been assigned.

    I'm having to make a ton of assumptions based on the code you supplied above, as well as the statements made in your post, so...
  7. Replies
    1
    Views
    1,049

    Re: Best way to implement caching

    Are we talking cache as in data caching? Or did you mean hashing? Because it sounds like your depicting hashing in methadology, via an algorithm.

    Caching is for storing data for quick access...
  8. Replies
    2
    Views
    2,094

    Re: Handle Show Desktop in MFC.

    Are you wanting to hook it at a user level? I can help with that if that's what your wanting to do.

    If your looking for information on how ShowWindow works, well I'm not entirely sure myself.
    I...
  9. Replies
    3
    Views
    781

    Re: Pointers and the "->" symbol

    Put simply:
    '->' is for managing pointers
    ' . ' is for "direct" management.

    So when your using a pointer ( a piece of memory allocated in RAM, that stores the Address of "something"), you...
  10. Replies
    2
    Views
    1,437

    Sales & Marketing

    Hey guys, I was hoping I could gather some information from you'all.

    I've got my software in it's final stages, and so, after realizing the potential it had to polymorph from a personal fun...
  11. Replies
    7
    Views
    1,425

    Re: [RESOLVED] Win32 Flow Control Issues

    My bad. Thought it would help, especially since the original post was over-descriptive and abundantly extensive. Apparently I was mistaken, and it contains information of use.



    Thanks bro,...
  12. Replies
    7
    Views
    1,425

    Re: [RESOLVED] Win32 Flow Control Issues

    Welp, turns out it still isn't handling everything correctly. Certain HWND's(ones that contain children of their own) still aren't drawing correctly (become hidden/painted-over).

    See...
  13. Replies
    7
    Views
    1,425

    Re: Win32 Flow Control Issues

    InvalidateRect's bool flag for Erasing was the problem with button's dissapearing. Turning that to false will keep my button hwnd's from dissapearing from behind the WM_Paint's FillRects().
    But...
  14. Replies
    7
    Views
    1,425

    Re: Win32 Flow Control Issues

    Hey thanks for the reply.

    I sorted out some issues.
    I've found that commenting out blocks of source code can lead to MANY answers. :)

    The "refresh" issue was due to the WS_CLIPCHILDREN....
  15. Replies
    7
    Views
    1,425

    [RESOLVED] Win32 Flow Control Issues

    See posts below for current information.
  16. Replies
    12
    Views
    1,462

    Re: where to go.. what to try

    Quite the opposite actually - I am aware of the rules. I did not suggest that he makes something of "this type of behaviour". Furthermore, I never said that I condone it, nor would I suggest it to...
  17. Replies
    12
    Views
    1,462

    Re: where to go.. what to try

    You should do what is fun. I'd say that's the best answer. Do what you'd enjoy. If a trojan makes you happy, go make it and enjoy the sh*t out of it. That's what I did atleast - pissed my neighbors...
  18. Replies
    5
    Views
    1,294

    Re: Need some help w/ Fonts..

    Ehh, my compiler, believe it or not, actually errors if I don't type cast it. Gotta love microsoft products...


    Just tried on Dev C++ without the type cast and it works fine. That was it. I gave...
  19. Replies
    5
    Views
    1,294

    Re: Need some help w/ Fonts..

    Yes they do show up there, and when copying to that directory it shows the brief installation GUI w/ the progress bar.
    So that should be fine.


    I'm thinking it might be a limitation based on...
  20. Replies
    3
    Views
    1,079

    Re: [RESOLVED] Need help with overload functions

    you bet :)

    It's always the little things that get us. lol, the missing brace,period,case of letter, you know the rest hah... Glad to help :)
  21. Replies
    7
    Views
    1,263

    Re: Need halp on final exam asap!!!

    lol dude your awesome :D
    Absolutely the highlight of my day hah :)

    Contact me on MSN and ill help you, it's juppie7@gmail.com
  22. Replies
    3
    Views
    1,079

    Re: Need help with overload functions

    Change
    if (patientType == 'I' && patientType == 'i') TO
    if (patientType == 'I' || patientType == 'i') Note the '||' versus '&&'. :)

    Since 'I' != 'i' , we know that when it reaches the line...
  23. Replies
    5
    Views
    1,294

    [RESOLVED] Need some help w/ Fonts..

    Hey guys, I was hoping someone could review my code (posted below). I pre-compiled it, and so it's ready to use.

    My problem is that I cannot get it to use outlying fonts. The one I'm using,...
  24. Replies
    7
    Views
    1,263

    Re: Need halp on final exam asap!!!

    I know I'm not one to speak being who I am, but shouldn't you guys have started on this alittle earlier?

    1.) When you say "menu driven", are we talking DOS or Win32 GUI? If the answer is the...
  25. Replies
    9
    Views
    2,047

    Re: Thread overrides?

    Well, it sounds like I have over stayed my welcome here. I am going to go ahead and be inactive on this thread, and just use TerminateThread until I find myself a fix for it.

    I appreciate...
Results 1 to 25 of 53
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured