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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 15230 - 15259 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15230
CListViewCtrl::GetSubItemRect() has an assertion: ATLASSERT((GetStyle() & LVS_TYPEMASK) == LVS_REPORT); This always fails in my case: my custom listview...
avewtl
Offline Send Email
Feb 1, 2008
11:50 am
15231
bool SetToolTipText(LPCTSTR lpstrToolTipText) { ATLASSERT(IsCommandButton()); return SetHyperLink(lpstrToolTipText); }...
enjoyfan
Offline Send Email
Feb 2, 2008
2:46 am
15232
... [snip] Hey, I tried your .zip. Then when I try to create a new WTL mobile project, there's a popup that says "No such interface supported". Do I need to...
nushrike
Offline Send Email
Feb 2, 2008
11:00 pm
15233
Hi all, I'd like to display an Up Arrow (¡ü) character in my context menu. However, this ¡ücharacter is not defined in the default font (Tahoma). Although...
avewtl
Offline Send Email
Feb 3, 2008
3:05 am
15234
Ponder the following code, if you define USE_SUPERCLASS to 1 or 0, the result is the same, that is, the edit control is superclassed. What is the difference...
Fernando
chuck_berrys...
Offline Send Email
Feb 3, 2008
5:36 am
15235
Given the dialog resource ID, is there a way to get the size (in pixels) of the dialog template? Thanks....
avewtl
Offline Send Email
Feb 4, 2008
7:11 am
15236
Exactly what Unicode code point are you trying to insert in the menu? The Unicode "Up arrow" has code point U+2191. The safest way to include that character in...
Johann Gerell
unsygn
Offline Send Email
Feb 4, 2008
9:15 am
15237
"avewtl" <avewtl@...> wrote in message news:fo6dqu+eres@eGroups.com ... Why don't you just create the dialog with CreateDialog, get its size with...
Igor Tandetnik
itandetnik
Offline Send Email
Feb 4, 2008
12:42 pm
15238
... Since Visual Studio 2005, finally you can use Unicode resource files. Just open the .rc file as text in VS, choose "Save As", "Save with Encoding" from the...
Jim Barry
jim_barry.geo
Offline Send Email
Feb 4, 2008
2:29 pm
15239
... Nothing. If you examine DECLARE_WND_SUPERCLASS, you'll see that it sets m_lpszOrigName to the second macro parameter. DECLARE_WND_CLASS sets m_lpszOrigName...
Jim Barry
jim_barry.geo
Offline Send Email
Feb 4, 2008
2:50 pm
15240
... There is a couple of helper functions in the ATL library (atlwin.h; see AtlGetDialogSize()) which will calculate the client-area. You need to load the...
Bjarke Viksøe
bviksoe
Offline Send Email
Feb 4, 2008
7:13 pm
15241
We are considering building a specialized PIM/Organizer application. Basically, we want to structure the application much like a simplified web or HTML editor....
steve.kille
Offline Send Email
Feb 4, 2008
11:13 pm
15242
... So, you are basically making a lightweight version of Info Select: http://www.miclog.com/is/index.shtml I've never had a need for a PIM, but I've always...
Thomas Hruska
shininglightpro
Offline Send Email
Feb 5, 2008
1:10 am
15243
i would do something like this CAxWindow wnd; wnd.Create("mshtl:<html>etc</html>"); CComPtr<IHTMLDocument2> sp; // after document is loaded, probably ...
Fernando
chuck_berrys...
Offline Send Email
Feb 5, 2008
5:32 am
15244
... Hmmm. Can't say, to be honest. I'd be surprised if reinstalling would help, it's more likely my machine has something set up to allow it to work that yours...
kingbing
elvishairdo
Offline Send Email
Feb 5, 2008
3:44 pm
15245
... I was able to fix it by manually cleaning out the generated files in vcprojects, and correcting the WTLMobile.vsz to use the 9.0 VsWizard engine....
nushrike
Offline Send Email
Feb 6, 2008
10:27 pm
15246
red View profile More options Feb 6, 10:25 pm Newsgroups: microsoft.public.vc.atl From: red <chenbin...@...> Date: Wed, 6 Feb 2008 03:25:04 -0800 (PST) ...
chb_sh
Online Now Send Email
Feb 7, 2008
3:57 am
15247
for the record I got some microsoft guy to help on this: http://groups.google.co.uk/group/microsoft.public.win32.programmer.ui/br ...
Nikos Bozinis
umeca74
Offline Send Email
Feb 7, 2008
1:02 pm
15248
... Please let us know if you arrive at a solution. I haven't played around with it other than a brief look, but I think you might be onto something regarding...
Michael Stephenson
domehead100
Offline Send Email
Feb 7, 2008
1:43 pm
15249
... would ... to ... Glad you got it working!...
kingbing
elvishairdo
Offline Send Email
Feb 7, 2008
3:33 pm
15250
Hi, I created a small composite control for use in IE. I created a small HTML test page to test my control. It looks like this: <HTML> <HEAD> ...
luc.roels
Offline Send Email
Feb 8, 2008
7:26 am
15251
I have a WTL 8.0 application that uses a tab view and I use the dialog editor for each of the tab pages. These pages resize using the CDialogResize class. ...
Dick Dievendorff
g0mfo
Offline Send Email
Feb 8, 2008
11:59 am
15252
... Hi Dick, The usual appproach for custom controls on dialogs is to put some control on the dialog, typically a static control, give it the control ID you...
Michael Stephenson
domehead100
Offline Send Email
Feb 8, 2008
2:48 pm
15253
... A long time ago I had the same problem and wrote this: http://www.viksoe.dk/code/splitterbar.htm It was a long time ago, so I'm not entirely sure it works...
Bjarke Viksøe
bviksoe
Offline Send Email
Feb 8, 2008
4:08 pm
15254
"Using the "static control as host"-trick as mentioned before renders CDialogResize useless." Actually I don't think it does. The dialog resize map is based...
Michael Stephenson
domehead100
Offline Send Email
Feb 8, 2008
5:08 pm
15255
Should you not wait the OnLoad event of the window object ? Its just a guess. Also i added two comments to your code, but they were probably just "typo" ... //...
Fernando
chuck_berrys...
Offline Send Email
Feb 9, 2008
1:54 am
15256
... Thanks. That solves my problem....
avewtl
Offline Send Email
Feb 11, 2008
9:26 am
15257
I went down this path for a while but found it much easier to just create the dialog and ask it “how big are you” Dick From: wtl@yahoogroups.com...
Dick Dievendorff
g0mfo
Offline Send Email
Feb 11, 2008
9:35 am
15258
Thanks for the reply. My Up Arrow is indeed U+2191. I see no ¡ü character in my Tahoma font according to the mentioned charmap usage. So I decided to adopt...
avewtl
Offline Send Email
Feb 11, 2008
9:46 am
15259
Is this cracker correct: // void OnCommandIDHandlerEX(UINT uNotifyCode, int nID, CWindow wndCtl) #define COMMAND_ID_HANDLER_EX(id, func) \ if (uMsg ==...
schmoo2k
Online Now Send Email
Feb 12, 2008
3:49 pm
Messages 15230 - 15259 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