Hi Friends, I am working on CListVewCtrl in WTL. I want to set right/center/Left alignment for columns in List view control. Is there any way by which we can...
... Hi Nenad, I defer to your judgement. It sounds like you would recommend breaking away from ATL, and you already have specific improvements to the base...
... of ... In a class derived from CListViewCtrl: int GetColumnAlignment(int iColumn) { LVCOLUMN lvc = {LVCF_FMT}; return GetColumn(iColumn, &lvc) ? (lvc.fmt &...
It seems like if we lose ATL in WTL, we lose the hosting of Active X controls while at the same time open up the possibility that we have code more portable to...
Hi, When you are creating a column you give a parameter the column format. It can be: LVCFMT_LEFT Text is left-aligned. LVCFMT_RIGHT Text is right-aligned. ...
Serhiy Serbin
srs@...
Jun 1, 2004 11:45 am
8958
... Of course it depends on the exact compiler and standard library, but with the current Microsoft compiler I believe a do-nothing program is ~22 KB and a...
... It ... I have a slightly modified version of WTL that works for the Borland 5.6.4 (C++BuilderX) compiler. I have been using it for some time. I have had to...
... However, WTL is not ever likely to wrap every part of Win32, so a good string class should still provide convenient interoperability with character arrays....
Being able to compile WTL applications with other compilers would be great. If it makes the implementation leaner and meaner that's good too:) Best Regards, ...
... There is one useful aspect of char* not available to std::string - the possibility of passing null to signify that a default value should be used. -- Jim...
Hi ... string class should still provide convenient ... Why not? MFC does. You can still use std::string with the Win32 API, but there are of course times when...
Hi ... possibility of passing null to signify that a default value ... You could pass an empty string, which is almost the same difference. Alternatively you...
Hi ... the current Microsoft compiler I believe a do- ... Yes, that is correct. ... That is also correct, but strictly speaking that's a C program not a C++ ...
Hi ... I don't see why WTL wouldn't compile with Borland or MingW as it is. The real point is whether it will compile on other platforms, which of course, at...
Hi, Does anyone have any documentation for WTL 7 classes ? It is quite hard to go throught the WTL sources searching classes, functions and its parameters. I...
... WTL based applications already work under the Wine :) Here is a screenshot of our HTMEngine and its WTL demo application running on RedHat "as is": ...
... I bet that ATL does not compile under Mingw or Borland or watcom. Since (some) WTL app seems to run under wine, building with GCC make sense . Building...
Edward Glamkowski wrote: [...] ... [...] What about something like this: http://www.codeproject.com/wtl/OptionSheetPartI.asp -Anatoly -- Now available from...
... Strictly speaking it's a C++ program that uses the C subset. ;-) ... Well, I was just suggesting that perhaps the reason Nikos had got the impression that...
Hi ... Lol - We could go on like this for hours. :-) ... impression that using certain parts of standard library would ... typically the case for iostreams and...
... Well, CStdCallThunk is processor-specific, as opposed to platform- or compiler-specific. The reason ATL is not portable to other compilers is because it...
I ended up leaving the 11 dialogs in question as being modal dialogs. I then created a window to handle messages for my systray icon that was the same size...