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...
11983
Bjarke Viksøe
bviksoe
Jul 1, 2005 3:39 pm
... contact ... the ... have ... If you're looking into creating a native ActiveSync extension, the documentation is available on MSDN: ...
11984
tfiler_98
Jul 1, 2005 3:57 pm
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...
11985
Mateusz Loskot
gekonioo
Jul 1, 2005 3:57 pm
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...
11986
Jeff Henkels
jhenkels
Jul 1, 2005 7:02 pm
You can do this with a list control if you set the LVS_EX_HEADERDRAGDROP extended style. "tfiler_98" <quarterhorses@...> wrote in message...
11987
succeeded918
Jul 4, 2005 3:57 am
Doing it from wheel is a tough task, is there any good project about it? i need a c++ code editor :)...
11988
Philip Taron
skalagrim
Jul 4, 2005 6:07 am
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...
11989
Kim Gräsman
kimgrasman
Jul 4, 2005 8:35 am
... Is this something along the lines of what you're looking for: http://www.scintilla.org/ - Kim...
11990
peter_linlin
Jul 4, 2005 11:52 am
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...
11991
Flamur Rogova
flamur2000
Jul 4, 2005 4:12 pm
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 ? ...
11992
Philip Taron
skalagrim
Jul 4, 2005 5:30 pm
Hi Peter, This worked for me in Visual Studio 2005. You were on the right track! class CMainFrame ... CWinTraitsOR<WS_MAXIMIZE, 0, CFrameWinTraits> > , public...
11993
Philip Taron
skalagrim
Jul 4, 2005 5:51 pm
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]...
11994
peter_linlin
Jul 4, 2005 10:38 pm
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. -- ...
11995
Philip Taron
skalagrim
Jul 4, 2005 11:24 pm
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 ...
11996
peter_linlin
Jul 5, 2005 12:14 am
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 | ... ...
11997
Philip Taron
skalagrim
Jul 5, 2005 1:13 am
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. ...
11998
peter_linlin
Jul 5, 2005 4:01 am
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...
11999
succeeded918
Jul 5, 2005 12:12 pm
thanks, Philip & Kim. i think i'd better improve my english first ;)...
12000
Johan Karl Larsen
itlarsen
Jul 5, 2005 2:28 pm
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....
12001
Jeff
chimalus
Jul 5, 2005 4:10 pm
You might find this article helpful: http://www.codeproject.com/wtl/propsheetddx.asp...
12002
Philip Taron
skalagrim
Jul 5, 2005 4:20 pm
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...
12003
peter_ramensky
Jul 6, 2005 7:27 am
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....
12004
Nenad Stefanovic
nenad_stefan...
Jul 6, 2005 11:15 am
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...
12005
Khamsouk Souvanlasy
khamsouk_sou...
Jul 7, 2005 2:40 pm
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...
12006
Philip Taron
skalagrim
Jul 7, 2005 6:22 pm
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 ...
12007
Mateusz Loskot
gekonioo
Jul 7, 2005 6:49 pm
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)...
12008
Roger Headrick
lilsroro
Jul 7, 2005 8:05 pm
... am ... or ... use ... would ... the ">>" ... in ... work. ... m_AddresBar.SetCommandBarExtendedStyle(CBR_EX_ALTFOCUSMODE, CBR_EX_ALTFOCUSMODE); ... ...
12009
Roger Headrick
lilsroro
Jul 7, 2005 8:16 pm
... first ... a ... Cut/ ... the ... to ... ES_AUTOHSCROLL ... CBRWS_NORESIZE, ... Sorry. Should be m_CmdBar, not m_AddresBar: ...
12010
Philip Taron
skalagrim
Jul 7, 2005 11:49 pm
Hi all, I'm sure a good number of you read Raymond Chen's blog, The Old New Thing. In his latest...
12011
Khamsouk Souvanlasy
khamsouk_sou...
Jul 8, 2005 1:12 am
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...