For VC2003, I place a ListViewCtrl on a dialog and set the style to LVS_REPORT and extended style LVS_EX_FLATSB. But it look like not a flat scroll bar, no...
Thanks for the pointers. I had seen references that the unified event model leaked but had never seen anything that was concrete until your reference. I may...
Despite my better judgment, I just couldn't leave it alone and I think I may have a workable approach to **kludging** ATL attributes to work in a WTL project. ...
the problem with these seem to be they need an ID_SOMETHING that the control is bound to. how can i use these macros if i am just creating the controls in the...
"gan_v_x" <vijay_ganapati@...> wrote in message news:dmokot+30ui@eGroups.com ... One of the Create() parameters that you omitted is the control ID. Can't...
... These parameters to the macros don't have to be constants, so you can use m_list.GetDlgCtrlID() instead of ID_SOMETHING. Anthony -- Anthony Williams ...
... Thank you for your help, I don't have a manifest (I don't know what is it for ?) I do have flat scroll bar everywhere, but not in my tree view. Any idea ? ...
... The MSDN documentation states that flat scrollbars do not do anything on Windows XP. Also calling FlatSB_Initialize() is required. And the listview seems...
... Ah, ok, so there is no point in keeping trying, I suppose. Thank you Bjarke (and also thanks for your excellent web pages). -- Noël Frankinet Gistek...
Hi, how would i display large button in a WTL application, like Powerarchiver & winzip. I tried to replace the toolbar.bmp with a one with a large image, but...
Hi, WM_RBUTTONUP in the tree control does not seem to be working correctly, it's handler is called on right button double click instead. But WM_LBUTTONUP is...
Hello I know this is more a Win32 question, but I need to modify the right click menu on ANY textbox. So that when a user right clicks on ANY textbox (ie not...
... instead. ... Perhaps it is caught internally by the control in an attempt to generate the NM_RCLICK and WM_CONTEXTMENU notifications. Wouldn't it be...
... click ... textbox (ie ... entry. ... You should probably look into message hooks on MSDN (SetWindowsHookEx). I don't believe there is a "nice" way to do...
Thanks a lot for your suggestion, Bjarke. But I should have read MSDN. It says: “... the message is posted to the window that has captured the mouse.” So...
Hi Nenad and all I know the dust is just settling on WTL 7.5. Any thoughts about what to aim for for the next release (?WTL 8.0?) Thanks for all the great...
Hello I have developped a WTL app for a device that uses WinCE 4.2. This application has a main dialog which invokes a Propertysheet that contains two...
Hi, I have a question regarding in-place tree control label editing. In the TVN_ENDLABELEDIT handler I have the following code: LRESULT OnEndLabelEdit(int...
... I don't get what you are doing here. If you want to accept the edited text, you should just return TRUE from OnEndLabelEdit. -- Jim Barry, MVP (Windows...
Yes, I want to accept the edited text, but returning TRUE did not work. I had to call SetItem() to re-set the label. ... edited text, you should just return...
... Well, it should work, so let's concentrate on that. Is the tree-view control in a dialog? If so, have a look at this article that I wrote some years ago: ...
Jim, thanks for the link, I've found your article before on Google but my issue is a bit different. My tree control is in the dialog and I can enter a text in...
... And one more Yeah! from another WTL user from Poland :-))) Thanks Nenad and the Team from that release! ... StdDialogs, ... yuck. ... Hehe, WTL users are...
... So what are you saying, that pszText is null if you edit the label then hit the enter key or click outside the edit box? Maybe you could send me a small...