Hi all, Question: I have implemented two cascading dialogs that are modeless, in order to implement PreTranslateMessage() on them. I needed to do this in order...
1847
Menningen, Kevin
kmenningen@...
Oct 3, 2001 8:13 pm
If you've named the second dialog uniquely, maybe you can search for the window handle by the window name. If found, don't create a child dialog. Maybe that's...
1848
Tim Tabor
tltabor@...
Oct 3, 2001 8:42 pm
... Hi Kevin. Don't know whether this is relevant to Brandon's issue, but another convenient way to find a window is to set the its id when you create it (or...
1849
Menningen, Kevin
kmenningen@...
Oct 3, 2001 8:45 pm
Yes, and another way is to set a custom window class and search for the class. Best regards, --Kevin ... From: Tim Tabor [mailto:tltabor@...] Sent:...
1850
Tim Tabor
tltabor@...
Oct 3, 2001 8:52 pm
I think I'm recommending, in the case of searching for a one-of-a-kind window, that using the library's search for longs would be more convenient and faster ...
1851
Menningen, Kevin
kmenningen@...
Oct 3, 2001 9:01 pm
A good recommendation. Searching by string is useful for my app because I'm looking for an external app (Internet Explorer) whose parent is the desktop. Since...
1852
Leon Finker
lf21@...
Oct 4, 2001 2:57 am
Hi, I don't know the requirements of your project... If you only want to catch the F1 you might as well use the modal dialog and simply intercept the WM_HELP...
1853
chorongu@...
Oct 4, 2001 5:49 am
Most of all, You should learn COM and ATL. ATL based on COM and WTL based on ATL. So if you don't know COM, it hard to understand ATL and it's same with WTL. ...
1854
Brandon Corfman
bcorfman@...
Oct 4, 2001 12:08 pm
Oh brother, it figures I would go about it the hard way. I didn't know about WM_HELP. Thanks, Leon. Best regards, Brandon ... modeless, ... do ... the ... the ...
1855
Frankinet Noël
gistek@...
Oct 9, 2001 10:27 am
Hello, I've posted a wtl grid article and code at http://www.codeproject.com/useritems/WtlGrid.asp Also its far from complete, its already quite usable so I...
1856
Paul Selormey
paul@...
Oct 9, 2001 11:24 am
Hello Noel, Thanks for sharing your work. However, without a sample you are given users headache rather than a cure. Surely you had a sample to test during ...
1857
Fiordean Dacian
dfiordean@...
Oct 9, 2001 12:36 pm
Hi all, Does anyone has a link where I can find some code for an edit control which can display text whithin a combo or some as I type text in it? (like IE...
1858
Marko Bozikovic
marko.bozikovic@...
Oct 9, 2001 12:46 pm
Hi! I'm new to WTL, still learning, and I have a bit of a problem... Is there an equivalent to AFX_MANAGE_STATE in WTL to use in exported functions that need...
1859
maq@...
Oct 9, 2001 12:46 pm
Questions to Nenand: 1. Are you planning support of new classes from ATL7 which replace CComModule: CAtlExeModuleT or CAtlModuleT? 2. Can I get a newer version...
1860
stefan.slapeta@...
Oct 9, 2001 12:56 pm
Hi, I would like to use CDialogResize but I don't have any idea how it works. My dialog class inherits from CDialogResize<...> and I listed its controls in a...
1861
Tim Tabor
tltabor@...
Oct 9, 2001 1:37 pm
inline ... ... That's all there is to it. What is it that isn't working? ... There's lots going on here other than the visuals. You might want to review the...
1862
Brandon Corfman
bcorfman@...
Oct 9, 2001 1:46 pm
1) http://www.codeproject.com/useritems/wtldlgresize.asp 2) http://userpages.umbc.edu/~bcorfm1/wtl Best regards, Brandon ... works. ... controls ... and the ...
1863
Maxime LABELLE
mlabelle@...
Oct 9, 2001 3:07 pm
Hi Marko, I think you are talking about setting the address of the resource module? You can access the m_hInstResource member of your global CxxxModule class ...
1864
Doug.Langston@...
Oct 9, 2001 3:49 pm
I need to be able to read a list box line-by-line & I'm having trouble. One limitation I have is that I cannot use CString. Here's one of my attempts: for(int...
1865
BRANDON C CORFMAN
bcorfman@...
Oct 9, 2001 4:56 pm
Doug, The major problem is that your code allocates space for a pointer only, but GetText needs a pointer to an allocated buffer. I'd just allocate the buffer...
1866
Langston, Doug
Doug.Langston@...
Oct 9, 2001 5:02 pm
Thanks very much! ... From: BRANDON C CORFMAN [mailto:bcorfman@...] Sent: Tuesday, October 09, 2001 10:54 AM To: wtl@yahoogroups.com Subject: Re:...
1867
BRANDON C CORFMAN
bcorfman@...
Oct 9, 2001 5:37 pm
Whoops, I apologize ... v[i] = s; should read names[i] = s; Brandon...
1868
Langston, Doug
Doug.Langston@...
Oct 9, 2001 5:50 pm
Thanks again. ... From: BRANDON C CORFMAN [mailto:bcorfman@...] Sent: Tuesday, October 09, 2001 11:36 AM To: wtl@yahoogroups.com Subject: Re: [wtl]...
1869
Chris Russell
cdr@...
Oct 9, 2001 8:05 pm
Hi everyone, I've got an interesting little template puzzle that I'm hoping one of you might have some suggestions on. Here's the drastically simplified...
1870
Menningen, Kevin
kmenningen@...
Oct 9, 2001 9:26 pm
Hi Chris, I'm a bit overwhelmed trying to figure out the exact problem, but it sounds like CThreadManager is keeping a list of CThread<TBase> objects. In the...
1871
Peter Lee
plee@...
Oct 9, 2001 10:31 pm
Why not just reference count your CThread objects, would just be a matter of adding an AddRef and Release method on your base CThreadImpl ... pass in (this *)...
1872
Chris Russell
cdr@...
Oct 10, 2001 12:02 am
... If I could explain it in terms that made any sense then I would be done damn it! <HAHA> Actually, I think you understood completely. I think you meant to...
1873
Tim Tabor
tltabor@...
Oct 10, 2001 12:26 am
Hi Chris. I'm not really following this thread - it looks complicated 8^). But I'm a bit curious why your base class is named CThreadImpl. These are usually...
1874
Chris Russell
cdr@...
Oct 10, 2001 5:00 am
... Compared to what? I've read your posts man! ... Yea you're right. I'm going to rename it to CThreadBase. ... This part of it is licked thanks to some good...