Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
C

C Mahesh

@C Mahesh
About
Posts
23
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • need code to check if the value is numeric in C
    C C Mahesh

    Build your logic based on the following example. int main( ) { char n ; int no = 0 ; printf("Enter a no " ); while( (n = (char)getche( )) != '\r') //Check for enter key { if( n >= '0' && n <= '9' ) { n = n - 48 ; no = (no * 10) + n ; } else{ printf("\nInvalid. "); } } printf("\n %d " , no ) ; return 0 ; }

    C / C++ / MFC help tutorial question career

  • Gridview problem
    C C Mahesh

    I think you should clear the view before updating.

    ASP.NET help database question

  • exception handling
    C C Mahesh

    As far as I am aware, CDatabase class will throw a Database exception (CDBException) and not CFileException.

    C / C++ / MFC database question

  • Pure virtual function in other compilers
    C C Mahesh

    Great, As for i am aware, the compiler should not allow it, and even if it allows what is the use of it when the class is abstract. P.S: I have checked with VC++7.0, it gives an error

    C / C++ / MFC c++

  • Pure virtual function in other compilers
    C C Mahesh

    I have the following questions : 1.Which version of VC++ compiler did you use? 2.What is your understanding of pure virtual functions?

    C / C++ / MFC c++

  • inheritence of structure
    C C Mahesh

    Yes.

    C / C++ / MFC

  • inheritence of structure
    C C Mahesh

    The basic difference between a class and struct is with respect to scope. The class members are default private and struct members are public. In addition to this a struct should be used the way it is done in c and use class where you need attributes and behaviours.

    C / C++ / MFC

  • inheritence of structure
    C C Mahesh

    Please ignore this, as my browser had some problem. thanks Mahesh

    C / C++ / MFC

  • inheritence of structure
    C C Mahesh

    If you have worked with classes then replace class with struct. Ex: struct a{ } ; struct b : public a{ };

    C / C++ / MFC

  • inheritence of structure
    C C Mahesh

    If you are aware of inheritence using classes then replace the class keyword with struct.(Note: Try this with C++ only) Ex: struct a{ } ; struct a : public b{ private: ---- protected : ----- public : ----- } ;

    C / C++ / MFC

  • DataBase problem
    C C Mahesh

    Look at ADO. Using ADO I think you will be able to read .xls , .txt , .mdb ,..... files.

    C / C++ / MFC c++ database help tutorial

  • error LNK2001
    C C Mahesh

    See in MSDN for the topic : Linker Tools Error LNK2001

    C / C++ / MFC help question

  • A linker error!
    C C Mahesh

    Add MFC support to your program

    C / C++ / MFC debugging help

  • Switch Statement
    C C Mahesh

    Use choice = (char)toupper( choice ) ; switch( choice ) { case 'M' : ---------- ---------- break ; case 'C' : ----------- ---------- break ; }

    C / C++ / MFC c++

  • strings in c++
    C C Mahesh

    I think you should reffer to some good books on C and C++ (Ex: C and C++ Programmers Bible)

    C / C++ / MFC c++ help question

  • Question about C++ and C# ...
    C C Mahesh

    Have a look at Managed C++

    C / C++ / MFC question c++ csharp help

  • Simple inheritance but a single error. plz run this !!
    C C Mahesh

    Since you have not described your problem, my gues on seeing your code is that you should have a default constructor in the baby class.

    C / C++ / MFC

  • Server supporting mutiple clients(socket programming)
    C C Mahesh

    Thank You

    C / C++ / MFC question c++ sysadmin

  • Server supporting mutiple clients(socket programming)
    C C Mahesh

    How do i write a server that supports multiple clients using MFC Socket classes? Thanks

    C / C++ / MFC question c++ sysadmin

  • Few Basic Questions!
    C C Mahesh

    I think you should refer to MSDN. MSDN has lot of information on this.

    C / C++ / MFC question learning
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups