Skip to search.
wtl · WTL support list

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 11 - 40 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11 Anton Smolyaninov
anton@... Send Email
May 2, 2000
12:03 pm
12 jeroent@... Send Email May 3, 2000
1:17 pm
Hi, I've also sent this one to the Atilla mailing list but I'll post it here as well. When using multiple commandbars, the application will 'crash' when ...
13 Nenad Stefanovic
nenads@... Send Email
May 5, 2000
5:26 pm
Hi Jeroen, Multiple command bars are not really supported by design. That is not obvious, and since there are no docs it is not documented anywhere. The ...
14 Jeroen Thur
jeroent@... Send Email
May 5, 2000
6:20 pm
Hi Nenad, The reason I would like to have more than one command bar per thread is that my application has two modes with for each mode a different command bar....
15 Nenad Stefanovic
nenads@... Send Email
May 6, 2000
9:44 pm
Hi Jeroen, I thought that much easier way to achieve this is to keep two menus and only one command bar, and then switch between menus using AttachMenu method....
16 rtearle@... Send Email May 9, 2000
8:27 am
I've been using WTL quite a bit since I found it, and came across the following bug, related to maximum menu widths, and a MRU. When you have longish filenames...
17 Nenad Stefanovic
nenads@... Send Email
May 9, 2000
4:58 pm
Hi Richard, I noticed that myself before and I was planning to use almost the same fix in the next version. Thanks for your report. Nenad ... From:...
18 Steve Maier
maier@... Send Email
May 9, 2000
6:17 pm
Nenad, Are changes to WTL going to be released separate from the Platform SDK or just with the Platform SDK. I know that this list will probably know when its...
19 Nenad Stefanovic
nenads@... Send Email
May 9, 2000
6:20 pm
Hi Steve, Future WTL releases will ship with the Platform SDK. Thanks, Nenad ... From: Steve Maier [mailto:maier@...] Sent: Tuesday, May 09, 2000 11:14...
20 Jose Wilson
josew@... Send Email
May 10, 2000
7:08 am
Hi, I have used CommandBar Menu in my Application. The menu comes fine but when I use the HotKeys it hangs,(ie) it goes into a infinite loop of Keypress...
21 Tearle, Richard
rtearle@... Send Email
May 10, 2000
7:23 am
I suggest you look at http://www.egroups.com/wtl, and look at the old messages within this group. This has been covered before (it was even the first ...
22 Jeroen Thur
jeroent@... Send Email
May 10, 2000
7:52 am
Hi, Posted this one in another thread but I think it deserves it's own. It's not possible to selecting menuitems via the keyboard (for example, Alt+V (View)...
23 Don Lance
Don@... Send Email
May 11, 2000
2:00 pm
... What do you guys thing about this? ... Osborn: On another subject, there seems to be a fair amount of developer interest in the Windows Template Library...
24 Steve Maier
maier@... Send Email
May 11, 2000
2:13 pm
Nenad, Does this mean you are going to be out of a job ;-) You had said that new releases of WTL would be in the Platform SDK. Of course Tony is the VC7 ...
25 Rainer Schütz
rainers@... Send Email
May 11, 2000
3:08 pm
26 Marion Nalepa
marion@... Send Email
May 11, 2000
3:10 pm
Another good example of how out-of-touch Microsoft is with their customers. WTL is obviously one of the most useful things they've put out in a long time, and...
27 Nenad Stefanovic
nenads@... Send Email
May 11, 2000
7:30 pm
WTL will continue to ship in the Platform SDK. I don't expect it to be in VC7. I don't know why Tony said that. Thanks, Nenad ... From: Steve Maier...
28 Dan Wygant
WygantD@... Send Email
May 11, 2000
7:44 pm
P'raps you should ask Mr. Bill to smack Tony in the back of the head. This is a bad deal for the loving company that *is* M$. Really, M$ is truly a company...
29 Teatime
teatime@... Send Email
May 22, 2000
10:33 am
Hi everyone, My name is Milen Angeloff. I'm quite new in WTL, but find it very interesting. I have a question about LPNMREBARCHEVRON. I try to find the...
30 Husmo, Reidar
Reidar.Husmo@... Send Email
May 22, 2000
10:59 am
commctrl.h: #if (_WIN32_IE >= 0x0500) typedef struct tagNMREBARCHEVRON { NMHDR hdr; UINT uBand; UINT wID; LPARAM lParam; RECT rc; LPARAM lParamNM; }...
31 keno@... Send Email May 23, 2000
4:16 pm
I would like to use a CCmdBarCtrl for my context menus, so I can get my nice toolbar button images to appear in the context menu. However, as previously...
32 Nenad Stefanovic
nenads@... Send Email
May 24, 2000
12:02 am
Hi KenO, The easiest way is to use the same command bar that you use in your main window. Just handle all of the context menus in your main window, and use the...
33 keno@... Send Email May 24, 2000
7:03 pm
Nenad, This has a very interesting side effect. When you attach the context menu to the main command bar, the main menu redraws with the context menu contents...
34 herve@... Send Email May 25, 2000
12:13 am
Hello, This email is meant to inform you about a new website that is going to revolutionize the online world of Software Engineering: ...
35 Nenad Stefanovic
nenads@... Send Email
May 25, 2000
3:04 am
Hi Ken, There is no need to attach the popup menu. AttachMenu is used to attach a top level menu, TrackPopupMenu can display popups. You revised code would ...
36 Cristian Adam
achris@... Send Email
May 25, 2000
3:43 pm
Hello, I got a problem with the IP Address Control. I made a dialog based application with the wizard, i put a IP Address Control and i doesn't run, i get...
37 herve@... Send Email May 25, 2000
5:17 pm
Hello, I may have offended some people in this group by sending a message "advertising" the Software Engineering Community website (Software-Engineer.org). So...
38 keno@... Send Email May 25, 2000
10:15 pm
Thanks for the help with the context menu question. The next step in converting my application is removing the MFC internet services. Specifically, AfxParseURL...
39 Tearle, Richard
rtearle@... Send Email
May 26, 2000
6:42 am
Have you made sure you have the following lines in your _tWinMain function: #if (_WIN32_IE >= 0x0300) INITCOMMONCONTROLSEX iccx; iccx.dwSize = sizeof(iccx); ...
40 Tearle, Richard
rtearle@... Send Email
May 26, 2000
6:44 am
Probably not the best way, but why don't you strip out the source code for AfxParseURL and dump it into your project (you've probably thought of that already...
Messages 11 - 40 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