Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

wtl · WTL support list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 8951 - 8980 of 16626   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
8951 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
9:32 am
Hi ... Win32 isn't, but WTL is! Regards Paul Paul Grenyer Email: paul@... Web: http://www.paulgrenyer.co.uk Have you met Aeryn:...
8952 Roger Headrick
lilsroro Send Email
Jun 1, 2004
9:53 am
... WS_VISIBLE ... LBS_NOTIFY | ... is always ... Since item width = client width and can not be modified, what would be the point of passing it in...
8953 kavita.joshi@...
joshikav Send Email
Jun 1, 2004
11:01 am
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...
8954 Roger Headrick
lilsroro Send Email
Jun 1, 2004
11:11 am
... 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...
8955 Roger Headrick
lilsroro Send Email
Jun 1, 2004
11:22 am
... of ... In a class derived from CListViewCtrl: int GetColumnAlignment(int iColumn) { LVCOLUMN lvc = {LVCF_FMT}; return GetColumn(iColumn, &lvc) ? (lvc.fmt &...
8956 Todd Bandrowsky
tbandrowsky Send Email
Jun 1, 2004
11:29 am
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...
8957 Serhiy Serbin
srs@... Send Email
Jun 1, 2004
11:45 am
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. ...
8958 Jim Barry
jim_barry.geo Send Email
Jun 1, 2004
12:46 pm
... 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...
8959 paul_winwood Send Email Jun 1, 2004
12:47 pm
... 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...
8960 Jim Barry
jim_barry.geo Send Email
Jun 1, 2004
12:47 pm
... 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....
8961 Fredrik Axelsson
frax0795 Send Email
Jun 1, 2004
12:49 pm
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, ...
8962 Jim Barry
jim_barry.geo Send Email
Jun 1, 2004
12:50 pm
... 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...
8963 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
3:31 pm
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...
8964 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
3:33 pm
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...
8965 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
3:41 pm
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++ ...
8966 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
4:01 pm
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...
8967 kavita.joshi@...
joshikav Send Email
Jun 1, 2004
4:06 pm
Thanx a lot... Will try this and let u know the result... I too got alignment flags after posting question.... Thanx once again... Kav...
8968 Mateusz oskot
gekonioo Send Email
Jun 1, 2004
4:32 pm
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...
8969 Andrew Fedoniouk
newsterrainf... Send Email
Jun 1, 2004
4:33 pm
... 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": ...
8970 Derick Cyril Thomas
derickcyril Send Email
Jun 1, 2004
4:50 pm
... I want to make a multiline listbox and hence I want to calculate item height. So I code like this: int nHeight = 0; TCHAR sText[512]; ...
8971 nfr
gistek2000 Send Email
Jun 1, 2004
4:55 pm
... very good Andrew, great news ! Noël...
8972 nfr
gistek2000 Send Email
Jun 1, 2004
5:11 pm
... 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...
8973 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
5:14 pm
Hi ... What makes you say that? MingW doesn't support #import but the rest of the COM stuff seems to work. Regards Paul Paul Grenyer Email:...
8974 nfr
gistek2000 Send Email
Jun 1, 2004
5:18 pm
... What about the inline assembly that ATL use to stuff "this" pointer instead of hwnd to a normal window proc. Is this portable ? Regards Noël...
8975 Anatoly Ivasyuk
aivasyuk Send Email
Jun 1, 2004
5:32 pm
Edward Glamkowski wrote: [...] ... [...] What about something like this: http://www.codeproject.com/wtl/OptionSheetPartI.asp -Anatoly -- Now available from...
8976 Jim Barry
jim_barry.geo Send Email
Jun 1, 2004
5:33 pm
... 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...
8977 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
5:42 pm
Hi ... No idea. Would be interesting to try though. :-) Regards Paul Paul Grenyer Email: paul@... Web: http://www.paulgrenyer.co.uk Have you met...
8978 Paul Grenyer
paulgrenyer Send Email
Jun 1, 2004
5:45 pm
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...
8979 Jim Barry
jim_barry.geo Send Email
Jun 1, 2004
5:47 pm
... Well, CStdCallThunk is processor-specific, as opposed to platform- or compiler-specific. The reason ATL is not portable to other compilers is because it...
8980 eglamkowski@...
glamkowski Send Email
Jun 1, 2004
5:55 pm
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...
Messages 8951 - 8980 of 16626   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help