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 strongm 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. sskumar

    Feezes on linking!

    I think this may be due to the workspace getting older and older. For this a crude solution is delte the *.ncb and *.opt fiel and load again and u can see the difference in time(Fast) Sen
  2. sskumar

    Hi All, Is there any macro

    Hi All, Is there any macro equivalent to TRACE()/ ATLTRACE2(..) to send values to output window. The problem is TRACE MACRO requires MSVCRTD.lib to be included, But if use this macro in a DLL which is static, Multithreaded ir gives Link error WinMain already defined in MSVCRTD.lib. IS...
  3. sskumar

    List

    hi U can use STl std::vector<int> x; int a=10; x.push_back(a); a = x[0]; int b = 20; x.push_back(b); b=x[1]; ... ....
  4. sskumar

    Check type of CD-R

    Hi GetDriveType() function finds the drive type whether it is CD or not and _access() used find its writable or not.
  5. sskumar

    checking character strings with an if statement

    hi starmechLx, why u need to write this complex code?. u can very well go for strcmp() funtion know? S.Senthil Kumar.
  6. sskumar

    plz suggest some articles on single thread, multi thread

    hi JackMorris, As far as i know when we want to do some miscellaneous calculations while we execute our main process we go for multithreading. Wile creation of project we can set the settings in VC++ S.Senthil kumar.
  7. sskumar

    Problem with struct that name is pointer

    hi Benny see if it helps #include <iostream.h> //using namespace std; typedef struct QueueStruct { int Count; /* number of queue items */ void* Front; /* location of item to remove next */ void* Rear...
  8. sskumar

    Hi I have a class Class MM{ p

    Thanks But The problem is i get (IADFsomeInterfacePointer *)y from some other funtion which i need to assign to Class xx member S.Senthil kumar
  9. sskumar

    Interface pointer Assignment Crashing

    Hi I have a class Class MM{ public: SetInterfacePtr( IsomeInterfacePointer *y) { xx = y;// crashing place }; private: IADFsomeInterfacePointer *xx; }; When i have an object variable of type class MM and call its SetInterfacePtr function it is...
  10. sskumar

    Hi I have a class Class MM{ p

    Hi I have a class Class MM{ public: SetInterfacePtr( IsomeInterfacePointer *y) { xx = y;// crashing place }; private: IADFsomeInterfacePointer *xx; }; When i have an object variable of type class MM and call its SetInterfacePtr function it is...
  11. sskumar

    Heap Error

    Actually i can't get the problem. if possible paste the sample code for explaining. i tried like this #include &quot;afx.h&quot; CString xx; void fn1(); void main(void){ fn1(); if(xx.IsEmpty()) cout<<&quot;Empty&quot;; else cout<<xx; } void fn1(){ CString x = &quot;std&quot;; xx = x; }
  12. sskumar

    how to find key word

    Just Go for Edit menu Find in files. Type the keyword/Any, Give the file types, Give the path and Give OK. U will get the search results in the Output window find in files1/2 S.Senthil kumar.
  13. sskumar

    Beginner - Screwed up his system - MFC (exe) - Regedit!!!

    Hi tchouch, As per mongoloid thread will he be able to run the regedit.exe?!!. I don't think it will open the regedit.exe S.Senthil Kumar.
  14. sskumar

    STL set error with release version only

    Can u please tell what was the error message in release? i suspect memory problem. senthil
  15. sskumar

    error C2065: 'IDD_PROJECT1' : undeclared identifier

    It might be due to that U may have created a dialog at run but not have declared in resource.h
  16. sskumar

    Problem while compilation in VC++.

    i had not used SQL yet. Please see for any libs inclusion in proj settings.
  17. sskumar

    How can I browse directories?

    Can't U able to do with CFileDialog
  18. sskumar

    Unhandled exception while using strcpy() -- Urgent

    Hi kathiyayini, Yes what mingis told was right. U are trying to access unallocated area in memory. thats why it is crashing for the variable char* inullable[20]; I have pasted ur code with modification. only MODIFICATION is memory allocation. char* inullable[20]; char*...
  19. sskumar

    Who thinks VC++ IDE/debugger is not good?

    Hi, There are several debugging optons available to pinpoint the location of problem. VC++ IDE it is a ocean. for ur problem of inaccurate location of error U please try this. Go to DEBUG menu->Exceptions-> select all the entries in the window and check the stop always option. This will...
  20. sskumar

    Classes and member variables and fucntions

    Hi Danny, We can access a private member of a claa from other class member function i fthey are declared friend functions. To simply get the private member outside a class,write a public member function that returns the value of the private member. S.Senthil kumar

Part and Inventory Search

Back
Top