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 Wanet Telecoms Ltd 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: *

  • Users: Kartiksg
  • Order by date
  1. Kartiksg

    Multiple views (MFC)

    Hi Search for online documentation on CFormView which is like a Dialog bur derived from CScrollView ( CView ). Hope this helps. :-) Take it Easy :-) Kartik.S
  2. Kartiksg

    Class with pointers

    The moment you instantiate a class, the constructor is called. Classes are also scoped and have a life. After its life time (when the function ends), the destructors are called automatically (unless you use new for which delete must be called appropriately). Hope this helps eg int main() {...
  3. Kartiksg

    THIS ?

    void Method1() { //... Method2(); //... } I'm new. Hope this is what you wanted. :-) Take it Easy :-) Kartik.S
  4. Kartiksg

    Graphics effects

    Try www.GameTutorials.com for OpenGL and Win32 graphics effects. Also visit www.developium.com whick is a forum dedicated to game programmers. :-) Take it Easy :-) Kartik.S
  5. Kartiksg

    How do you use a edit box (password) to get to another dialog window?

    I am new to VC++. I use VC++6 and use MFC. I assume that the 1st dialog is in class CPassDlg. I assume that the 2nd dialog is in class CWorkDlg. I also assume that the Edit control does not use a database for storing a password and is named IDC_EDIT_PASS. I also assume that there is a button on...

Part and Inventory Search

Back
Top