Originally posted by: Richard Hollis
Great control, the only thing which I noticed instantly was that the scrolling speed of items in the outlook bar list seems much slower than that of the real outlook bar. I looked for an animation speed setting, but none seem to cover this. Is there any easy way that the scrolling of itmes can be increased?
Cheers
Richard
Originally posted by: Michael
Howdy,
I am using your control to process item clicks which in turn calls various COM methods. I am constantly getting errors that tell me "CoInitialize has not been called". I call this function when the application is initializing and I only get this error message when processing a click from the outlook control. Do you know of any threading issues with the control that might be causing this behaviour.
Cheers,
Michael
Originally posted by: Gaby
How can i get the notify message of the CTreeCtrl?
I add ON_NOTIFY(TVN_ITEMEXPANDED, 1010, OnExpandTree)
and afx_msg void CMainFrame::OnExpandTree( NMHDR* pNMHDR, LRESULT* pResult)
in the CMainframe but it does not function.
ReplyOriginally posted by: Gaby
In CGfxOutBarCtrl add:
ON_NOTIFY(TVN_ITEMEXPANDED,1010,OnExpandTree)
and
afx_msg void CGfxOutBarCtrl::OnExpandTree( NMHDR* pNMHDR, LRESULT* pResult)
{
MessageBox("a");
}
and this chatch the event..
thanks for all.
ReplyOriginally posted by: zhangbo
iSelFolder = 1; //This should be 0, not 1
CGfxOutBarCtrl::CGfxOutBarCtrl()
{
}
Originally posted by: Keith Fearnley
Very impressive.
Having looked around for a control like this, I think this offering beats any I have seen. We have C++ guys here, but mainly VB front-end development. Have you considered making this available as an OCX for non-C++ folks. There are a number of comments on this but no answers. If no answers to this, we will probably make an OCX for ourselves eventually, but you guys are obviously into the source and are the best place to do this, if you are willing.
Originally posted by: Huang
Hi,everyone!Could you tell me how to disable a item? thank u for reading this!
ReplyOriginally posted by: HuiYue,Xu
I wonder whether we can move any item in a folder to another folder!Is there anyone can work out the problem?
ReplyOriginally posted by: Alex
Only if you klick one item twice, the state toggles to pressed.
How can I change this behaviour ?
Originally posted by: Coolioo
What i want is changing the Left Bar to a different one by clicking a pop up menu item.
How to do it?? THnx!