Skip to search.
wtl · WTL support list

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

  Messages Help
Advanced
Messages 1273 - 1302 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1273 endre somogyi
endre-somogyi@... Send Email
Jun 1, 2001
1:43 pm
Here is the config file, I'm posting it to the group also because I've allready had 3 requests for it. Here it is, this happens to be for a project called...
1274 Langston, Doug
Doug.Langston@... Send Email
Jun 1, 2001
1:59 pm
This will be a great tool when it's finished. Any idea when that will be? ... From: Elton Wells [mailto:wells@...] Sent: Thursday, May 31, 2001 8:01 PM ...
1275 pascal.binggeli@... Send Email Jun 1, 2001
3:38 pm
Just ask the author! Pascal Binggeli P.S.: Something like "when it's done!" sound great to me... ;-)...
1276 Langston, Doug
Doug.Langston@... Send Email
Jun 1, 2001
9:34 pm
I'm still trying to add/insert items in a dropdown (not using DDX). If anyone has a sample please reply...
1277 Brandon Corfman
bcorfman@... Send Email
Jun 4, 2001
2:12 pm
... #include "rtl.h" ... class CMyView: public CDialogImpl<CTryView> { ... BEGIN_MSG_MAP(CMyView) MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog) END_MSG_MAP() ...
1278 Mpak
mpak@... Send Email
Jun 4, 2001
3:18 pm
Hello Doug, Saturday, June 02, 2001, 12:34:10 AM, you wrote: LD> I'm still trying to add/insert items in a dropdown (not using DDX). LD> If anyone has a sample...
1279 Langston, Doug
Doug.Langston@... Send Email
Jun 4, 2001
3:24 pm
Thanks - Here was the real solution: Problem solved! With the resource editor I had to click the down arrow of the CComboBox & then drag the edge of the...
1280 Menningen, Kevin
kmenningen@... Send Email
Jun 4, 2001
3:41 pm
I think that one has bit me at least a dozen times... :) --Kevin ... From: Langston, Doug [mailto:Doug.Langston@...] Sent: Monday, June 04, 2001 10:24 AM ...
1281 Igor Ostriz
iostriz@... Send Email
Jun 5, 2001
6:36 am
tnx for reminding me! :-) > Problem solved! > With the resource editor I had to click the down arrow of the CComboBox & > then drag the edge of the control to...
1282 Stefano Pettini
webservices@... Send Email
Jun 5, 2001
8:45 am
I have a suggestion for a new WTL macro I think it could be useful in OnInitDialog: #define BIND(control, id) control.Attach(GetDlgItem(id)) Stefano Pettini ...
1283 gabriel@... Send Email Jun 5, 2001
6:14 pm
hmm, I almost never use the stock wrappers as class data members without subclassing, i.e., CContainedWindowT<CComboBox> m_combo If you need this, I think a...
1284 Stefano Pettini
webservices@... Send Email
Jun 5, 2001
8:42 pm
What does CContainedWindows<> do? Stefano Pettini Notary of www.thawte.com ... From: <gabriel@...> To: <wtl@yahoogroups.com> Sent: Tuesday, June...
1285 Stefano Pettini
webservices@... Send Email
Jun 7, 2001
10:53 pm
I love Tahoma font. And I hate property sheet because the don't let me use it. I can setup the default font for property pages, in resource file, but I don't ...
1286 Jeroen Thur
jeroen.thur@... Send Email
Jun 8, 2001
5:21 am
Docs specify that propertysheets always use system font, maybe you could change the system font for the user... :-) Knowledgebase article Q142170 discusses...
1287 andreas.magnusson@... Send Email Jun 8, 2001
6:36 am
Try this, it works in standard dialogs so that I get Tahoma in W2K and MS Sans Serif in NT4: In the .rc file: Change DIALOG to DIALOGEX Add DS_FIXEDSYS to the...
1288 Ryan Park
bajy@... Send Email
Jun 8, 2001
9:38 am
Hello group :) I've decided to work on Windows CE. I found that there are MFC and ATL CE version. Is there WTL for CE too? I hope so, but I guess not. Nenard,...
1289 Fiordean Dacian
dfiordean@... Send Email
Jun 8, 2001
10:31 am
Hi, How I could find the position of the app's icon after a call to Shell_NotifiyIcon ? Thanks, Dacian. [Non-text portions of this message have been removed]...
1290 ChainsaW
ChainsaW@... Send Email
Jun 11, 2001
6:40 am
Hello, Add DS_FIXEDSYS to the STYLE yes, it works for property pages too. But, correct usage is (quoted from MSDN): "To have your application use the system...
1291 andreas.magnusson@... Send Email Jun 11, 2001
9:14 am
Exactly, and that is what we're doing. Excpet for the fact that if we add DS_SHELLFONT, the studio is going to remove it the next time you edit the properties...
1292 Stefano Pettini
webservices@... Send Email
Jun 11, 2001
9:24 am
I'd like to change the font of the entire property sheet (or wizard), which isn't stored in a resource file. I know I can change the font for of each property...
1293 sbl@... Send Email Jun 12, 2001
3:23 pm
Hello all, I have started working on porting this great library over to CE. I basically created a simple dialog-based ActiveX hosting app in VC6, created an...
1294 fsk@... Send Email Jun 13, 2001
5:54 am
... Since the WTL source is copyrighted, you are right in your assumption, that you cannot distribute your modified version of the WTL source. What you can do...
1295 Fiordean Dacian
dfiordean@... Send Email
Jun 13, 2001
1:58 pm
Hi, I've derived a class from CDialogImpl<CMyDlg> and I called CMyDlg dlg; dlg.Create(NULL); I declared a message handler for the WM_CREATE and WM_INITDIALOG...
1296 Senkwe Chanda
schanda@... Send Email
Jun 13, 2001
2:15 pm
Hi. From where are you calling dlg.Create(NULL)? ... From: Fiordean Dacian [mailto:dfiordean@...] Sent: 13 June 2001 03:44 To: wtl@yahoogroups.com ...
1297 Fiordean Dacian
dfiordean@... Send Email
Jun 13, 2001
2:44 pm
From a thread created by WinMain. The thread has a message queue, created with PeekMessage(..); The handler for WM_INITDIALOG for CMyDlg is called. Dacian. ......
1298 Leon Finker
lf21@... Send Email
Jun 13, 2001
3:04 pm
http://msdn.microsoft.com/library/psdk/winui/dlgboxes_982t.htm ... From: "Fiordean Dacian" <dfiordean@...> To: <wtl@yahoogroups.com> Sent: Wednesday,...
1299 Senkwe Chanda
schanda@... Send Email
Jun 13, 2001
3:22 pm
Ouch!! Got me there Leon. *smacking myself* An error I also made long ago. ... From: Leon Finker [mailto:lf21@...] Sent: 13 June 2001 04:49 To:...
1300 tlandry@... Send Email Jun 13, 2001
7:23 pm
For some reason SetSplitterPos() method does not seem to work as I expect. I am trying to open the splitter about 100 pixels when the window first appears. ...
1301 Tim Tabor
tltabor@... Send Email
Jun 13, 2001
8:10 pm
Hmm, I usually call SetSplitterPos *after* creating the splitter views: 1. Create the splitter 2. Create the splitter's "views" 3. SetSplitterPanes 4....
1302 Leon Finker
lf21@... Send Email
Jun 13, 2001
8:19 pm
I always, either specify the rect of splitter in m_splitter.Create or call SetSplitterRect later but before SetSplitterPos/UpdateSplitterLayout. It will solve...
Messages 1273 - 1302 of 16586   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