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 your group to be featured on the Yahoo! Groups website? 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 11982 - 12011 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11982
Have a look at RAPI - it allows you to remotely call system functions on the device via ActiveSync. To access the address book, you may use the CEDB API (also...
João Paulo Figueira
joaofig_y
Offline Send Email
Jul 1, 2005
9:20 am
11983
... contact ... the ... have ... If you're looking into creating a native ActiveSync extension, the documentation is available on MSDN: ...
Bjarke Viksøe
bviksoe
Offline Send Email
Jul 1, 2005
3:39 pm
11984
I am new to this WTL programming. Is there a grid that would allow a user to drag a grid column to a new position? For example, if I had a grid with columns...
tfiler_98
Offline Send Email
Jul 1, 2005
3:57 pm
11985
Hello, ... You need to learn RAPI (Remote API) which is also used by ActiveSync. So, I'd recommend you to buy "Programming Microsoft Windows CE" Second (or...
Mateusz Loskot
gekonioo
Offline Send Email
Jul 1, 2005
3:57 pm
11986
You can do this with a list control if you set the LVS_EX_HEADERDRAGDROP extended style. "tfiler_98" <quarterhorses@...> wrote in message...
Jeff Henkels
jhenkels
Offline Send Email
Jul 1, 2005
7:02 pm
11987
Doing it from wheel is a tough task, is there any good project about it? i need a c++ code editor :)...
succeeded918
Offline Send Email
Jul 4, 2005
3:57 am
11988
Your english is a little hard to parse, but I think you're asking for an open source text editor designed with an eye towards coding. For that, I can recommend...
Philip Taron
skalagrim
Offline Send Email
Jul 4, 2005
6:07 am
11989
... Is this something along the lines of what you're looking for: http://www.scintilla.org/ - Kim...
Kim Gräsman
kimgrasman
Offline Send Email
Jul 4, 2005
8:35 am
11990
Hi All, On a wizard generated mdi app, I try to put an MDI frame window on Maximized state by define a win traits class, but the result is "Main window...
peter_linlin
Offline Send Email
Jul 4, 2005
11:52 am
11991
Hi, I have dialog based view in sdi application, I want to handle messages from dialog controls (WM_COMMAND, WM_NOTIFY...) in MainFrame's methods. Any hint ? ...
Flamur Rogova
flamur2000
Offline Send Email
Jul 4, 2005
4:12 pm
11992
Hi Peter, This worked for me in Visual Studio 2005. You were on the right track! class CMainFrame ... CWinTraitsOR<WS_MAXIMIZE, 0, CFrameWinTraits> > , public...
Philip Taron
skalagrim
Offline Send Email
Jul 4, 2005
5:30 pm
11993
Hi Flamur, Put FORWARD_NOTIFICATIONS() in the message map of your view. Hope this helps, Philip ... [Non-text portions of this message have been removed]...
Philip Taron
skalagrim
Offline Send Email
Jul 4, 2005
5:51 pm
11994
Hi Philip, Have tried your method, no luck. The Main window can be created this time, but it is not in maximized state. I am using VS 2003, wtl 7.5.5160. -- ...
peter_linlin
Offline Send Email
Jul 4, 2005
10:38 pm
11995
Hi Peter, I just tried in Visual Studio 2003 and it worked for me; here's the test solution that I used. http://philip.taron.net/downloads/MaximizedMDI.zip ...
Philip Taron
skalagrim
Offline Send Email
Jul 4, 2005
11:24 pm
11996
Hi Philip, Tried your test sln, still no luck. My OS is windows 2000 server with sp4. Thanks! -- Peter ... the test ... window on ... WS_CLIPCHILDREN | ... ...
peter_linlin
Offline Send Email
Jul 5, 2005
12:14 am
11997
Hi Peter, Ah, that's it. I just tried running it on Windows 2000 (Professional in my case) and it didn't maximize either. A Windows bug? I don't know. ...
Philip Taron
skalagrim
Offline Send Email
Jul 5, 2005
1:13 am
11998
Hi Philip, This really helps! I am using Daniel's Tabbed framework, putting the ShowWindow(SW_SHOWMAXIMIZED) in the OnCreate Handler achieved the effect. If...
peter_linlin
Offline Send Email
Jul 5, 2005
4:01 am
11999
thanks, Philip & Kim. i think i'd better improve my english first ;)...
succeeded918
Offline Send Email
Jul 5, 2005
12:12 pm
12000
Is there a macro to retrieve/set the currently selected index from/for a ComboBox. Using a dummy edit control works but it is not what I want....
Johan Karl Larsen
itlarsen
Offline Send Email
Jul 5, 2005
2:28 pm
12001
You might find this article helpful: http://www.codeproject.com/wtl/propsheetddx.asp...
Jeff
chimalus
Offline Send Email
Jul 5, 2005
4:10 pm
12002
Hi Johan, No, there is currently no DDX macro -- or DDX function call -- to retrieve the currently selected index from a combo box. You could use the...
Philip Taron
skalagrim
Offline Send Email
Jul 5, 2005
4:20 pm
12003
Hello WTL Development team, There are many developers now using WTL to build windows GUIs. It is a productive and enjoyable library to use, as far as it goes....
peter_ramensky
Offline Send Email
Jul 6, 2005
7:27 am
12004
Hi Peter, Thank you for your nice comments about WTL. The open source project already provided a lot of new code, integrating previously separate enhancements...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Jul 6, 2005
11:15 am
12005
Hi, I have a CEdit control acting as an Address Bar for a browser I am playing with. The command menu, toolbar and address bar are first created and then added...
Khamsouk Souvanlasy
khamsouk_sou...
Offline Send Email
Jul 7, 2005
2:40 pm
12006
Hi all, I have found it very useful to associate a set of radio buttons with an enumeration. To make this easier, I have this templated overload of the ...
Philip Taron
skalagrim
Offline Send Email
Jul 7, 2005
6:22 pm
12007
Hi, ... Yes, that's a very nice idea. ... I think it would be nice to have such feature :-) Greets -- Mateusz Loskot <mloskot@...> Tel: +48 (0)...
Mateusz Loskot
gekonioo
Offline Send Email
Jul 7, 2005
6:49 pm
12008
... am ... or ... use ... would ... the ">>" ... in ... work. ... m_AddresBar.SetCommandBarExtendedStyle(CBR_EX_ALTFOCUSMODE, CBR_EX_ALTFOCUSMODE); ... ...
Roger Headrick
lilsroro
Offline Send Email
Jul 7, 2005
8:05 pm
12009
... first ... a ... Cut/ ... the ... to ... ES_AUTOHSCROLL ... CBRWS_NORESIZE, ... Sorry. Should be m_CmdBar, not m_AddresBar: ...
Roger Headrick
lilsroro
Offline Send Email
Jul 7, 2005
8:16 pm
12010
Hi all, I'm sure a good number of you read Raymond Chen's blog, The Old New Thing. In his latest...
Philip Taron
skalagrim
Offline Send Email
Jul 7, 2005
11:49 pm
12011
Hi, That worked nicely. Is it a bug that the command bar behaves differently when the menu is collapsed into the ">>" drop-down? Thanks. Kam ... [Non-text...
Khamsouk Souvanlasy
khamsouk_sou...
Offline Send Email
Jul 8, 2005
1:12 am
Messages 11982 - 12011 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