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. chikyu

    COM

    Hi all, I have a problem. I am calling a software API function in my program. The program has to loop for a fixed value and the function call is done inside the loop. However I have a message somewhere telling me " This action cannot be completed because XXX program is not responding...
  2. chikyu

    New operator

    Hi all, if I create a funtion Array2(int,int) which return a matrix and that inside the function I create the array using the NEW operator, do I need to use the DELETE operator to delete the matrix after use? Thank you for your kind inputs.
  3. chikyu

    I need an Open Dialog

    CFileDialog dlg(TRUE); if (dlg.DoModal()==IDOK) { actions } HTW
  4. chikyu

    Release version with Install option

    Hi everybody, After finishing one's application, how to make a release version with an INSTALL option so that the user can install the application? Thank you in advance.
  5. chikyu

    Class with pointers

    Thanx for your reply. The class Stream is like this: Stream{ private: int NumOfNodes; CPoint* nodes; public: Stream(int n); ... }; somewhere I have an AllocNodes() function which does: Cell= new CPoint[NumOfNodes]; That's why I was wondering if it's not necessary to...
  6. chikyu

    Class with pointers

    Hi everybody, This is really a very nice forum.Congratulations to the creators and thanx to all partipants. So my question is after having implemented a destructor like Stream::~Stream() { delete [] nodes; } Do I need to call it in the main() function or is it automatically called by the...

Part and Inventory Search

Back
Top