Click here to Skip to main content
15,897,273 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: My solution is correct? (about funtion parameter in STL) Pin
Christian Graus20-Feb-03 16:52
protectorChristian Graus20-Feb-03 16:52 
GeneralRe: My solution is correct? (about funtion parameter in STL) Pin
George220-Feb-03 17:23
George220-Feb-03 17:23 
GeneralQuestion about overloading operator >> in STL. Pin
George220-Feb-03 3:01
George220-Feb-03 3:01 
GeneralRe: Question about overloading operator >> in STL. Pin
Joaquín M López Muñoz20-Feb-03 6:44
Joaquín M López Muñoz20-Feb-03 6:44 
GeneralRe: Question about overloading operator >> in STL. Pin
George220-Feb-03 15:52
George220-Feb-03 15:52 
GeneralNeed a hint on implementing path picker WTL control. Pin
Ilushka20-Feb-03 2:40
Ilushka20-Feb-03 2:40 
GeneralRe: Need a hint on implementing path picker WTL control. Pin
AlexO20-Feb-03 2:51
AlexO20-Feb-03 2:51 
GeneralRe: Need a hint on implementing path picker WTL control. Pin
Ilushka20-Feb-03 4:47
Ilushka20-Feb-03 4:47 
Yeah, but isnt it modal?
When i try to use it like this:

BROWSEINFO bi = { 0 };
bi.lpszTitle = _T("Pick a Directory");
bi.hwndOwner = m_hWnd;
LPITEMIDLIST pidl = SHBrowseForFolder ( &bi );
if ( pidl != 0 )
{
// get the name of the folder
TCHAR path[MAX_PATH];
if ( SHGetPathFromIDList ( pidl, path ) )
{
}

// free memory used
IMalloc * imalloc = 0;
if ( SUCCEEDED( SHGetMalloc ( &imalloc )) )
{
imalloc->Free ( pidl );
imalloc->Release ( );
}
}

I Get a modal dialog that is definitely not what i want Frown | :(
Well, if only i had a possibility to modify that dialog somehow (ie. insert my onw controls and write according handlers) that would be nice, but how??
More hints pleaaaase Smile | :)

Sincerely yours, Ilya Kalujny.
GeneralATL input parameter Pin
Anonymous19-Feb-03 23:54
Anonymous19-Feb-03 23:54 
GeneralRe: ATL input parameter Pin
Steve S20-Feb-03 1:36
Steve S20-Feb-03 1:36 
GeneralMax value in collection (STL) Pin
Kevin McFarlane19-Feb-03 11:19
Kevin McFarlane19-Feb-03 11:19 
GeneralRe: Max value in collection (STL) Pin
Ryan_Roberts19-Feb-03 11:40
Ryan_Roberts19-Feb-03 11:40 
GeneralRe: Max value in collection (STL) Pin
Kevin McFarlane19-Feb-03 11:56
Kevin McFarlane19-Feb-03 11:56 
GeneralStrange behavior - affects performance Pin
Chen Venkataraman19-Feb-03 11:18
Chen Venkataraman19-Feb-03 11:18 
Generalvector.erase(iterator) Pin
Anonymous19-Feb-03 6:20
Anonymous19-Feb-03 6:20 
GeneralRe: vector.erase(iterator) Pin
Joaquín M López Muñoz19-Feb-03 9:08
Joaquín M López Muñoz19-Feb-03 9:08 
GeneralQuestion about strange declaration of STL map. Pin
George219-Feb-03 2:57
George219-Feb-03 2:57 
GeneralRe: Question about strange declaration of STL map. Pin
Joaquín M López Muñoz19-Feb-03 9:04
Joaquín M López Muñoz19-Feb-03 9:04 
GeneralRe: Question about strange declaration of STL map. Pin
George219-Feb-03 19:47
George219-Feb-03 19:47 
GeneralQuick question on CAtlArray Pin
Steve Thresher19-Feb-03 2:45
Steve Thresher19-Feb-03 2:45 
GeneralATL events Pin
Shah Shehpori19-Feb-03 0:58
sussShah Shehpori19-Feb-03 0:58 
GeneralRe: ATL events Pin
Steve S19-Feb-03 1:47
Steve S19-Feb-03 1:47 
GeneralRe: ATL events Pin
TigerNinja_19-Feb-03 3:02
TigerNinja_19-Feb-03 3:02 
QuestionConstant time insert algorithm of STL Deque? Pin
George218-Feb-03 14:45
George218-Feb-03 14:45 
AnswerRe: Constant time insert algorithm of STL Deque? Pin
Tim Smith19-Feb-03 2:21
Tim Smith19-Feb-03 2:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.