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 10055 - 10084 of 16626   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
10055 Adelle L. Hartley
adelle@... Send Email
Oct 1, 2004
7:05 am
Hi Andrew, ... Interesting, I'll check it out. I want to allocate thousands of objects that I will be disposing of all at once. I have experienced GC-related...
10056 akshay harsulkar
akshayhh Send Email
Oct 1, 2004
11:10 am
In My ATL code I developed one module for Printing. In my print dialog I have facility to select Network printer. For a report I am using Crystal report for...
10057 mosunovpa Send Email Oct 1, 2004
12:24 pm
Hello all. I have atl 7.1. I don't undestand how does CWindowImplBaseT<; TBase, TWinTraits >:: WindowProc() works (see atlwin.h, line 3002). template <class...
10058 cengman7 Send Email Oct 1, 2004
1:05 pm
... Thank you very much for sharing your expertise and taking the time to answer me. You were very helpful. Carl...
10059 Bjarke Viksøe
bviksoe Send Email
Oct 1, 2004
2:12 pm
Why do you say that pThis->m_dwState & WINSTATE_DESTROYED... is called after the pThis has been destroyed. Even from the code you pasted, the OnFinalMessage()...
10060 Roger Headrick
lilsroro Send Email
Oct 1, 2004
2:38 pm
... you ... would ... on ... code ... the ... Hi Bjarke, I've wondered about this also and just chalked it up to not understanding how the WindowProc function...
10061 Igor Tandetnik
itandetnik Send Email
Oct 1, 2004
3:08 pm
"qwertyqaa&quot; <maskofzero@...> wrote in message news:cji5lt+4n4a@eGroups.com ... (Disclaimer: I am not a lawyer). I strongly suspect it would be illegal ...
10062 cengman7 Send Email Oct 1, 2004
3:37 pm
Igor, Long term it may be possible to have the controls modified. Can the control interfaces be derived from the same abstract class I tried to create, and...
10063 Igor Tandetnik
itandetnik Send Email
Oct 1, 2004
3:59 pm
"cengman7"; <cengman7@...> wrote in message news:cjjtgr+7s94@eGroups.com ... A control can have multiple source interfaces. You can define a common ...
10064 Roger Headrick
lilsroro Send Email
Oct 1, 2004
6:24 pm
... (CWindowImplBaseT&lt; ... wParam, ... lParam); ... (pThis->m_hWnd, ... lParam); ... GWLP_WNDPROC, (LONG_PTR)pThis- ... in ... (lRes = ... destroyed. ... && ...
10065 Andrew Fedoniouk
newsterrainf... Send Email
Oct 1, 2004
8:48 pm
The acronym stands for WindowLessTL (or Windowless WTL) Idea is to create sort of framewok or set of windowless standard controls and containers. J-SMILE...
10066 Andrew Fedoniouk
newsterrainf... Send Email
Oct 1, 2004
9:00 pm
The acronym stands for WindowLessTL (or Windowless WTL) Idea is to create sort of framewok or set of windowless standard controls and containers. J-SMILE...
10067 Igor Tandetnik
itandetnik Send Email
Oct 1, 2004
9:01 pm
"Andrew Fedoniouk" <news@...> wrote in message news:cjkfrj$54d$1@... ... Sounds like XUL (http://www.mozilla.org/projects/xul/) to...
10068 Miguel Hasse de Olive...
miguelhasse Send Email
Oct 1, 2004
9:59 pm
Sounds absolutely excellent! Even though there are not many windowless controls around I've always been for them. One of the things I don't like about the .NET...
10069 Andrew Fedoniouk
newsterrainf... Send Email
Oct 1, 2004
10:09 pm
... Hi, Igor, Yep, CSS and especially system of style selectors (http://www.w3.org/TR/CSS21/selector.html#q1) could be pretty useful in UI design. Application...
10070 Andrew Fedoniouk
newsterrainf... Send Email
Oct 1, 2004
10:38 pm
Here is a screenshot of demo application having CSS styled UI http://www.terrainformatica.com/org/wltl/sample.png It is WTL with HTMLayout at the background. ...
10071 Andrew Fedoniouk
newsterrainf... Send Email
Oct 1, 2004
11:17 pm
... Got one :) Thanks Miguel! ... DataBinding is one big philosophical question. I saw a lot of attempts to use them but ... (probably I should clean my ...
10072 cr999
cr_999 Send Email
Oct 2, 2004
2:07 am
Sounds very intresting. How we can work for it? ... From: "Andrew Fedoniouk" <news@...> To: <wtl@yahoogroups.com> Sent: Saturday, October 02,...
10073 Andrew Fedoniouk
newsterrainf... Send Email
Oct 2, 2004
2:47 am
... If somebody would like to participate just drop me email, please. Email is news @ terrainformatica com Andrew Fedoniouk. Terra Informatica Software, Inc. ...
10074 akshay harsulkar
akshayhh Send Email
Oct 4, 2004
4:03 pm
In my ATL code I developed module for print dialog by which I can select network printer. In my code print Crystal report . I got success to get default...
10075 peter
telepet9 Send Email
Oct 4, 2004
5:37 pm
I'm trying to implement custom buttons in WTL. I found a good example that implements XP-like button. I modified it to create round buttons that have gradient...
10076 Roger Headrick
lilsroro Send Email
Oct 4, 2004
5:56 pm
... Is the parent of the button reflecting its WM_DRAWITEM message back to the button via REFLECT_NOTIFICATIONS()? Thats typically how a control would get the...
10077 Kim Gräsman
kimgrasman Send Email
Oct 4, 2004
5:59 pm
Hello Akshay, ... boolVal is not a bool, it's of type VARIANT_BOOL, so you should assign it either VARIANT_TRUE (-1) or VARIANT_FALSE (0). ... There are a...
10078 Igor Tandetnik
itandetnik Send Email
Oct 4, 2004
6:17 pm
"peter" <telepet9@...> wrote in message news:20041004173658.24475.qmail@... ... The parent window of your button needs to have...
10079 peter
telepet9 Send Email
Oct 4, 2004
6:28 pm
Now it does :) Thank you Roger. By the way I fixed the problem with font change. Your suggestion that I am loosing the scope because I use = instead of...
10080 peter
telepet9 Send Email
Oct 4, 2004
7:09 pm
Yes, I did not added REFLECT_NOTIFICATIONS. Thank you. ... "peter" <telepet9@...> wrote in message news:20041004173658.24475.qmail@......
10081 Bjarke Viksøe
bviksoe Send Email
Oct 4, 2004
11:39 pm
I'm not really seing this. This code changes slightly with each ATL version, mostly, it seems, to deal with this exact problem. The new checks/states appears...
10082 Roger Headrick
lilsroro Send Email
Oct 5, 2004
3:20 am
... ATL ... new ... == ... pending. ... terminates. ... Hi Bjarke, Here's what I figured out the other day when I was looking at this problem. While a window...
10083 Bjarke Viksøe
bviksoe Send Email
Oct 5, 2004
8:12 am
Unfortunately I'm not able to reproduce this. Either you must be on WinXP (which I'm not) or doing something naughty in your message handlers. The 0xFEEEFEEE...
10084 Roger Headrick
lilsroro Send Email
Oct 5, 2004
9:43 am
... on ... Yes, I'm using XP and ATL7.1/WTL7.5. All I'm doing is creating an out-of-the-box MDI Project with the WTL wizard and inserting the following in...
Messages 10055 - 10084 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