Skip to search.
wtl · WTL support list

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 6008 - 6037 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6008 Chris Russell
cdr774 Offline Send Email
Jun 1, 2003
10:23 am
Good Morning, If I drag an arbitrary item in a treeview control up in the item hierarchy, I would like to be able to move the entire branch rooted at the drag...
6009 hlptony Offline Send Email Jun 1, 2003
4:59 pm
Hi, In visual studio .net 2002, you can add member variable for a control in dialog. But it seems that it only works with MFC project, not ATL or WTL. It's...
6010 John D. Wilkinson, III
johndiiix Offline Send Email
Jun 1, 2003
6:37 pm
There is a Yahoo group called WTLWizard that was started for this specific activity. However, there has been no activity there since the summer of 2001. I am...
6011 Rick Parrish
hotsolder Offline Send Email
Jun 1, 2003
10:22 pm
Hi Chris; Make sure you collapse the tree item that is being dragged. Yeah, you'll have to do a bunch of add/deletes. -rick...
6012 daveydave1234 Offline Send Email Jun 2, 2003
3:06 am
Thanks so much Paul! That works great. In fact, there is an old message on this board that fixes WM_NOTIFY propagation by changing the message map......
6013 bejoysat@...
bejoysat Offline Send Email
Jun 2, 2003
3:18 am
Hi, I ran the Bmpview sample and found the print preview is not working in Win 98. I traced the error to the following line statement: RECT rcPage = { 0, 0, ...
6014 daveydave1234 Offline Send Email Jun 2, 2003
3:26 am
I have created an ActiveX control that uses WTL. The global _Module is defined using CAppModule. I create a CMainFrame in the create function of the ...
6015 Rick Parrish
hotsolder Offline Send Email
Jun 2, 2003
9:32 am
In contrast to an EXE, an Active X control doesn't have its own message loop. You might have to resort to using a message hook instead. -rick...
6016 Arindam Mitra
bumba1979 Offline Send Email
Jun 2, 2003
9:48 am
Hi, How do I set the backgroundcolor and textcolor of an edit control ? CRichEditCtrl function like SetBackgroundcolor is not working. I even want to set the...
6017 Alex Shirshov
alexey_1979 Offline Send Email
Jun 2, 2003
9:51 am
See WM_CTLCOLOREDIT message. If you have a read-only edit control, parent window should handle WM_CTLCOLORSTATIC message. Sorry for bad English. ... From:...
6018 Rick Parrish
hotsolder Offline Send Email
Jun 2, 2003
9:53 am
Read up on the WM_CTLCOLOREDIT message sent by the EDIT control to it's parent. -rick...
6019 Arindam Mitra
bumba1979 Offline Send Email
Jun 2, 2003
9:58 am
hi Alex, I'm handling WM_CTLCOLOREDIT in my dialog. But how do I get CDC* and CWindow* of the control? what does lParam and wParam contain in this case?...
6020 Rick Parrish
hotsolder Offline Send Email
Jun 2, 2003
10:02 am
The docs are pretty clear on this ... ... WM_CTLCOLOREDIT hdcEdit = (HDC) wParam; // handle to display context hwndEdit = (HWND) lParam; // handle to static...
6021 Arindam Mitra
bumba1979 Offline Send Email
Jun 2, 2003
10:56 am
Hi Rick, I'm doing it that way as u have outlined but still its not getting painted. I'm giving the code snippet below : LRESULT OnCtlColor(UINT /*uMsg*/,...
6022 Alex Shirshov
alexey_1979 Offline Send Email
Jun 2, 2003
11:06 am
1. You should create Brush as a class member, 'cause if you don't - where are a lot of resource leaks. 2. Put away strange casts (HBRUSH far* hbr = (HBRUSH...
6023 Arindam Mitra
bumba1979 Offline Send Email
Jun 2, 2003
11:16 am
hey alex,rick I got the back ground color and text color but how to get them at runtime. I mean if the user after writing some text in red wants to convert...
6024 Alex Shirshov
alexey_1979 Offline Send Email
Jun 2, 2003
11:31 am
O! I think, it will be difficult. :) You can download some viskoe controls to see how it is can be done. http://home.worldonline.dk/viksoe/rtfscriptedit.htm ...
6025 Konstantin Mironovich
const@... Send Email
Jun 2, 2003
11:42 am
Hi, Yet another question on CEdit then.. I cannot find how to implement smooth scrolling with CEdit wrapper. The code below does a regular scroll: CEdit m_Inf;...
6026 Igor Tandetnik
itandetnik Offline Send Email
Jun 2, 2003
11:46 am
From: "daveydave1234" <dhorner@...> ... An ActiveX control does not run a message pump - it relies on its container to pump and dispatch messages for...
6027 Igor Tandetnik
itandetnik Offline Send Email
Jun 2, 2003
12:09 pm
From: "Arindam Mitra" <arindam.mitra@...> ... affect ... A regular edit control can't do this. You need a rich edit control, or a custom-made control (a...
6028 Igor Tandetnik
itandetnik Offline Send Email
Jun 2, 2003
12:16 pm
From: "Konstantin Mironovich" <const@...> ... Smooth scrolling is not the responsibility of a scroll bar, but of an application responding to scoll bar...
6029 Arindam Mitra
bumba1979 Offline Send Email
Jun 2, 2003
12:23 pm
Hi Igor, I'm already using a class derived from CRichEditCtrl. Do u have a code snippet which handles EM_SETCHARFORMAT to set the text color and even change it...
6030 pablo_alch Offline Send Email Jun 2, 2003
12:24 pm
Hello, everyone! A short time ago I was asked to give (in a WTL dialog based application) some 'life signs' during a lengthy, server-side operation (of which I...
6031 Edwards, John
johnesage Offline Send Email
Jun 2, 2003
12:30 pm
IE and the Office apps do not use the Windows Edit control for their editors. CEdit is just a wrapper around the Windows built-in EDIT window class (that's a...
6032 sireesh@gmi
sireesht Offline Send Email
Jun 2, 2003
12:40 pm
use off-screen dc CDC memdc = dc.createcompatibledc(); paint what you want to paint in this dc i.e. stepping up/down then bitblt this on actual dc of progress...
6033 Kim Gräsman
kimgrasman Offline Send Email
Jun 2, 2003
12:44 pm
John, ... Sorry to barge in here, but I've meant to purchase Petzold's bible for a while. Is [1] the preferred choice, or is there a better one? I'm mainly ...
6034 Edwards, John
johnesage Offline Send Email
Jun 2, 2003
12:51 pm
Looks like a newer version than I have. I've got one called "Programming Windows" which was for 16 bit Windows and I "updated" it with "Programming Windows...
6035 Arindam Mitra
bumba1979 Offline Send Email
Jun 2, 2003
12:56 pm
hi , I could paint the bkgroundcolor and text color by handling WM_CTLCOLOREDIT, but that way the backspace and delete keys are not working. pls help. thx. ......
6036 pablo_alch Offline Send Email Jun 2, 2003
1:03 pm
Thank you, Sireesh! Still, I'd like to stay with the progress bar solution, which has a pair of advantages: 1. I don't have to write what has already been...
6037 Kim Gräsman
kimgrasman Offline Send Email
Jun 2, 2003
1:05 pm
John, Thanks! I think it's the same one, the back cover image mentions nothing about "The definitive guide...". Just to make sure: This is the title people...
Messages 6008 - 6037 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