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 15886 - 15916 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15886
I write down these 2 lines. CFindReplaceDialog* dlg = new CFindReplaceDialog(); dlg->Create(TRUE, _T("aaa"), NULL, FR_DOWN, *this); but, nothing popup. when i...
hawkgao
Offline Send Email
Mar 1, 2009
3:50 pm
15887
Try adding these lines: dlg->SetActiveWindow(); dlg->ShowWindow(SW_SHOW); MTPad WTL sample shows how to use this class. Regards, Igor. ...
Igor Vigdorchik
igorv007
Offline Send Email
Mar 1, 2009
4:12 pm
15889
Great! It's shown. Thank you so much Igor. MTPad is a wonderful example, but it's a little complex for me. and no document here for it. WTL study is a tough...
hawkgao
Offline Send Email
Mar 1, 2009
4:46 pm
15890
I have these references which may help: // See http://www.codeproject.com/wtl/wtl4mfc9.asp for WTL wrapper for Open File dialog. // Also see...
jgdavies52
Offline Send Email
Mar 1, 2009
7:11 pm
15891
Thank you for you material....
hawkgao
Offline Send Email
Mar 2, 2009
2:32 am
15892
Hello Robert, Thanks fo the information. After your confirmation (I had never created WTL MDI application, only SDI), I created another WTL sample and it works...
Paul Selormey
pegroups
Offline Send Email
Mar 2, 2009
4:27 am
15893
I type find string in text box, then hit enter on keyboard, nothing happened. only click FindNext button can send out the find message. finally i found main...
hawkgao
Offline Send Email
Mar 2, 2009
6:05 am
15894
... Yes, as you noted, since the find dialog is non-modal, it doesn't have it's own message loop and the message loop for the parent GUI thread is used. Check...
domehead100
Offline Send Email
Mar 2, 2009
6:41 am
15895
Thank your suggestion....
hawkgao
Offline Send Email
Mar 2, 2009
6:50 am
15896
Hi, I have ReBar in my MainFrame that have a few ToolBars on it. I would like to add a wide static control to one of the toolbars. I tried to modify...
amante1il
Offline Send Email
Mar 2, 2009
12:27 pm
15897
I wrote the ToolbarHelper - all you need is something like the code below (add it to the CToolBarHelper class). Call it with: ...
robert679078
Offline Send Email
Mar 5, 2009
8:17 am
15898
there is no proper common control for this. i found somebody use richedit to implement it. so, EN_LINK notify message should be handled. it's too boring....
hawkgao
Offline Send Email
Mar 6, 2009
8:16 am
15899
Hi Hawk, The about dialog of the WtlOOo sample at http://www.codeproject.com/KB/wtl/Wtl_OOo.aspx // aboutdlg.h : interface of the CAboutDlg class #pragma once ...
Alain Rist
arnavpoch
Offline Send Email
Mar 6, 2009
8:37 am
15900
Take a look at http://www.codeproject.com/KB/wtl/CBitmapHyperLink.aspx Regards, Igor. ________________________________ From: Alain Rist <ar@...> To:...
Igor Vigdorchik
igorv007
Offline Send Email
Mar 6, 2009
2:12 pm
15901
Hello there, Do anyone have the experience in making a transparent tracker(slider) control? I have no idea! Thank in advance. Kit...
tsehonkit
Offline Send Email
Mar 7, 2009
12:50 pm
15902
I not sure how to do it exactly. but, i can give you some hints. process the message send from slider control. then, in the callback function for that message,...
hawkgao
Offline Send Email
Mar 7, 2009
2:14 pm
15903
Thanks. I didn't know WTL has an implement of hyperlink control before Alain's suggestion. now, i know it. WTL is so cool. it has almost every thing...
hawkgao
Offline Send Email
Mar 7, 2009
2:18 pm
15904
Handle WM_CTLCOLORSTATIC. I doubt you can use this message to make the control really transparent, but you could use it to create a pattern brush out of the...
Timo Kunze
timosoft2001
Offline Send Email
Mar 8, 2009
7:39 pm
15905
Handle WM_CTLCOLORSTATIC. I doubt you can use this message to make the control really transparent, but you could use it to create a pattern brush out of the...
Timo Kunze
timosoft2001
Offline Send Email
Mar 8, 2009
7:41 pm
15906
Thanks for your advise! I tried this one but no effect! Here is the code I used. If the background is ok, I will try to custom draw the slider. So, there are...
tsehonkit
Offline Send Email
Mar 9, 2009
2:07 am
15907
I think your parent (m_wndThemeParent) should be obtained via GetParent() rather than GetTopLevelParent(). I have no idea if this would work for what you need,...
domehead100
Offline Send Email
Mar 9, 2009
3:05 am
15908
I insert a datagrid control in a WTL application.   i add this in stdafx.h: #import "c:\\windows\\system32\\MSDATGRD.OCX" no_namespace   some compile error...
carr 帅
shuaixh
Offline Send Email
Mar 9, 2009
6:12 am
15909
int GetLine(int nIndex, LPTSTR lpszBuffer, int nMaxLength) const { ATLASSERT(::IsWindow(m_hWnd)); *(LPWORD)lpszBuffer = (WORD)nMaxLength; //WRONG! assign...
hawkgao
Offline Send Email
Mar 9, 2009
6:13 am
15910
This article may help you to host activeX control. http://www.codeproject.com/KB/wtl/wtl4mfc6.aspx by the way, chinese characters mix with western characters...
hawkgao
Offline Send Email
Mar 9, 2009
6:25 am
15911
In the doc for EM_GETLINE: 'Before sending the message, set the first word of this buffer to the size, in TCHARs, of the buffer.' ... From: hawkgao To:...
Alain Rist
arnavpoch
Offline Send Email
Mar 9, 2009
7:06 am
15912
I have tried this member function. I use a 65536 TCHARes long buffer. it returned an empty line to me. nothing can be gotten....
hawkgao
Offline Send Email
Mar 9, 2009
7:47 am
15913
and there is another curious thing. when i call GetLine(int nIndex, LPTSTR lpszBuffer), the sister function of GetLine(int nIndex, LPTSTR lpszBuffer, int...
hawkgao
Offline Send Email
Mar 9, 2009
7:52 am
15914
Try with 65535 and guess why it will work :) ... From: hawkgao To: wtl@yahoogroups.com Sent: Monday, March 09, 2009 8:47 AM Subject: Re: [wtl]NO Bug in...
Alain Rist
arnavpoch
Offline Send Email
Mar 9, 2009
7:53 am
15915
Oh, sorry. I got it. 65536 is exceed the max of WORD type. it's 0x100000. from the view of EM_GETLINE, the buffer is ZERO! Thank you Alain!...
hawkgao
Offline Send Email
Mar 9, 2009
7:57 am
15916
... 发件人: hawkgao <hawkgao@...> 主题: [wtl] Re: datagird control in wtl 收件人: wtl@yahoogroups.com 日期: 2009年3月9,周一,下   ...
carr 帅
shuaixh
Offline Send Email
Mar 9, 2009
7:58 am
Messages 15886 - 15916 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