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

Search:

Type: Posts; User: krmed

Page 1 of 57 1 2 3 4

Search: Search took 0.48 seconds.

  1. Replies
    4
    Views
    5,455

    Re: No scrollbar for Listbox using WinAPI

    The OP has probably solved this within the past 11-1/2 years!
  2. Replies
    6
    Views
    2,428

    Re: #import "MSVBVM60.DLL" error

    After 11 years, there's a chance he's not even around this forum anymore!
  3. Re: crashes after displaying 100 bars??? help please.

    First, as I recall, you cannot delete the object (blackbrush) while it is selected into a DC. You need to reverse the order of the last two lines.

    Also, as mentioned earlier, I don't see where...
  4. Replies
    5
    Views
    1,454

    Re: Do {} while errors

    Guess you haven't had your morning coffee! perhaps you meant

    choice < 1 || choice > 20 since choice cannot be less than one and greater than 20 at the same time.
  5. Replies
    5
    Views
    1,857

    Re: What's a "First-chance exception"?

    Instead of resurrecting a thread that's 7 years old (13 years from the original post) you should start a new thread with your problem.
  6. Replies
    7
    Views
    956

    Re: Problem in C++ programming

    As many have said, this is extremely easy in Excel.

    If you load your data into Excel and have your 6 columns, simply insert a new column between the third and fourth column.

    Assuming your data...
  7. Replies
    8
    Views
    1,696

    Re: A strange problem related to def file.

    The signature in the error message (?XXXXFunction@XXXClass@@UAEHPAVCWnd@@QAUIMyStruct@@@Z) is still looking for the function without your int - it's looking for
    XXXXFunction(CWnd *,IMyStruct *...
  8. Replies
    10
    Views
    2,428

    Re: How to make DAO connection in VC++ 6.0 ?

    It's also possible that VC6 (very old) may not be able to handle .mdb files saved with MS Office 2003/2007, unless they are saved in a mode that's compatible with Offfice 97.

    Good luck.
  9. Re: GDI Problem - BitBlt() Doesn't Seem To Be Doing Anything

    Since you are trying to use BitBlt, it might help if you show how you created your m_pdcMemDC. I also don't see any code showing you drawing into the m_pdcMemDC before the attempt to BitBlt it.
    ...
  10. Thread: Matrices!

    by krmed
    Replies
    2
    Views
    632

    Re: Matrices!

    At first glance, I don't see where you initialize your Yoona array. Could this be the problem?
  11. Replies
    3
    Views
    3,460

    Re: How to read and write on SERIAL PORT

    It sounds like you're trying to run both applications on the same computer. If so, you'll run in to another problem (which you may be aware of).

    The sending of data will cause the data to be...
  12. Replies
    3
    Views
    5,366

    Re: CHeaderCtrl background color.

    The OP has probably solved this himself, or given up, or died, or moved to an isolated island

    in the past 11 years!
  13. Replies
    5
    Views
    2,123

    Re: Using 256 Color Bitmaps in Toolbar

    Probably a new record!

    NEARLY 13 YEARS OLD!!
  14. Replies
    3
    Views
    1,665

    Re: Get master volume value

    I doubt that he's still monitoring this thread after 6 years!

    You should open a new thread for this question.
  15. Replies
    15
    Views
    36,020

    Re: How to Read BIOS ROM

    It's quite possible that he's forgotten in the past 4 years!

    Please don't resurrect ancient threads.
  16. Replies
    3
    Views
    2,243

    Re: CToolBar Owner-Drawn

    Just over 8 years old!
  17. Replies
    5
    Views
    1,876

    Re: win32 console & windowless

    Not bad for a 12-year old thread!
  18. Replies
    4
    Views
    1,067

    Re: MFC Regular Dll Help?

    I changed the signature to return a CString instead of int, and it ran fine in both debug and release.

    I also had to change the Debug Command parameter as it was pointing to some unknown \user...
  19. Replies
    9
    Views
    1,239

    Re: Debugger not aware of code changes any more

    Since you didn't specify what temp files you thought of, are there any you didn't think of?

    Not sure about VS2008 but the temp files I always delete (some for specific VS versions) are .ncb,...
  20. Thread: Memory DC Help

    by krmed
    Replies
    2
    Views
    1,036

    Re: Memory DC Help

    From what I read in MSDN, the first two parameters for BitBlt should be the X and Y of the top left corner. Perhaps this is the problem?
  21. Replies
    12
    Views
    3,964

    Re: Catching OnClose message for CDialogBar

    It would be better to start a new thread for your question rather than reviving a thread that's 13 years old!
  22. Thread: MFC Beep

    by krmed
    Replies
    5
    Views
    4,862

    Re: MFC Beep

    I bet the OP got this resolved sometime in the past 12 years!
  23. Re: consolidating all libraries (user and VS C++ infrastructure ones)

    When you create a new project, you should right-click on that project and choose the Properties. In their, you can set all of the needed properties (as I depicted in an earlier post. By doing this,...
  24. Re: consolidating all libraries (user and VS C++ infrastructure ones)

    Exactly what you put in a solution is up to you...there are several (almost infinite) approaches to this. For starters, let's get the terms correct. You asked if you should have one solution per...
  25. Re: consolidating all libraries (user and VS C++ infrastructure ones)

    You can think of the "solution" as everything needed to build ONE complete application. For instance, if you are building an app called MyApp, and MyApp uses three DLLs and one library that you also...
Results 1 to 25 of 1423
Page 1 of 57 1 2 3 4





Click Here to Expand Forum to Full Width

Featured