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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 14001 - 14030 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14001
I'm working on a project for Windows Mobile that was created using WTL. But I have to add some preexisting dialogs from another project. The dialogs are...
Ron de los Santos
delossantos_ron
Offline Send Email
Nov 2, 2006
1:22 am
14002
Hi Ron, ... In order to get this to work, at the very least MFC will need valid CWinApp and mainframe objects, so you will need to make some mods to your core ...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Nov 2, 2006
6:10 am
14003
I'm trying to host a browser control within a custom control. Sometimes the control presents it's own presentation, and sometimes it shows the browser. Don't...
Matt Murdock
mattdmurdock
Offline Send Email
Nov 2, 2006
7:53 pm
14004
Matt Murdock <mattdmurdock@...> ... The easiest way is IWebBrowser2::put_Silent(VARIANT_TRUE). This suppresses most prompts. -- With best wishes, Igor...
Igor Tandetnik
itandetnik
Offline Send Email
Nov 2, 2006
8:33 pm
14005
... I did try this, but it doesn't seem to work. In some cases it even causes an exception rather than preventing the message box....
Matt Murdock
mattdmurdock
Offline Send Email
Nov 2, 2006
10:04 pm
14006
Matt Murdock <mattdmurdock@...> ... In my experience, put_Silent works to suppress scipt error messages. What do you mean by "exception"? See KB Article...
Igor Tandetnik
itandetnik
Offline Send Email
Nov 2, 2006
10:38 pm
14007
The exceptions (in this case) happen to be in the control processing java script. If I put in the call to be silent, I get a couple of instances of a...
Matt Murdock
mattdmurdock
Offline Send Email
Nov 2, 2006
10:58 pm
14008
Matt Murdock <mattdmurdock@...> ... Yes. You need to implement it on the client site object, alongside IOleClientSite et al, and that's buried in...
Igor Tandetnik
itandetnik
Offline Send Email
Nov 2, 2006
11:18 pm
14009
Hello, new member to the WTL group here. Fairly new to WTL, but, coded in MFC/SDK/DDK a good bit many years ago in another life. Recently started coding again...
Bob Starr
bob_starr2003
Offline Send Email
Nov 5, 2006
2:41 pm
14010
Hi Bob, There are some excellent articles on Code Project (www.codeproject.com) in a series called "WTL for MFC Programmers". I found this series to be an ...
Michael Stephenson
domehead100
Offline Send Email
Nov 6, 2006
2:58 pm
14011
Is it possible to get this combination running? When using WTL 7.5 in an MFC project wiht MFC support, I get problems when including AtlCtrlX.h, which uses...
hauptmannp
Offline Send Email
Nov 7, 2006
11:45 pm
14012
please using namespace such as below in MFC application: wtl::cclientDC Elliot Liu(ÁõÁø±ó) =============================================== ...
elliot liu
elliotllb
Offline Send Email
Nov 8, 2006
1:01 am
14013
You must define _WTL_NO_AUTOMATIC_NAMESPACE before everything WTL. Defining it before atlapp.h is good. Then you must manually put the WTL:: before every WTL...
Michelangelo Partipilo
mike2001ve
Offline Send Email
Nov 8, 2006
1:39 am
14014
... What I did was editing atlgdi.h and adding the namespace to CClientDC, like this: class CClientDC : public WTL::CDC so CClientDC inherits from WTL's CDC...
Ignacio Burgueño
burgueno2001
Online Now Send Email
Nov 8, 2006
2:15 am
14015
hi,all. I have difficuties when using spin control. I simply creat a dialog based wtl project by wizard. and put a spin control and an edit control on the...
mok_dev
Offline Send Email
Nov 8, 2006
10:49 pm
14016
... I would suggest checking the properties of the spin control in the resource view, and making sure "auto buddy" and "set buddy integer" are true. Then make...
Ryan Ginstrom
ryanginstrom
Offline Send Email
Nov 9, 2006
1:13 am
14017
Thank you for your reply. I have fixed this problem.It's a stupid mistake. In fact, the control I put on the dialog is a vertical scroll bar, not the spin...
mok_dev
Offline Send Email
Nov 9, 2006
2:33 am
14018
atlmisc.h line: 3122 if(lstrlen(m_arrDocs[nIndex].szDocName) <= cchLength) I think it should be: if(lstrlen(m_arrDocs[nIndex].szDocName) > cchLength) I also...
Catalin Rotaru
catalin_n_r
Online Now Send Email
Nov 9, 2006
7:25 am
14019
Hi Cata, Thanks for reporting these issues. The first one is already fixed, in atlmisc.h 1.27. The second one, I don't understand. Why do you think that...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Nov 9, 2006
1:36 pm
14020
I can't help noticing a lot of talk about WTL 8. At http://wtl.sourceforge.net/ and http://sourceforge.net/projects/wtl version 7.5 is mentioned. Did I miss...
Pablo Aliskevicius
pablo_alch
Offline Send Email
Nov 9, 2006
4:18 pm
14021 Richard Butler
dj_deipotent
Offline Send Email
Nov 9, 2006
4:55 pm
14022
Hi Pablo, 7.5 is the last tested version. There have been a few 8.0 releases which contain the latest changes/fixes to WTL, but are not considered thoroughly...
Richard Butler
dj_deipotent
Offline Send Email
Nov 9, 2006
5:52 pm
14023
Hi Richard, I think that >= is correct check - it should return FALSE if the string is the same length as the buffer, because there is no room for the ...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Nov 9, 2006
9:26 pm
14024
In CZoomScrollImpl it seems like PrepareDC() should be a virtual function. I'm no wtl template genius and maybe I'm missing something very obvious here. I was...
Bob Starr
bob_starr2003
Offline Send Email
Nov 11, 2006
6:40 am
14025
I am using the code available in the article "Custom Tab Controls, Tabbed Frame and Tabbed MDI - The Code Project - WTL by Daniel Bowen" as a pattern to...
Maryam
m_kasravi2002
Offline Send Email
Nov 12, 2006
7:11 pm
14026
Hello everybody! I would like to use CDialogImpl - derived class in two situations. Once as child window of main frame and second as modal dialog. I created...
Michal.Urbanczyk@...
michal_urban...
Offline Send Email
Nov 13, 2006
2:58 am
14027
I've looked at the MTPad sample, but couldn't exactly understand how the printing works with WTL. Is there any tutorial or other source code with samples how...
gilad_no
Offline Send Email
Nov 13, 2006
4:07 pm
14028
Hi, I'd like to use full-color toolbar icons that are bigger than the default 16x16. I've downloaded some free icons from http://www.glyfx.com/free.html. I...
Roel Vanhout
rvanhout@...
Send Email
Nov 14, 2006
11:35 am
14029
... One solution is to use a regular toolbar, and then replace the images at runtime. Basically, you create your toolbar as usual. Then, you do ...
Ryan Ginstrom
ryanginstrom
Offline Send Email
Nov 14, 2006
2:34 pm
14030
look up http://www.codeproject.com/wtl, an editor sample with highest credits .... ÔÚ2006-11-14£¬wtl@yahoogroups.com дµÀ£º ... [Non-text portions of...
lyshsd
Offline Send Email
Nov 15, 2006
1:02 am
Messages 14001 - 14030 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