I use Zafir Anjum's TitleTip[^] class to provide an infinitely displayed tooltip in my TakeStock[^] app. I use it to display a stock quote tooltip when the window is too narrow to display the entire quote. /ravi Let's put "civil" back in "civilization" http://www.ravib.com ravib@ravib.com
Fixed. My solution to this problem was to change the global warning level before including the headers that used the locale files, like so : #pragma warning(push, 3) #if !defined(_BITSET_) # include #endif // !defined(_BITSET_) #pragma warning(pop)
The number of threads is limited by the amount of available virtual memory. By default each thread has one megabyte of stack space. This means that you can create at most 2028 threads. To obtain more threads you need to increase your virtual memory or reduce the stack size for each thread. See the CreateThread documentation for addition information.