Search the web
Sign In
New User? Sign Up
wtl · WTL support list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

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

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