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

Search:

Type: Posts; User: sreehari_mysore

Search: Search took 0.04 seconds.

  1. Design Principles of an n-tier web application

    Dear All,

    Can anybody kindly suggest me some good sites/documents those give the good knowledge of designing of n-tier Web applications and Windows application.

    Thanks a lot in...
  2. Re: Removing duplicates from a linear singly linked list.

    I will certainly try it out with std::set.

    Regards,
    Shreehari
  3. Re: Removing duplicates from a linear singly linked list.

    Yes ... the proper changes as to be made to a C program to run it as a C++ program.

    But here, my intension is not a conflict between C and C++, but to develop a procedure to supress the...
  4. Re: Removing duplicates from a linear singly linked list.

    C++ is not quite a superset of C.

    Yes... of course... but with a few changes, every C program is also a program of C++. the proper type casting is one among them in the example that was...
  5. Re: Removing duplicates from a linear singly linked list.

    I think there is nothing wrong in running a C program (non-object oriented) using .cpp extension.

    I agree that it is not a real world problem, but only an acadamic level one.

    It is known that...
  6. Re: Removing duplicates from a linear singly linked list.

    Ya ...
    that is known. all the memory cannot be deleted by free(). it can only delete the memory which is allocated by malloc().

    But here the problem is something else ....

    I am still...
  7. Re: Removing duplicates from a linear singly linked list.

    Hi,

    This is not a C++ program. It is a simple C Program (non Object oriented). And not even the school homework.

    While Debugging, it generates the exceptional error while tying...
  8. Removing duplicates from a linear singly linked list.

    I was trying to develop a procedure to delete duplicates from a linear singly linked list.

    To keep the things simple I hard coded the values into the sample list.

    I used the VC++6.0 ...
  9. Re: How to traverse to the Middle node of the list ?

    Thanks a lot for your idea.....
    Thanks a lot !!!
  10. How to traverse to the Middle node of the list ?

    How to traverse to the middle of a singly linear linked list .?

    It is not allowed to traverse the entire list to find out no. of nodes in the list.

    Please help...
  11. How to reverse a string without standard Library function ?

    How to reverse a character string without using any standard library string manipulation functions Like strlen(), strcpy() and etc ...?

    Could anybody please help me ?
  12. How to implement OnNcHitTest() in CChildView

    This is the sample application that I was working on VC++ 6.0.

    I am trying to move the window by pressing the mouse left button down on client area and moving the mouse.

    for that I used simple...
  13. Re: Error RC2104 : undefined keyword or key name: IDC_STATIC

    Ya ...

    the last line was missing in my afxres.h file. now I have included and that rectifies the problem.

    Thanks a lot Vladimir !!!

    I will keep in touch ...

    Regards,...
  14. Re: Error RC2104 : undefined keyword or key name: IDC_STATIC

    Hi...

    here with I have attached the generated rc file and afxres.h.
    my application name is sample and the generated rc file I kept it as txt file.

    The afxres.h file is in ...
  15. Re: Error RC2104 : undefined keyword or key name: IDC_STATIC

    Hi...

    Do you think this is due to some DLL corruption ?

    If that is the case, what could be the solution for this ?

    Kindky let me know your ideas.
  16. Re: Error RC2104 : undefined keyword or key name: IDC_STATIC

    Hi...

    the steps I mentioned are nothing but to create a SDI window without Doc/View support. This should create a plain SDI application window.

    Ya ..There is no #define for IDC_STATIC in...
  17. Error RC2104 : undefined keyword or key name: IDC_STATIC

    This was the error that I got when I tried to create an SDI application without Doc/View support with VC++ 6.0 Enterprise Edition.

    But previously I remember that was not getting this error.

    I...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured