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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 13729 - 13758 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13729
Hi Dmitry, ... This is a dialog based application for changing name class. I hope it will be helpful fo you. Regards Valery //RenamedDlg.cpp ...
v_s_ha
Offline Send Email
Jul 1, 2006
11:10 am
13730
... [skipped] Valery, Thank you very much. This code is very useful for me. Thanks again,...
dmitry_golub
Offline Send Email
Jul 3, 2006
11:22 am
13731
Hi All, My App (see pnotepad.org) uses WTL as its framework, and defines WINVER as 0x500 along with related _WIN32_WINNT defines in order to get features such...
Simon Steele
devcheese
Offline Send Email
Jul 4, 2006
9:40 pm
13732
Hi Simom, Have you tried using Delay-Loaded DLLs? Look into the topic "Linker Support for Delay-Loaded DLLs" on MSDN. If you want to link with DLLs for which...
Miguel Hasse de Olive...
miguelhasse
Offline Send Email
Jul 4, 2006
11:39 pm
13733
Hi Simon, MonitorFromPoint is used only in CMenuT::_FixTrackMenuPopupX(), which is called only from CMenuT::TrackPopupMenu() and CMenuT::TrackPopupMenuEx()....
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Jul 4, 2006
11:47 pm
13734
I'm currently working on a property sheet and I noticed that calling CancelToClose() has no effect. ... Can anyone else reproduce this?...
jmastry
Offline Send Email
Jul 5, 2006
3:43 pm
13735
... CancelToClose uses SendMessage, which delivers the message synchronously, whereas PostMessage places the message in the queue for the message loop to pick...
Jim Barry
jim_barry.geo
Offline Send Email
Jul 5, 2006
4:21 pm
13736
I'm using it in OnApply (see code below). Thanks for catching the PostMessage/SendMessage difference. I used PostMessage because that's what the...
jmastry
Offline Send Email
Jul 5, 2006
8:18 pm
13737
As I mentioned in my original reply, the property sheet undoes PSM_CANCELTOCLOSE after a successful "apply" operation. So if you call CancelToClose during...
Jim Barry
jim_barry.geo
Offline Send Email
Jul 6, 2006
10:47 am
13738
I'm using VS2005 Standard and WTL 7.5 I created a dialog based project using the WTL AppWizard. I then created an edit box on the dialog. I right clicked it,...
sconeu
Offline Send Email
Jul 6, 2006
10:17 pm
13739
Hi, ... How did/does unicows approach this problem? Adelle....
Adelle Hartley
adelle@...
Send Email
Jul 8, 2006
7:22 am
13740
Suppose we have this control: class CHelloCtrl : public CWindowImpl<CHelloCtrl> { public: DECLARE_WND_CLASS("HelloCtrl") BEGIN_MSG_MAP(CHelloCtrl) ...
Frantisek Bachan
bachanf
Offline Send Email
Jul 8, 2006
6:04 pm
13741
Hi. I am very novice in WTL and after some positive experiences with it i found myself a bit u-m-m-m frustrated(because of underlying complexity and necessity...
ic.iaxu
Offline Send Email
Jul 8, 2006
7:18 pm
13742
"Frantisek Bachan" <bachanf@...> wrote in message news:e8orod+fui4@eGroups.com ... Neither ATL nor WTL really support developing custom controls. A ...
Igor Tandetnik
itandetnik
Offline Send Email
Jul 9, 2006
3:47 am
13743
... I have not tried this but it seems like you could register your window class in the application init instance function - before the app's main dialog or...
Rick Parrish
ultra_wide_band
Offline Send Email
Jul 9, 2006
4:01 am
13744
"Rick Parrish" <rfmobile@...> wrote in message news:44B07EE9.2060207@... ... No. Where would the instance of your CWindowImpl-derived class come ...
Igor Tandetnik
itandetnik
Offline Send Email
Jul 9, 2006
4:16 am
13745
... First let me make sure I understand the problem. Does the person wish to create a custom control to be referenced in a dialog resource? If so, registering...
Rick Parrish
ultra_wide_band
Offline Send Email
Jul 9, 2006
4:32 am
13746
Rick, what parameter shoud I supply for window procedure address for class registration? I think that dialog editor relies on win32 CreateWindow when working ...
Frantisek Bachan
bachanf
Offline Send Email
Jul 9, 2006
7:29 am
13747
Thank you Igor, at least now I know that it is better to derive my mew control from similar native win32 control - it enables me to use subclassing on dialog. ...
Frantisek Bachan
bachanf
Offline Send Email
Jul 9, 2006
7:44 am
13748
... Your static WinProc function. If you want to get really arcane, there are some gory details on MSDN for registering a global window class - I think as a...
Rick Parrish
ultra_wide_band
Offline Send Email
Jul 9, 2006
9:23 am
13749
Hi Frantisek, ... I am not sure in details but it could work when you will use CContainedWindowT<> class. Suppose you are creating a dialog base application. A...
v_s_ha
Offline Send Email
Jul 9, 2006
11:25 am
13750
"Frantisek Bachan" <bachanf@...> wrote in message news:e8qc48+9n7u@eGroups.com ... When you subclass the control, messages you don't explicitly handle go...
Igor Tandetnik
itandetnik
Offline Send Email
Jul 9, 2006
12:25 pm
13751
... it i ... complexity ... at ... () ... Hi, Since you are using the Command Bar control, you can replace the menu by using another m_CmdBar.AttachMenu()...
Bjarke Viksøe
bviksoe
Offline Send Email
Jul 9, 2006
5:53 pm
13752
... create a ... button. ... the ... So using SetWindowPos with HWND_BOTTOM does not change the tabbing order of the button? regards bjarke...
Bjarke Viksøe
bviksoe
Offline Send Email
Jul 9, 2006
6:14 pm
13753
Take a look at the following article: http://www.codeproject.com/miscctrl/springctrls.asp I have an implementation of my own which is fully done in WTL fashion...
Miguel Hasse de Olive...
miguelhasse
Offline Send Email
Jul 9, 2006
11:18 pm
13754
Take a look at the following article: http://www.codeproject.com/miscctrl/springctrls.asp I have an implementation of my own which is fully done in WTL fashion...
Miguel Hasse de Olive...
miguelhasse
Offline Send Email
Jul 9, 2006
11:19 pm
13755
... Thanks a lot Bjarke for your reply. During last sunday i experimented with problem and solved it in the following fasion: on "recreate" command i am...
ic.iaxu
Offline Send Email
Jul 10, 2006
11:42 am
13756
Hi, I was really busy last week and can't test your solution. Today I try calling ... SWP_NOSIZE); from OnInitDialog, I also try HWND_TOP, HWND_BOTTOM, but the...
xhantt
Offline Send Email
Jul 10, 2006
8:35 pm
13757
I downloaded WTL, pointed VS2005 to the include directory and installed the AppWizard. Besides the security warning that appears in the AppWizard's GUI, it ...
Wayne
g_byte
Offline Send Email
Jul 10, 2006
11:46 pm
13758
Hi Everyone, I have a major problem with a virtual listview which is part of a very complex WTL application I am working on. Specifically, I need to be able to...
jrlm77
Offline Send Email
Jul 11, 2006
2:01 am
Messages 13729 - 13758 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