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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by vivprog123

  1. vivprog123

    Code assist feature

    usually when you type an object, and do, object. a list of functions methods and memebers will pop up. Try it out!
  2. vivprog123

    CListControl Text for a certain row

    YOu can even use customDraw !! (I find this easieset)
  3. vivprog123

    simple simple simple pathetic question

    You must thinking of C++ not VC++ if you are looking for a string. CString is just like a string, it has lots of functions associated with it incase you want a number to be changed into a string. CString.Format ..... :-D
  4. vivprog123

    CArray or vector?

    DOn't get me if I'm wrong but can't CArrays be sized dynamically and change its size on the fly? For example for a normal array you would have to declare how many elements you want at the start. But Carrays allow you to add elements on the fly, and delete elements on the fly. It resizes to...
  5. vivprog123

    C++ illegal digit for base error...HELP!

    also inside your program, inside the main(), your net function should be written as: net(start,length); not with the float net(int start....) You don't need to put the type inside the main function. You put the types in function prototypes.
  6. vivprog123

    C++ illegal digit for base error...HELP!

    Isn't your if statement always false? if start is greater than 1800, than it is not less then 800. if start is less then 800, then it is not greater than 1800. (start >= 1800) and (start <= 800) can both never be true together, therefore your if statement is always false if (start >= 1800...
  7. vivprog123

    How can I make program to wait for a keystroke in CDialog.

    Can you just use the WM_ONKEY function??
  8. vivprog123

    menu element check/uncheck

    pCmdUI->Enable(TRUE); pCmdUI->SetCheck(1); Try This!! Tell me if this works You need to use the SetCheck(TRUE OR FALS) function to set the check
  9. vivprog123

    CFileDialog

    CFileDialog myDialog(TRUE, // file open; FALSE means &quot;save &quot;pa&quot;, // default file extension NULL, // file name to show initially OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT, &quot;PA Files (*.pa)|*.pa|&quot;); //this is...

Part and Inventory Search

Back
Top