Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 7496764

    Something I don't understand about Classes, Objects, Method, Members..

    Think Like This. You have one variable in you class public CString Name ; You used this variable with all the function everywhere, like void TakeInfo() { classObj.Name = &quot;Manish&quot; } ....at many function.... Now my boss will tell me i want to see name like this... &quot;<...
  2. 7496764

    Allocate Two Dimentional Array...

    Hi Group, I want to allocate two dimentional array. How can i do it. Suppose my variable is this char **c; i want to allocate it with new/malloc. Thanx in advance.
  3. 7496764

    Function parameter

    Sorry I missed something Your declaration. BreakNumber(char **p) But you can't call it with char m[i][_MAX_ARRAY]; So do this for solution declare... BreakNumber(char p[][_MAX_ARRAY]) And It will Allow you to pass array.
  4. 7496764

    Function parameter

    Hi Laibz, I think you can declare function with char **; BreakNumber(char **p) =======> Is Okay But you can't call it with char m[i][_MAX_ARRAY]; So do it for solution BreakNumber(char *p[_MAX_ARRAY]) And It will Allow you to pass array.
  5. 7496764

    Overloading &lt;&lt; in VC++

    Hi Borg, Hi Think Error is In Statement, friend ostream& operator<< ( ostream& os, Date& dt ) { os << dt.mo << '/' << dt.da << '/' << dt.yr; return os; } it should be ostream& operator<< ( ostream& os, Date& dt ) { os << dt.mo << '/' << dt.da << '/' << dt.yr...
  6. 7496764

    how to increase the size

    Hi Dhara, When You move Slider Control, It generates WM_HSCROLL message. Override this message. Initialize slider control's range and properties ( Which is found in MSDN ).Make int Variable Of Slider Control. and Write Your Circle code in Overrided WM_HSCROLL method. Thanx.

Part and Inventory Search

Back
Top