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

Search:

Type: Posts; User: kochhar

Page 1 of 21 1 2 3 4

Search: Search took 0.39 seconds.

  1. Replies
    10
    Views
    1,638

    Re: Which VS 2005 version?

    Thank you Siddhartha and Cilu. Your comments and links have made me more confident about the VS 2005 "standard edition" so I am going to order that today. (Not planning to do anything serious with...
  2. Replies
    10
    Views
    1,638

    Re: Which VS 2005 version?

    Thank you again. Very helpful. :)

    I am planning to get the standard edition on Monday but will monitor the thread until then in case someone comes up with a reason not to.

    My programs are...
  3. Replies
    10
    Views
    1,638

    Re: Which VS 2005 version?

    "What does this -
    ....
    ...mean?"

    It means that I had already discovered as much in my initial search. Note the last sentence of the first paragraph of my first post.

    "You got it."

    Yes,...
  4. Replies
    10
    Views
    1,638

    Re: Which VS 2005 version?

    Thanks for replying. I gathered as much from a web search. My real question is, (a) Is MFC and ATL fully functional in the VS 2005 "standard edition" and (b) What is missing from the "standard...
  5. Replies
    10
    Views
    1,638

    Which VS 2005 version?

    Hi Everyone,

    I've been away from programming for a couple of years. I recently downloaded the VS 2005 Express Edition from the MS web site and tried compiling some old programs (which compile fine...
  6. Replies
    5
    Views
    1,357

    Yes, using a thread seems the proper thing to do...

    Yes, using a thread seems the proper thing to do in this case. You might also just have the thread send the data directly rather than posting a messge to the dialog etc.
  7. Replies
    11
    Views
    1,524

    I think most of the other suggestions should have...

    I think most of the other suggestions should have solved the problem, but here is another link for completeness:
    ...
  8. The link provided by meisunknown is probably what...

    The link provided by meisunknown is probably what you need, but in case you are asking how to check if some other application is running, and what you know is the name, then get my function...
  9. I generally agree with the other comments. If you...

    I generally agree with the other comments. If you are looking for something really basic, then consider "Code" by Charles Petzold. It is somewhat long-winded, and experienced computer people may get...
  10. Another option is to convert your picture to bmp...

    Another option is to convert your picture to bmp format, then add it as a picture control in your dialog's resource file.
  11. Replies
    8
    Views
    1,211

    You could call FindWindow or FindWindowEx in your...

    You could call FindWindow or FindWindowEx in your calling program to check whether the other programs window has been created or not.
  12. Replies
    4
    Views
    849

    Something like this: UINT...

    Something like this:




    UINT ui=myFile.Read(szBuffer, sizeof(szBuffer)-1);
    szBuffer[ui]=0;
    m_sEdit1 = szBuffer;
  13. For styled buttons of all types, I highly...

    For styled buttons of all types, I highly recommend using the
    CButtonST class by Davide Calabro, at:

    http://www.codeproject.com/buttonctrl/cbuttonst.asp
  14. Replies
    4
    Views
    849

    I am not sure what m_sEdit1 is, but I would guess...

    I am not sure what m_sEdit1 is, but I would guess
    you need to add a terminating zero to szBuffer
    before copying it to m_sEdit1.
  15. Here's an alternate suggestion: char...

    Here's an alternate suggestion:



    char path[] = "C:\\temp";
    SHFILEINFO shFileInfo;
    if (SHGetFileInfo((LPCSTR)path, 0,
    &shFileInfo, sizeof(SHFILEINFO), SHGFI_TYPENAME) != 0)
    {...
  16. Replies
    4
    Views
    872

    Check this link: ...

    Check this link:


    http://codeguru.earthweb.com/dialog/ToolTips.shtml
  17. Replies
    4
    Views
    884

    For defining messages: #define WM_SOME_MESSAGE...

    For defining messages:

    #define WM_SOME_MESSAGE WM_USER+1
    etc.

    For sending messages, use PostMessage() or
    SendMessage()
  18. See if the following article might help: ...

    See if the following article might help:

    http://www.codeproject.com/debug/survivereleasever.asp
  19. Replies
    13
    Views
    1,532

    Here is one suggestion, which should work: ...

    Here is one suggestion, which should work:

    Since you have the process ID (in pi.dwProcessID)
    use that to call OpenProcess(), which will give you
    a handle to your process.

    Next, call...
  20. Replies
    13
    Views
    1,532

    When you create a process with CreateProcess(),...

    When you create a process with CreateProcess(), it returns
    the Process ID of the created process in the
    "Process Information" structire. You can use
    that to distinguish between multiple instances...
  21. Replies
    2
    Views
    795

    Paul, You might want to fix your home page...

    Paul,

    You might want to fix your home page link on your
    profile page. Right now it gives a page not found error.
    Probably it just needs an http:// in front.

    Thanks.
  22. Replies
    5
    Views
    4,125

    sndPlaySound() may be phased out. Use PlaySound...

    sndPlaySound() may be phased out. Use PlaySound instead.
    If you already have the waveform in memory, then look
    at the waveOutWrite() function (and the whole series
    of related waveOut.. functions.
  23. Replies
    15
    Views
    2,000

    The latest (Nov. 2003) issue of Dr Dobb's Journal...

    The latest (Nov. 2003) issue of Dr Dobb's Journal has
    an article on this very topic. According to that, the
    top compilers for ISO comformance are:

    Compiler %Passed
    ----------- ...
  24. Replies
    3
    Views
    605

    You might find the folowing article helpful: ...

    You might find the folowing article helpful:

    http://www.codeproject.com/debug/survivereleasever.asp
  25. Replies
    3
    Views
    1,012

    Here's a short example that lists all files in...

    Here's a short example that lists all files in the
    current working directory. You can modify it easily for
    your purpose:



    {
    CFileFind finder;
    char szDir[MAX_PATH+1];
    ...
Results 1 to 25 of 510
Page 1 of 21 1 2 3 4





Click Here to Expand Forum to Full Width

Featured