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 7762 - 7791 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7762
Do you mean a button in a rebar? Probably all of the samples mentioned are in some way better than starting from scratch, but none of them deal with dropping...
Tim Tabor
tltabor
Offline Send Email
Jan 1, 2004
11:13 am
7763
Hi Tim, I replied to all my e-mail early Jan 1 after coming back from a party. I tried deleting the one you replied to but too late :-) Of course, what your...
Roger Headrick
lilsroro
Offline Send Email
Jan 2, 2004
1:00 pm
7764
... Generally speaking, the trick is to install a WH_CALLWNDPROCRET hook for the current thread, using SetWindowsHookEx. When your hook procedure sees the...
Jim Barry
jim_barry.geo
Offline Send Email
Jan 3, 2004
12:53 am
7765
I Made several child window controls and put them on dialog. Now i want to set specific tab order and make focus to change then TAB Key is hit. I believe WTL...
Piotr Wojcicki
dracon202001
Offline Send Email
Jan 3, 2004
12:36 pm
7766
... TAB Key ... child ... on my own, ... apropiare ... Hi Piotr, Some guidelines for dialog tabbing: 1. If the dialog is modeless (i.e. not created and...
Roger Headrick
lilsroro
Offline Send Email
Jan 3, 2004
7:48 pm
7767
I'm trying to use the GetSelectedItem() method of WTL's ListView Control. My app keeps crashing in release when I use this. When I run it thru Rational's...
Ghatak, Amitabh
gamitabh@...
Send Email
Jan 5, 2004
12:36 pm
7768
Make sure the list control has the single-selection style set (LVS_SINGLESEL). ... Control....
robert_caldecott
robert_calde...
Offline Send Email
Jan 5, 2004
1:13 pm
7769
You are creating multiple columns so must be in Report mode. Check this first. Angus Comber ... From: "Ghatak, Amitabh" <gamitabh@...> To:...
Angus Comber
anguscomber
Offline Send Email
Jan 5, 2004
1:14 pm
7770
angus: its in report mode. robert: list control has the single-selection style set (LVS_SINGLESEL). cheers amitabh ... From: Angus Comber...
Ghatak, Amitabh
gamitabh@...
Send Email
Jan 5, 2004
1:19 pm
7771
See below - right at the end. I guess that is your problem. ... From: "Ghatak, Amitabh" <gamitabh@...> To: <wtl@yahoogroups.com> Sent: Monday,...
Angus Comber
anguscomber
Offline Send Email
Jan 5, 2004
1:30 pm
7772
hey figured it out, finally. I assumed that u need not initialize (LVITEM) myItem to anything. Not true. You must set the mask: myItem.mask = LVIF_PARAM; //or...
Ghatak, Amitabh
gamitabh@...
Send Email
Jan 5, 2004
1:35 pm
7773
hey absolutely! just figured it out myself as well. thanks a lot, really. ... From: Angus Comber [mailto:angus@...] Sent: Monday, January 05, 2004...
Ghatak, Amitabh
gamitabh@...
Send Email
Jan 5, 2004
1:36 pm
7774
... Control. ... Failure at ... LPARAM /*lParam*/, ... (m_wndList.GetExtendedListViewStyle()|LVS_ ... BOOL& ... You need to initialize myItem's mask member...
Roger Headrick
lilsroro
Offline Send Email
Jan 5, 2004
1:46 pm
7775
Thanks for the reply. Only problems are : 1)attach controls to member variable & set initial value--How??? 2)retrieve data in the edit box and store in...
yakirtus
Offline Send Email
Jan 5, 2004
2:11 pm
7776
Sorry for not responding earlier, I was out for a couple of weeks on vacation. That problem happens because there are a bunch of variables in Sergey's code...
dbowen@...
newob_leinad
Offline Send Email
Jan 5, 2004
4:51 pm
7777
... ... I can't think of a good reason to not be using WTL 7.1 :-) -Daniel...
dbowen@...
newob_leinad
Offline Send Email
Jan 5, 2004
4:57 pm
7778
... in your .h have WTL::CEdit m_edit; in OnInitDialog() m_edit.Attach(GetDlgItem(IDC_EDT_NAME)); // use the correct resource m_strName = _T("some string");...
Mike Frith
mwfrith
Online Now Send Email
Jan 5, 2004
5:12 pm
7779
Once again ,thanks for the quick reply. Once again,another question: I get it that m_edit is the variable attached to the control. Is it not neccery ,therefor...
yakirtus
Offline Send Email
Jan 5, 2004
9:35 pm
7780
... You do that with BEGIN_DDX_MAP(CNewDlg) DDX_TEXT(IDC_EDT_NAME, m_strName) END_DDX_MAP() this associates the two....
Mike Frith
mwfrith
Online Now Send Email
Jan 5, 2004
9:37 pm
7781
I am new to WTL. I want to implement a treeview in a WinCE application using WTL. Can anybody provide me the steps to be followed(in detail)for implementing a...
abirami2k4
Offline Send Email
Jan 6, 2004
6:06 am
7782
Hi This isn't directly connected to WTL, but I have two projects currently building under Visual Studio 6. I'm trying to port them to VS .Net 2003 as is (i.e. ...
Mike Diack
mikediack
Offline Send Email
Jan 6, 2004
10:03 am
7783
You may have found this on MSDN, but the group links area [1] has a bookmark for compile-time breaking changes in VS.NET 2003. John...
johndiiix
Offline Send Email
Jan 6, 2004
2:12 pm
7784
Hi, If anyone had such problem with Sergey Klimov's docking windows, please, help! The problem is the wrong docked windows state restoring in some cases. For...
ringo_wow
Offline Send Email
Jan 6, 2004
2:13 pm
7785
Runtime checks are your best friend. There's a runtime check [-RTCu] that will popup or debug break whenever you use an uninitialized variable when compiling...
kevinfrei
Offline Send Email
Jan 6, 2004
5:54 pm
7786
Hello, I'm just starting to dive into wtl. Looks interesting so far. I have VS.NET 2003 and the wtl 7.1 code installed. When I create a new application with...
John Burkhardt
John.Burkhardt@...
Send Email
Jan 6, 2004
7:56 pm
7787
Hi, on the download page, it says supported OS are 2000, 2003 and XP. I have to support NT sp6 so I'm checking to see if anyone has been there done that. Has...
Mike Frith
mwfrith
Online Now Send Email
Jan 6, 2004
8:00 pm
7788
I've done this, simple sample project using three empty docking view and the mainframe as a docking frame. I got NO warning at runtime (/RTCu). I've compared...
Pascal Binggeli
pbinggeli
Offline Send Email
Jan 6, 2004
8:03 pm
7789
Not just yet -- first thing tomorrow AM, I'll test a DLL I've built with 7.0 under NT4. "Mike Frith" <mfrith@...> wrote in message ...
Jeff Henkels
jhenkels
Offline Send Email
Jan 6, 2004
8:17 pm
7790
Hi John, ... a new ... if I ... handle ... Does your WM_CREATE handler look like this? LRESULT OnCreate(...) { LRESULT lRet = DefWindowProc(uMsg, wParam,...
Roger Headrick
lilsroro
Offline Send Email
Jan 6, 2004
9:08 pm
7791
Thanks Jeff....
Mike Frith
mwfrith
Online Now Send Email
Jan 6, 2004
9:56 pm
Messages 7762 - 7791 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